306 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			306 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			PHP
		
	
	
| <?php
 | ||
| 
 | ||
| declare (strict_types=1);
 | ||
| 
 | ||
| namespace app\controller\manager;
 | ||
| 
 | ||
| use app\model\Account;
 | ||
| use app\model\Account as AccountModel;
 | ||
| use app\model\AccountWorksite;
 | ||
| use Exception;
 | ||
| use app\model\Log;
 | ||
| use think\Collection;
 | ||
| use think\response\View;
 | ||
| use think\response\Json;
 | ||
| use think\db\exception\DbException;
 | ||
| use think\exception\ValidateException;
 | ||
| use think\db\exception\DataNotFoundException;
 | ||
| use think\db\exception\ModelNotFoundException;
 | ||
| 
 | ||
| class Worksite extends Base
 | ||
| {
 | ||
|     protected $noNeedLogin = ['getAccountList'];
 | ||
| 
 | ||
|     /**
 | ||
|      * 列表
 | ||
|      *
 | ||
|      * @throws Exception
 | ||
|      */
 | ||
|     public function index()
 | ||
|     {
 | ||
|         if ($this->request->isPost()) {
 | ||
|             $params = input('searchParams/a');
 | ||
|             $page   = input('page/d', 1);
 | ||
|             $size   = input('size/d', 20);
 | ||
| 
 | ||
|             $where = [];
 | ||
|             if (!empty($params)) {
 | ||
|                 foreach ($params as $key => $param) {
 | ||
|                     $param = trim($param);
 | ||
|                     if ($key == 'keyword') {
 | ||
|                         $where[] = ['w.name', 'like', '%'.$param.'%'];
 | ||
|                         continue;
 | ||
|                     }
 | ||
|                     if ($param == '0' || !empty($param)) {
 | ||
|                         $where[] = ['w.'.$key, 'like', '%'.$param.'%'];
 | ||
|                     }
 | ||
|                 }
 | ||
|             }
 | ||
| 
 | ||
|             $query = \app\model\Worksite::alias('w')->leftJoin('account a', 'a.id = w.manager_id')->where($where);
 | ||
|             $total = $query->count();
 | ||
| 
 | ||
|             $res = [
 | ||
|                 'total'   => $total,
 | ||
|                 'current' => $page ?: 1,
 | ||
|                 'size'    => $size ?: 20,
 | ||
|                 'list'    => new Collection(),
 | ||
|             ];
 | ||
| 
 | ||
|             if ($total > 0) {
 | ||
|                 $res['list'] = $query->fieldRaw('w.*,a.nickname,a.real_name,a.mobile')->page($page, $size)->order('w.sort', 'desc')->order('w.id', 'desc')->select();
 | ||
|                 $statusText  = \app\model\Worksite::statusText();
 | ||
|                 $res['list']->each(function ($item) use ($statusText) {
 | ||
|                     $item->status_text = $statusText[$item->status] ?? '';
 | ||
|                     $item->manager     = ($item->nickname ? '昵称:'.$item->nickname : '') .($item->real_name ? '  姓名:'.$item->real_name : ''). ($item->mobile ? '  手机:'.$item->mobile : '');
 | ||
|                 });
 | ||
|             }
 | ||
| 
 | ||
|             return $this->json(0, 'success', $res);
 | ||
|         }
 | ||
| 
 | ||
|         return $this->view();
 | ||
|     }
 | ||
| 
 | ||
|     /**
 | ||
|      * 添加
 | ||
|      *
 | ||
|      * @return Json|View
 | ||
|      */
 | ||
|     public function add()
 | ||
|     {
 | ||
|         if ($this->request->isPost()) {
 | ||
|             try {
 | ||
|                 $input = input('post.');
 | ||
|                 if (!isset($input['name'])) {
 | ||
|                     return $this->json(4000, '参数错误');
 | ||
|                 }
 | ||
| 
 | ||
|                 $insert = [
 | ||
|                     'name'       => $input['name'] ?? '',
 | ||
|                     'lng'        => $input['lng'] ?? '',
 | ||
|                     'lat'        => $input['lat'] ?? '',
 | ||
|                     'address'    => $input['address'] ?? '',
 | ||
|                     'manager_id' => $input['manager_id'] ?? 0,
 | ||
|                 ];
 | ||
| 
 | ||
|                 if ($input['manager_id'] > 0) {
 | ||
|                     if (AccountWorksite::where('account_id', $input['manager_id'])->count() > 0) {
 | ||
|                         return $this->json(4003, '该负责人已绑定其他工地');
 | ||
|                     }
 | ||
|                 }
 | ||
| 
 | ||
|                 $item = \app\model\Worksite::create($insert);
 | ||
| 
 | ||
|                 if ($input['manager_id'] > 0) {
 | ||
|                     AccountWorksite::where('worksite_id', $item->id)->delete();
 | ||
|                     AccountWorksite::create([
 | ||
|                         'worksite_id' => $item->id,
 | ||
|                         'account_id'  => $input['manager_id'],
 | ||
|                     ]);
 | ||
|                     Account::where('id', $input['manager_id'])->save(['role' => Account::ROLE_MANAGER, 'worksite_id' => $item->id]);
 | ||
|                 }
 | ||
| 
 | ||
| 
 | ||
|                 return $this->json();
 | ||
|             } catch (Exception $e) {
 | ||
|                 return $this->json(4001, '添加失败'.$e->getMessage());
 | ||
|             }
 | ||
|         }
 | ||
| 
 | ||
|         return $this->view();
 | ||
|     }
 | ||
| 
 | ||
|     /**
 | ||
|      * 编辑
 | ||
|      *
 | ||
|      * @return \think\response\Json|\think\response\View
 | ||
|      * @throws \think\db\exception\DataNotFoundException
 | ||
|      * @throws \think\db\exception\DbException
 | ||
|      * @throws \think\db\exception\ModelNotFoundException
 | ||
|      */
 | ||
|     public function edit()
 | ||
|     {
 | ||
|         $id = input('id');
 | ||
| 
 | ||
|         //通过ID查询
 | ||
|         $item = \app\model\Worksite::where('id', (int) $id)->find();
 | ||
| 
 | ||
|         if (empty($item)) {
 | ||
|             return $this->json(4000, '没有相关记录!');
 | ||
|         }
 | ||
| 
 | ||
|         if ($this->request->isPost()) {
 | ||
|             try {
 | ||
|                 $input = input('post.');
 | ||
|                 if (!isset($input['name']) || !isset($input['lng']) || !isset($input['lat'])) {
 | ||
|                     return $this->json(4000, '参数错误');
 | ||
|                 }
 | ||
| 
 | ||
|                 Account::where('id', $item['manager_id'])->save(['role' => Account::ROLE_NORMAL]);
 | ||
|                 AccountWorksite::where('worksite_id', $id)->delete();
 | ||
|                 if ($input['manager_id'] > 0) {
 | ||
|                     if (AccountWorksite::where('account_id', $input['manager_id'])->where('worksite_id', '<>', $id)->count() > 0) {
 | ||
|                         return $this->json(4003, '该负责人已绑定其他工地');
 | ||
|                     }
 | ||
|                     AccountWorksite::create([
 | ||
|                         'worksite_id' => $id,
 | ||
|                         'account_id'  => $input['manager_id'],
 | ||
|                     ]);
 | ||
| 
 | ||
|                     Account::where('id', $input['manager_id'])->save(['role' => Account::ROLE_MANAGER, 'worksite_id' => $id]);
 | ||
|                 }
 | ||
| 
 | ||
|                 $item->save([
 | ||
|                     'name'       => $input['name'] ?? '',
 | ||
|                     'lng'        => $input['lng'] ?? '',
 | ||
|                     'lat'        => $input['lat'] ?? '',
 | ||
|                     'address'    => $input['address'] ?? '',
 | ||
|                     'manager_id' => $input['manager_id'] ?? 0,
 | ||
|                 ]);
 | ||
|                 return $this->json();
 | ||
|             } catch (Exception $e) {
 | ||
|                 return $this->json(5000, $e->getMessage());
 | ||
|             }
 | ||
|         }
 | ||
| 
 | ||
|         $bindAccount = Account::where('id', $item['manager_id'])->column('id,nickname,real_name,mobile');
 | ||
| 
 | ||
|         $accountList = [];
 | ||
|         foreach ($bindAccount as $ac) {
 | ||
|             $accountList[] = [
 | ||
|                 'name_text' => $ac['nickname'].'【姓名:'.$ac['real_name'].'】【手机:'.$ac['mobile'].'】',
 | ||
|                 'id'           => $ac['id'], 'selected' => true
 | ||
|             ];
 | ||
|         }
 | ||
|         $this->data['jsonStr']  = $bindAccount ? json_encode($accountList, JSON_UNESCAPED_UNICODE) : json_encode([]);
 | ||
|         $this->data['item'] = $item;
 | ||
|         $this->data['id']   = $id;
 | ||
|         return $this->view();
 | ||
|     }
 | ||
| 
 | ||
|     /**
 | ||
|      * 更新属性
 | ||
|      *
 | ||
|      * @throws ModelNotFoundException
 | ||
|      * @throws DbException
 | ||
|      * @throws DataNotFoundException
 | ||
|      * @throws Exception
 | ||
|      */
 | ||
|     public function modify()
 | ||
|     {
 | ||
|         if (!$this->request->isPost()) {
 | ||
|             return $this->json(4000, '非法请求');
 | ||
|         }
 | ||
| 
 | ||
|         $item     = input('post.');
 | ||
|         $validate = $this->validateByApi($item, [
 | ||
|             'field' => 'require',
 | ||
|             'value' => 'require',
 | ||
|         ]);
 | ||
| 
 | ||
|         if ($validate !== true) {
 | ||
|             return $validate;
 | ||
|         }
 | ||
| 
 | ||
|         // 通过ID查询
 | ||
|         if (!$info = \app\model\Worksite::where('id', (int) $item['id'])->find()) {
 | ||
|             return $this->json(4001, '记录不存在');
 | ||
|         }
 | ||
| 
 | ||
|         $update = [$item['field'] => $item['value']];
 | ||
| 
 | ||
|         try {
 | ||
|             $info->save($update);
 | ||
|             return $this->json();
 | ||
|         } catch (ValidateException $e) {
 | ||
|             return $this->json(4001, $e->getError());
 | ||
|         } catch (Exception $e) {
 | ||
|             return $this->json(5000, '修改失败');
 | ||
|         }
 | ||
|     }
 | ||
| 
 | ||
|     /**
 | ||
|      * 删除
 | ||
|      *
 | ||
|      * @return \think\response\Json
 | ||
|      */
 | ||
|     public function del(): Json
 | ||
|     {
 | ||
|         if (!$this->request->isPost()) {
 | ||
|             return $this->json(4000, '非法请求');
 | ||
|         }
 | ||
| 
 | ||
|         $ids = $this->request->param('ids/a', []);
 | ||
|         if (empty($ids)) {
 | ||
|             $ids[] = $this->request->param('id/d', 0);
 | ||
|             $ids   = array_filter($ids);
 | ||
|         }
 | ||
| 
 | ||
|         try {
 | ||
|             if (count($ids)) {
 | ||
|                 //删除逻辑
 | ||
|                 if (\app\model\Account::whereIn('Worksite', $ids)->count() > 0) {
 | ||
|                     return $this->json(4000, '所选岗位已分配给用户,请先移除后再删除');
 | ||
|                 }
 | ||
|                 \app\model\Worksite::whereIn('id', $ids)->delete();
 | ||
| 
 | ||
|                 Log::write(get_class(), 'del', '删除操作,涉及到的ID为:'.implode(',', $ids));
 | ||
|             }
 | ||
|         } catch (Exception $e) {
 | ||
|             return $this->json(5000, $e->getMessage());
 | ||
|         }
 | ||
| 
 | ||
|         return $this->json();
 | ||
|     }
 | ||
| 
 | ||
|     /**
 | ||
|      * 获取客户列表
 | ||
|      *
 | ||
|      * @return Json
 | ||
|      * @throws DataNotFoundException
 | ||
|      * @throws DbException
 | ||
|      * @throws ModelNotFoundException|Exception
 | ||
|      */
 | ||
|     public function getAccountList(): Json
 | ||
|     {
 | ||
|         if ($this->request->isPost()) {
 | ||
|             $keyword = input('keyword/s', '');
 | ||
|             $page    = input('page/d', 1);
 | ||
|             $size    = input('size/d', 10);
 | ||
|             $id      = input('id', '');
 | ||
| 
 | ||
|             $relationIds = explode(',', $id);//已选记录
 | ||
| 
 | ||
|             $where = [];
 | ||
|             if (!empty($keyword)) {
 | ||
|                 $where[] = ['nickname|real_name|mobile', 'like', '%'.$keyword.'%'];
 | ||
|             }
 | ||
| 
 | ||
|             $res = AccountModel::findList($where, ['id', 'nickname', 'real_name', 'mobile'], $page, $size);
 | ||
| 
 | ||
|             if ($res['total'] > 0 && $relationIds) {
 | ||
|                 $res['list'] = $res['list']->toArray();
 | ||
|                 foreach ($res['list'] as &$item) {
 | ||
|                     $item['name_text'] = sprintf("昵称:%s;真实姓名:%s,手机号:%s", $item['nickname'], $item['real_name'], $item['mobile']);
 | ||
|                     if (count($relationIds) > 0 && in_array($item['id'], $relationIds)) {
 | ||
|                         $item['selected'] = true;
 | ||
|                     }
 | ||
|                 }
 | ||
|             }
 | ||
| 
 | ||
|             return $this->json(0, '操作成功', $res);
 | ||
|         }
 | ||
|         return $this->json(4001, '非法请求');
 | ||
|     }
 | ||
| } |