diff --git a/app/adminapi/controller/approve/ApproveController.php b/app/adminapi/controller/approve/ApproveController.php index f870f9bc0..de3c8720e 100644 --- a/app/adminapi/controller/approve/ApproveController.php +++ b/app/adminapi/controller/approve/ApproveController.php @@ -99,7 +99,7 @@ class ApproveController extends BaseAdminController ->where('is_pay',0) ->with(['template_info']) ->withJoin(['scheduling'], 'left') - ->where('scheduling.company_type', 41) + ->where('scheduling.company_type', 16) ->find() ->toArray(); TaskLogic::dealTaskMarketingDirector10($taskSchedulePlan, $approve); @@ -139,7 +139,7 @@ class ApproveController extends BaseAdminController ->where('is_pay',0) ->with(['template_info']) ->withJoin(['scheduling'], 'left') - ->where('scheduling.company_type', 41) + ->where('scheduling.company_type', 16) ->find() ->toArray(); TaskLogic::masterTask7Settlement($taskSchedulePlan); @@ -149,7 +149,7 @@ class ApproveController extends BaseAdminController ->where('is_pay',0) ->with(['template_info']) ->withJoin(['scheduling'], 'left') - ->where('scheduling.company_type', 41) + ->where('scheduling.company_type', 16) ->find() ->toArray(); TaskLogic::masterTask8Settlement($taskSchedulePlan); @@ -304,22 +304,22 @@ class ApproveController extends BaseAdminController ->toArray()[0]; TaskLogic::dealVillageTask5($taskSchedulingPaln, $approve); } - // 镇农科服务部长-督促小组服务团队入股村管理公司任务 + // 镇合伙人服务部长-督促小组服务团队入股村管理公司任务 if ($approve->type == Approve::APPROVE_TYPE_13) { $taskSchedulingPaln = TaskSchedulingPlan::where(['task_id' => $task->id]) ->withJoin(['scheduling'], 'left') - ->where('scheduling.company_type', 41) + ->where('scheduling.company_type', 16) ->where('is_pay',0) ->with(['template_info']) ->select() ->toArray()[0]; TaskLogic::dealTownTask6($taskSchedulingPaln, $approve); } - // 镇农科负责人-促成村联络员入股甲方 + // 镇合伙人负责人-促成村联络员入股甲方 if ($approve->type == Approve::APPROVE_TYPE_14) { $taskSchedulingPaln = TaskSchedulingPlan::where(['task_id' => $task->id]) ->withJoin(['scheduling'], 'left') - ->where('scheduling.company_type', 41) + ->where('scheduling.company_type', 16) ->where('is_pay',0) ->with(['template_info']) ->select()