* add task, bug, case counts of story to datatable.

This commit is contained in:
chenfeiCF
2016-11-22 11:24:25 +08:00
parent 54419ad74b
commit 995d4653cc
9 changed files with 52 additions and 6 deletions
+1 -1
View File
@@ -1222,7 +1222,7 @@ class bugModel extends model
*/
public function getStoryBugs($storyID)
{
return $this->dao->select('id, title, type, status, assignedTo, resolvedBy, resolution')
return $this->dao->select('id, title, pri, type, status, assignedTo, resolvedBy, resolution')
->from(TABLE_BUG)
->where('story')->eq((int)$storyID)
->andWhere('deleted')->eq(0)