Finish task#3253 优化看板卡片弹出菜单的位置,cost:1 left:0

Finish task#3243 看板增加自定义设置显示颜色的功能,cost:3 left:0
Finish task#3242 看板增加默认展开/折叠任务选项卡的功能,cost:1 left:0
Finish task#3241 看板增加显示/隐藏已关闭已取消任务的功能,cost:2 left:0
This commit is contained in:
wangyidong
2017-10-20 16:27:17 +08:00
parent 9043edd8ca
commit c312b64220
11 changed files with 261 additions and 37 deletions
+1 -1
View File
@@ -186,7 +186,7 @@ class testreportModel extends model
*/
public function getBugInfo($tasks, $productIdList, $begin, $end, $builds)
{
$bugsByTask = $this->dao->select('*')->from(TABLE_BUG)->where('testtask')->in(array_keys($tasks))->andWhere('testtask')->ne(0)->andWhere('deleted')->eq(0)->fetchAll('id');
$bugsByTask = $this->dao->select('*')->from(TABLE_BUG)->where('testtask')->in(array_keys($tasks))->andWhere('testtask')->ne(0)->andWhere('`case`')->ne(0)->andWhere('deleted')->eq(0)->fetchAll('id');
$severityGroups = $statusGroups = $openedByGroups = $resolvedByGroups = $resolutionGroups = $moduleGroups = $typeGroups = array();
$resolvedBugs = 0;
foreach($bugsByTask as $bug)