<?php
namespace app\admin\controller;

use app\common\util\ExcelUtil;
use think\App;
use think\Db;
use think\Exception;

class ConveyCate extends Auth
{

    public function __construct(App $app = null) {
        parent::__construct($app);
        $this->model= new \app\common\model\ConveyCate();
        $this->table= $this->model->table;

    }
    public function index(){
        if(request()->isAjax()){
            //分页参数
            $length = input('rows',10,'intval');   //每页条数
            $page = input('page',1,'intval');      //第几页
            $start = ($page - 1) * $length;     //分页开始位置
            //排序
            $sortRow = input('sidx','id','trim');      //排序列
            $sort = input('sord','desc','trim');        //排序方式
            $order = $sortRow.' '.$sort;

            $title = input('title','','trim');
            if($title){
                $map[] = ['title','like','%'.$title.'%'];
            }
            $enable = input('enable','','trim');
            if($enable != ''){
                $map[] = ['enable','=',$enable];
            }

            $map[] = ['del','=',0];
            $map[] = ['org_id','=',$this->orgId];
            $map= empty($map) ? true: $map;
            //数据查询
            $lists = db($this->table)->where($map)->limit($start,$length)
                ->order([$sortRow=>$sort,'id'=>'asc'])
                ->select();
            $times = model('Time')->getByOrgIdList();
            foreach ($lists as $k=>$v){
                $lists[$k]['cateName'] = $this->model->cate[$v['cate']];
                $lists[$k]['priorityName'] = isset($this->model->priority[$v['priority']])?$this->model->priority[$v['priority']]:"";
                $lists[$k]['timeName'] = db('time')
                    ->where('id',$v['time_id'])->value('title');
                $lists[$k]['endsName'] =!empty($v['ends'])?implode(',',db('address')
                    ->whereIn('id',$v['ends'])->column('title')):'';
                $lists[$k]['startsName'] =!empty($v['starts'])?implode(',',db('address')
                    ->whereIn('id',$v['starts'])->column('title')):'';
                $lists[$k]['priorityList'] = $this->model->priority;
                $lists[$k]['times'] = $times;
            }
            //数据返回
            $totalCount = db($this->table)->where($map)->count();
            $totalPage = ceil($totalCount/$length);
            $result['page'] = $page;
            $result['total'] = $totalPage;
            $result['records'] = $totalCount;
            $result['rows'] = $lists;
            return json($result);
        }else{
            $this->assign('m_name','运送类型');
            return $this->fetch();
        }
    }

    /**
     * 新增/编辑
     */
    public function add($id=0){
        if(request()->isPost()){
            $res = $this->model->updates();
            if($res){
                $this->success('操作成功',url('index'));
            }else{
                $this->error($this->model->getError());
            }
        }else{
            if($id){
                $info =db($this->table)->where('id',$id)->find();
                if($info){
                    $info['ends'] = $info['ends']?explode(',',$info['ends']):[];
                    $info['starts'] = $info['starts']?explode(',',$info['starts']):[];
                }
                $this->assign('info',$info);
            }
            $time = (new \app\common\model\Time())->getByOrgIdList();
            $ends = (new \app\common\model\Address())->getListByType(2);
            $this->assign('time',$time);
            $this->assign('ends',$ends);
            $this->assign('cate',$this->model->cate);
            $this->assign('priority',$this->model->priority);
            $this->assign('time',$time);
            return $this->fetch();
        }
    }

    /**
     * 删除记录
     * @param int $id
     */
    public function del($id=0){
        if(!$id){
            $this->error('参数错误');
        }
        $res = db($this->table)->where('id',$id)->setField('del',1);
        if($res){
            $this->success('删除成功');
        }else{
            $this->error('删除失败');
        }
    }

    /**
     * 改变字段值
     * @param int $fv
     * @param string $fn
     * @param int $fv
     */
    public function changeField($id=0,$fn='',$fv=0){
        if(!$fn||!$id){
            $this->error('参数错误');
        }
        $res = db($this->table)->where('id',$id)->setField($fn,$fv);
        if($res){
            $this->success('操作成功');
        }else{
            $this->error('操作失败');
        }
    }
    public function batchSort(){
        $data = input('data','','trim');
        if(!$data){
            $this->error('参数错误');
        }
        $data = json_decode($data,true);
        if(!$data){
            $this->error('参数错误');
        }

        Db::startTrans();
        try{
            foreach ($data as $k=>$v){
                Db::name('convey_cate')->where('id',$v['id'])->setField('sort',$v['sort']);
            }

            Db::commit();
        }catch (Exception $e){
            Db::rollback();
            $this->error('操作失败');
        }
        $this->success('操作成功');
    }

    /**
     * 下载点模板
     */
    public function downloadtem(){
        set_time_limit(0);
        ini_set("memory_limit","512M");

        $header = [
            ['title' => '名称', 'name' => 'title','width'=>'20'],
            ['title' => '时间代码(时间代码id)', 'name' => 'time_id','width'=>'20'],
            ['title' => '运送对象(1 病人2 普通3 标本4 预约5 药品)', 'name' => 'cate','width'=>'20'],
            ['title' => '运送积分', 'name' => 'score','width'=>'20'],
            ['title' => '开始地点(地点id多个用英文,隔开)', 'name' => 'starts','width'=>'20'],
            ['title' => '结束地点(地点id多个用英文,隔开)', 'name' => 'ends','width'=>'20'],
            ['title' => '优先级( 2=常规 3=紧急)', 'name' => 'priority','width'=>'20'],
            ['title' => '排序', 'name' => 'sort','width'=>'20'],
        ];

        $lists = [
            [
                'title' => '名称',
                'time_id' => '1',
                'cate' => '1',
                'score' => '1',
                'starts' => '1,2',
                'ends' => '3,4',
                'priority' => '2',
                'sort' => '50',
            ]
        ];

        $filename = '运送类型模板';
        ExcelUtil::export($filename,$header,$lists);

    }


    public function import(){

        return $this->fetch();
    }

    /**
     * 导入
     */
    public function importexcel(){
        set_time_limit(0);
        ini_set("memory_limit", -1);
        ob_flush();//清空缓存
        flush();//刷新缓存

        try{
            $cols = ['title','time_id','cate','score','starts','ends','priority','sort'];
            $lists = ExcelUtil::importExcel('file',$cols,2);

            if($lists === false){
                exit(ExcelUtil::getError());
            }
            if(empty($lists)){
                exit('文件内容为空');
            }

//            $timeId = 18;
            foreach ($lists as $k=>$v){
//                $aa = mb_substr($v['title'],0,2);
//                $v['cate'] = 2;
//                if($aa == '陪检'){
//                    $v['cate'] == 1;
//                }
//                if($aa == '预约'){
//                    $v['cate'] == 4;
//                }
//                if($aa == '取单'){
//                    $v['cate'] == 3;
//                }

                if($v['title']){
                    $check= Db::name('convey_cate')
                        ->where('title',$v['title'])
//                        ->where('cate',$v['cate'])
//                        ->where('time_id',$timeId)
                        ->where('del',0)
                        ->where('org_id',$this->orgId)
                        ->find();
                    if($check){
                        $msg = "第".($k+2)."行,已存在,导入失败";
                        echo "<font color=\"red\">".$msg."</font><br />";
                        continue;
                    }
                    if(!$v['time_id']){
                        $msg = "第".($k+2)."行,时间代码不能为空";
                        echo "<font color=\"red\">".$msg."</font><br />";
                        continue;
                    }
                    if($v['starts']){
                        $saddr = explode(',',$v['starts']);
                        $addrCount = Db::name('address')->where('org_id',$this->orgId)->where('del',0)->where('find_in_set(2,types)')->whereIn('id',$saddr)->count();
                        if(count($saddr) != $addrCount){
                            $msg = "第".($k+2)."行,地点id录入不正确";
                            echo "<font color=\"red\">".$msg."</font><br />";
                            continue;
                        }
                    }

                    if($v['ends']){
                        $eaddr = explode(',',$v['ends']);
                        $addrCount = Db::name('address')->where('org_id',$this->orgId)->where('del',0)->whereIn('id',$eaddr)->count();
                        if(count($eaddr) != $addrCount){
                            $msg = "第".($k+2)."行,地点id录入不正确";
                            echo "<font color=\"red\">".$msg."</font><br />";
                            continue;
                        }
                    }

                    if(!$v['cate']){
                        $msg = "第".($k+2)."行,运送对象不能为空";
                        echo "<font color=\"red\">".$msg."</font><br />";
                        continue;
                    }


                    $dt = [
                        'org_id'=>$this->orgId,
                        'title'=>$v['title'],
                        'time_id'=>$v['time_id'],
                        'starts'=>$v['starts'],
                        'ends'=>$v['ends'],
                        'cate'=>$v['cate'],
                        'score'=>$v['score']?$v['score']:1,
                        'sort'=>$v['sort']?$v['sort']:50,
                        'priority'=>$v['priority']?$v['priority']:2,
                        'create_time'=>date('Y-m-d H:i:s'),
                    ];

                    $inset = Db::name('convey_cate')->insert($dt);
                    if(!$inset){
                        $msg = "第".($k+2)."行,导入失败";
                        echo "<font color=\"red\">".$msg."</font><br />";
                        continue;
                    }
                }

            }
            echo "<font color=\"green\">导入完成</font><br />";
        }catch (Exception $e){
            trace($e->getMessage(),'error');
            echo $e->getMessage();
            echo "<font color=\"red\">数据异常,已停止导入</font><br />";
        }
    }

    public function batchSave(){
        $param = input('data','','trim');

        $data = json_decode($param,true);

        $scoreList = $data['score'] ?array_remove_empty($data['score']):[];
        $yxjList =  $data['yxj'] ? array_remove_empty($data['yxj']):[];
        $timesList = $data['time'] ? array_remove_empty($data['time']) :[];
        if(!$scoreList && !$yxjList && !$timesList){
            $this->error('参数错误');
        }

        Db::startTrans();
        try{
            foreach ($scoreList as $k=>$v){
                Db::name('convey_cate')->where('id',$v['id'])->setField('score',$v['score']);
            }

            foreach ($yxjList as $k=>$v){
                Db::name('convey_cate')->where('id',$v['id'])->setField('priority',$v['priority']);
            }

            foreach ($timesList as $k=>$v){
                Db::name('convey_cate')->where('id',$v['id'])->setField('time_id',$v['timeId']);
            }

            Db::commit();
        }catch (Exception $e){
            Db::rollback();
            $this->error($e->getMessage());
        }
        $this->success('操作成功');

    }
}