* Finish task #80189 for Closed plans are not shown in Kanban.

This commit is contained in:
liuhong
2022-12-29 08:03:56 +00:00
parent eb7dce8e88
commit 06e00bfa61
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -810,7 +810,7 @@ class kanbanModel extends model
}
elseif($branchID == 'all')
{
$branches = $this->branch->getPairs($product->id);
$branches = $this->branch->getPairs($product->id, 'active');
}
elseif($branchID == BRANCH_MAIN)
{
+1 -1
View File
@@ -358,7 +358,7 @@ class productplan extends control
else
{
$planGroup = $this->productplan->getGroupByProduct($product->id, 'skipParent', '', $orderBy);
$branches = $this->branch->getPairs($product->id);
$branches = $this->branch->getPairs($product->id, 'active');
foreach($branches as $id => $name)
{