From dbd2b9029b99ef92f0b8717d1cf95c9e77f2cdd9 Mon Sep 17 00:00:00 2001 From: sunguangming Date: Wed, 26 Jul 2023 17:16:35 +0800 Subject: [PATCH] * Send branchID to page. --- module/productplan/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/productplan/control.php b/module/productplan/control.php index f89747f759..f12716edb5 100644 --- a/module/productplan/control.php +++ b/module/productplan/control.php @@ -348,7 +348,6 @@ class productplan extends control $this->view->branches = array('all' => $this->lang->productplan->allAB . ' ' . $planCount) + $branchPairs; } - $this->view->branchID = $branchID; $this->view->kanbanData = $this->loadModel('kanban')->getPlanKanban($product, $branchID, $planGroup); } @@ -357,6 +356,7 @@ class productplan extends control $this->view->title = $productName . $this->lang->colon . $this->lang->productplan->browse; $this->view->productID = $productID; $this->view->branch = $branch; + $this->view->branchID = $branchID; $this->view->branchStatusList = $branchStatusList; $this->view->productPlansNum = $this->productplan->getList($productID, $branch, 'all'); $this->view->browseType = $browseType;