From 907f16d5fffeea7ec9e7695f896cc944fd0ee9f7 Mon Sep 17 00:00:00 2001 From: qiyu-xie Date: Tue, 20 Jul 2021 08:31:59 +0800 Subject: [PATCH] * When project manage product, make normal product without 'has-branch' class. --- module/project/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/project/control.php b/module/project/control.php index 604e4994a2..f15686f23e 100644 --- a/module/project/control.php +++ b/module/project/control.php @@ -1589,7 +1589,7 @@ class project extends control $this->view->allProducts = $allProducts; $this->view->linkedProducts = $linkedProducts; $this->view->unmodifiableProducts = $unmodifiableProducts; - $this->view->branchGroups = $this->loadModel('branch')->getByProducts(array_keys($allProducts), '', $linkedBranches); + $this->view->branchGroups = $this->loadModel('branch')->getByProducts(array_keys($allProducts), 'ignoreNormal', $linkedBranches); $this->display(); }