任务日程-查看公司每日任务列表
This commit is contained in:
parent
597a3006be
commit
56e57969fb
@ -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'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -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()
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user