This commit is contained in:
mkm 2024-01-08 11:54:32 +08:00
parent 8eb0fa4aae
commit 682392fdc2

View File

@ -470,7 +470,7 @@ class Task extends CommonModel
// 'content' => $comment,
// 'type' => 'comment'
// ];
self::taskHook(getCurrentMember()['code'], $taskCode, 'comment', '', 1, '', $comment, '', $mentions);
$comment='comment';
if($type==1){
$data['status']=2;
if($task['exchange_list']){
@ -479,10 +479,18 @@ class Task extends CommonModel
unset($task['exchange_list'][0]);
Db::name('task')->where('id',$task['id'])->update($data);
}
$comment='pass';
}elseif($type==2){
$comment='reject';
$data['status']=2;
Db::name('task')->where('id',$task['id'])->update($data);
}elseif($type==3){
$comment='add';
$data['status']=4;
Db::name('task')->where('id',$task['id'])->update($data);
}
self::taskHook(getCurrentMember()['code'], $taskCode, 'comment', '', 1, '', $comment, '', $mentions);
return true;
// return ProjectLog::create($data);
}