update 小组团第任务-其他任务可重复创建

This commit is contained in:
chenbo 2023-10-21 11:39:39 +08:00
parent 6ee37ae389
commit 96ce4310e4

View File

@ -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){