增加完成任务情景校验

Signed-off-by: vilson <545522390@qq.com>
This commit is contained in:
vilson 2019-01-24 15:25:41 +08:00
parent dab551ddf5
commit 0842290991
2 changed files with 36 additions and 2 deletions

View File

@ -14,7 +14,7 @@ use think\facade\Hook;
*/ */
class Task extends CommonModel class Task extends CommonModel
{ {
protected $append = ['priText', 'liked', 'stared', 'childCount', 'hasComment', 'hasSource', 'canRead']; protected $append = ['priText', 'liked', 'stared', 'childCount', 'hasUnDone', 'parentDone', 'hasComment', 'hasSource', 'canRead'];
public function read($code) public function read($code)
{ {
@ -213,6 +213,9 @@ class Task extends CommonModel
if ($parentTask['deleted']) { if ($parentTask['deleted']) {
throw new \Exception('父任务在回收站中无法编辑', 6); throw new \Exception('父任务在回收站中无法编辑', 6);
} }
if ($parentTask['done']) {
throw new \Exception('父任务已完成,无法添加新的子任务', 7);
}
} }
if ($assignTo) { if ($assignTo) {
$assignMember = Member::where(['code' => $assignTo])->field('id')->find(); $assignMember = Member::where(['code' => $assignTo])->field('id')->find();
@ -285,6 +288,13 @@ class Task extends CommonModel
if ($task['deleted']) { if ($task['deleted']) {
throw new \Exception('任务在回收站中无法进行编辑', 3); throw new \Exception('任务在回收站中无法进行编辑', 3);
} }
if ($task['parentDone']) {
throw new \Exception('父任务已完成,无法重做子任务', 4);
}
if ($task['hasUnDone']) {
throw new \Exception('子任务尚未全部完成,无法完成父任务', 5);
}
Db::startTrans(); Db::startTrans();
try { try {
$result = self::update(['done' => $done], ['code' => $taskCode]); $result = self::update(['done' => $done], ['code' => $taskCode]);
@ -523,6 +533,30 @@ class Task extends CommonModel
return $childTasks; return $childTasks;
} }
public function getParentDoneAttr($value, $data)
{
$done = 1;
if (isset($data['code']) && isset($data['pcode']) && $data['pcode']) {
$task = self::where(['code' => $data['pcode']])->field('done')->find();
if ($task && !$task['done']) {
$done = 0;
}
}
return $done;
}
public function getHasUnDoneAttr($value, $data)
{
$hasUnDone = 0;
if (isset($data['code'])) {
$taskCount = self::where(['pcode' => $data['code'], 'done' => 0])->count('id');
if ($taskCount) {
$hasUnDone = 1;
}
}
return $hasUnDone;
}
public function getHasCommentAttr($value, $data) public function getHasCommentAttr($value, $data)
{ {
$comment = 0; $comment = 0;

View File

@ -116,8 +116,8 @@ class Task extends BasicApi
public function read(Request $request) public function read(Request $request)
{ {
//todo 隐私模式阅读权限
$data = $request::only('taskCode'); $data = $request::only('taskCode');
try { try {
$result = $this->model->read($data['taskCode']); $result = $this->model->read($data['taskCode']);
} catch (\Exception $e) { } catch (\Exception $e) {