* Fix bug#26051

This commit is contained in:
zenggang
2022-12-23 02:56:21 +00:00
parent a65844d582
commit f58530fcd8
4 changed files with 21 additions and 5 deletions
+2
View File
@@ -141,9 +141,11 @@ if(isset($config->setCode) and $config->setCode == 0) unset($config->project->da
$config->project->checkList = new stdclass();
$config->project->checkList->scrum = array('bug', 'execution', 'build', 'doc', 'release', 'testtask', 'case');
$config->project->checkList->waterfall = array('execution', 'design', 'doc', 'bug', 'case', 'build', 'release', 'testtask');
$config->project->checkList->kanban = array('execution', 'build');
$config->project->maxCheckList = new stdclass();
$config->project->maxCheckList->scrum = array('bug', 'execution', 'build', 'doc', 'release', 'testtask', 'case', 'issue', 'risk', 'meeting');
$config->project->maxCheckList->waterfall = array('execution', 'design', 'doc', 'bug', 'case', 'build', 'release', 'testtask', 'review', 'build', 'researchplan', 'issue', 'risk', 'opportunity', 'auditplan', 'gapanalysis', 'meeting');
$config->project->maxCheckList->kanban = array('execution', 'build');
$config->project->search['module'] = 'project';
$config->project->search['fields']['name'] = $lang->project->name;