diff --git a/app/api/controller/CeshiController.php b/app/api/controller/CeshiController.php index 7422606e7..9e98e7260 100644 --- a/app/api/controller/CeshiController.php +++ b/app/api/controller/CeshiController.php @@ -474,7 +474,7 @@ class CeshiController extends BaseApiController // 查询系统 所有镇农科公司 未下发 的 任务安排 $taskSchedulingList = TaskScheduling::where('cron_time', '<', time()) ->where('status', 1) - ->where('company_type', 41) + ->where('company_type', 16) ->where('company_id', $companyId) ->with('company_info') ->select() @@ -514,7 +514,7 @@ class CeshiController extends BaseApiController // 今日未结算的任务计划 $taskSchedulingPlanList = TaskSchedulingPlan::whereDay('end_time','today') ->withJoin(['scheduling'], 'left') - ->where('scheduling.company_type', 41) + ->where('scheduling.company_type', 16) ->where('is_pay',0) ->with(['template_info']) ->select()