diff --git a/app/api/controller/TaskController.php b/app/api/controller/TaskController.php index 30c5a46bb..5bd01dda5 100644 --- a/app/api/controller/TaskController.php +++ b/app/api/controller/TaskController.php @@ -28,9 +28,7 @@ class TaskController extends BaseApiController $time = strtotime(date('Y-m-d')); $userCompanyInfo = Company::where('id', $this->userInfo['company_id'])->find(); $where = []; - if ($this->userInfo['admin_id'] != 0) { - $where[] = ['company_id', '=', $this->userInfo['company_id']]; - } + if ($userCompanyInfo['company_type'] == 18) { $is_captain = User::where('id', $this->userId)->value('is_captain'); if ($is_captain == 1) { @@ -51,6 +49,9 @@ class TaskController extends BaseApiController $where[] = ['director_uid', '=', $this->userId]; // $where[] = ['company_id', '=', $this->userInfo['company_id']]; } + if ($this->userInfo['admin_id'] != 0) { + $where[] = ['company_id', '=', $this->userInfo['company_id']]; + } if (isset($param['date_time']) && $param['date_time'] != '') { $time = strtotime($param['date_time']); $param['start_time']=date('Y-m-d H:i:s',$time);