From 3d249a63ae2155ce41898b86dfdeea003eb79499 Mon Sep 17 00:00:00 2001 From: chenbo <709206448@qq.com> Date: Mon, 20 Nov 2023 19:01:21 +0800 Subject: [PATCH] fixed --- app/common/logic/task/TaskLogic.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/common/logic/task/TaskLogic.php b/app/common/logic/task/TaskLogic.php index 6483aae3f..83d087fc9 100644 --- a/app/common/logic/task/TaskLogic.php +++ b/app/common/logic/task/TaskLogic.php @@ -2313,7 +2313,7 @@ class TaskLogic extends BaseLogic // 查询 镇农科公司负责人是否有对应的每日任务安排 $templateList = TaskTemplate::where(['company_id'=>$townCompany['id']])->whereIn('type', $typeIds)->select()->toArray(); // 未做任务安排的小组服务公司不在判定范围内,跳出本次循环 - if(count($templateList) === 4) { + if(count($templateList) === 3) { $isTaskSchedule = 1; // 查询负责人的循环任务有没有全部做完 任意有一个任务没有做完,则判定为 协助总负责人开展工作任务 失败 foreach ($templateList as $template) {