This commit is contained in:
滔哥
2017-12-12 10:30:34 +08:00
parent c31cd78f91
commit 9efbce145c
3 changed files with 10 additions and 3 deletions
+1 -1
View File
@@ -1357,7 +1357,7 @@ class taskModel extends model
*/
public function getStoryTasks($storyID, $projectID = 0)
{
$tasks = $this->dao->select('id, name, assignedTo, pri, status, estimate, consumed, `left`')
$tasks = $this->dao->select('id, name, assignedTo, pri, status, estimate, consumed, closedReason, `left`')
->from(TABLE_TASK)
->where('story')->eq((int)$storyID)
->andWhere('deleted')->eq(0)