diff --git a/app/common/logic/task_template/TaskTemplateLogic.php b/app/common/logic/task_template/TaskTemplateLogic.php index 06abaa957..0a5190cf3 100644 --- a/app/common/logic/task_template/TaskTemplateLogic.php +++ b/app/common/logic/task_template/TaskTemplateLogic.php @@ -47,11 +47,15 @@ class TaskTemplateLogic extends BaseLogic try { Db::startTrans(); - $find=TaskTemplate::where('task_scheduling', $params['task_scheduling'])->where('company_id',$params['company_id'])->where('type',$params['type'])->field('id,types,type')->find(); - if($find&&$params['type']==$find['type']){ - self::setError('已经有同一种任务类型了'); - return false; + // 其他任务可重复创建 + if ($params['type'] != 34) { + $find=TaskTemplate::where('task_scheduling', $params['task_scheduling'])->where('company_id',$params['company_id'])->where('type',$params['type'])->field('id,types,type')->find(); + if($find&&$params['type']==$find['type']){ + self::setError('已经有同一种任务类型了'); + return false; + } } + if($params['type']==33){ $count=UserInformationg::where('company_id',$params['company_id'])->where('status',1)->count(); if($count<300){