diff options
Diffstat (limited to 'taskapp/events/task.py')
-rw-r--r-- | taskapp/events/task.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/taskapp/events/task.py b/taskapp/events/task.py index c9d3a21..32bc33d 100644 --- a/taskapp/events/task.py +++ b/taskapp/events/task.py @@ -4,7 +4,12 @@ from pytask.taskapp.models import Profile, Task, Comment, Credit, Claim def publishTask(task): """ set the task status to open """ - task.status = "OP" + sub_tasks = task.subs.all() + dependencies = task.deps.all() + if sub_tasks or any(map(lambda t:t.status!="CM",dependencies)): + task.status = "LO" + else: + task.status = "OP" task.save() return task |