no message

This commit is contained in:
kuaifan
2021-06-15 16:46:56 +08:00
parent eaf6bcb896
commit e2ae2536b3
7 changed files with 157 additions and 75 deletions

View File

@@ -59,6 +59,7 @@ class ProjectColumn extends AbstractModel
$task->deleteTask();
}
if ($this->delete()) {
$this->addLog("删除列表:" . $this->name);
return Base::retSuccess('删除成功', $this->toArray());
} else {
return Base::retError('删除失败', $this->toArray());
@@ -66,4 +67,23 @@ class ProjectColumn extends AbstractModel
});
return Base::isSuccess($result);
}
/**
* 添加项目日志
* @param string $detail
* @param int $userid
* @return ProjectLog
*/
public function addLog($detail, $userid = 0)
{
$log = ProjectLog::createInstance([
'project_id' => $this->project_id,
'column_id' => $this->id,
'task_id' => 0,
'userid' => $userid ?: User::token2userid(),
'detail' => $detail,
]);
$log->save();
return $log;
}
}