* fix bug when get story tasks.

This commit is contained in:
chenfeiCF
2016-11-21 10:26:29 +08:00
parent 1cf66e4b78
commit b32c4eb6de
+1 -1
View File
@@ -991,7 +991,7 @@ class taskModel extends model
*/
public function getStoryTasks($storyID, $projectID = 0)
{
return $this->dao->select('id, name, assignedTo, status, estimate, consumed, `left`')
return $this->dao->select('id, name, assignedTo, pri, status, estimate, consumed, `left`')
->from(TABLE_TASK)
->where('story')->eq((int)$storyID)
->andWhere('deleted')->eq(0)