From 7c3d4243a1bce6e878c8bbeb3a86f00e646cd9d5 Mon Sep 17 00:00:00 2001 From: zhujinyong Date: Mon, 2 Jul 2012 16:04:12 +0000 Subject: [PATCH] * fix a bug : workload not include done task. --- module/report/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/report/model.php b/module/report/model.php index 6b58ef5911..8cf74e80cb 100644 --- a/module/report/model.php +++ b/module/report/model.php @@ -343,7 +343,7 @@ EOT; ->leftJoin(TABLE_PROJECT)->alias('t2') ->on('t1.project = t2.id') ->where('t1.deleted')->eq(0) - ->andWhere('t1.status')->notin('cancel, closed') + ->andWhere('t1.status')->notin('cancel, closed, done') ->fetchGroup('assignedTo'); $bugs = $this->dao->select('t1.*, t2.name as productName') ->from(TABLE_BUG)->alias('t1')