任务日程-查看公司每日任务列表

This commit is contained in:
chenbo 2023-12-22 15:51:50 +08:00
parent 597a3006be
commit 56e57969fb
2 changed files with 3 additions and 3 deletions

View File

@ -120,13 +120,13 @@ class TaskSchedulingPlanController extends BaseAdminController
{ {
$companyId = $this->request->param('company_id', 0); $companyId = $this->request->param('company_id', 0);
$date = $this->request->param('date',); $date = $this->request->param('date',);
$list = TaskSchedulingPlan::where(['company_id' => $companyId]) $lists = TaskSchedulingPlan::where(['company_id' => $companyId])
->where('start_time', strtotime($date)) ->where('start_time', strtotime($date))
->with(['template','templateInfo', 'task']) ->with(['template','templateInfo', 'task'])
->order(['id' => 'desc']) ->order(['id' => 'desc'])
->select() ->select()
->toArray(); ->toArray();
return $this->success('', $list); return $this->success('', compact('lists'));
} }

View File

@ -49,7 +49,7 @@ class TaskSchedulingPlan extends BaseModel
} }
public function task() public function task()
{ {
return $this->hasOne(Task::class, 'task_id', 'id'); return $this->hasOne(Task::class, 'id', 'task_id');
} }
public function templateInfo() public function templateInfo()
{ {