* Create the single execution Kanban lane and Kanban column.

This commit is contained in:
tianshujie
2021-10-25 14:13:44 +08:00
parent e8010e951a
commit 3d22a50a00
9 changed files with 325 additions and 11 deletions
+3 -1
View File
@@ -1575,7 +1575,9 @@ class bugModel extends model
->beginIF($type == 'noclosed')->andWhere('status')->ne('closed')->fi()
->beginIF($build)->andWhere("CONCAT(',', openedBuild, ',') like '%,$build,%'")->fi()
->beginIF($excludeBugs)->andWhere('id')->notIN($excludeBugs)->fi()
->orderBy($orderBy)->page($pager)->fetchAll();
->orderBy($orderBy)
->page($pager)
->fetchAll('id');
}
$this->loadModel('common')->saveQueryCondition($this->dao->get(), 'bug');