From f5cdbaafe586cccd91ce732a8d2bb25bbbf647bd Mon Sep 17 00:00:00 2001 From: zhouxin Date: Wed, 28 Aug 2024 14:27:40 +0800 Subject: [PATCH] * [bug#126104,done,0.5h] filter projects of not multiple. --- module/execution/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/control.php b/module/execution/control.php index d357305619..0ca91a0843 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -1215,7 +1215,7 @@ class execution extends control $this->view->currentPlan = $linkedObjects->currentPlan; $this->view->branchGroups = $this->execution->getBranchByProduct(array_keys($linkedObjects->linkedProducts), $execution->project, 'noclosed', $linkedObjects->linkedBranchList); $this->view->teamMembers = $this->execution->getTeamMembers($executionID); - $this->view->allProjects = $this->project->getPairsByModel($project->model, 'noclosed', $project->id); + $this->view->allProjects = $this->project->getPairsByModel($project->model, 'noclosed|multiple', $project->id); $this->view->parentStageList = isset($parentStageList) ? $parentStageList : array(); $this->view->isStage = isset($project->model) && in_array($project->model, array('waterfall', 'waterfallplus')); $this->display();