From a3cdb43f1cde19dac1ca7189d556c85117a6a0da Mon Sep 17 00:00:00 2001 From: chenbo <709206448@qq.com> Date: Fri, 24 Nov 2023 10:37:22 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E9=95=87=E5=86=9C=E7=A7=91=E5=85=AC?= =?UTF-8?q?=E5=8F=B8=E4=BB=BB=E5=8A=A1=E6=94=B9=E4=B8=BA=E9=95=87=E5=90=88?= =?UTF-8?q?=E4=BC=99=E4=BA=BA=E5=85=AC=E5=8F=B8=E4=BB=BB=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/controller/CeshiController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()