From 1a8d5a70e7cab6adb4f0cb3ccf5cd4633b15b0d4 Mon Sep 17 00:00:00 2001 From: daitingting Date: Thu, 9 Feb 2023 01:35:19 +0000 Subject: [PATCH] * Fix bug #30843. --- module/programplan/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/programplan/model.php b/module/programplan/model.php index b93d29b07b..031f29a143 100755 --- a/module/programplan/model.php +++ b/module/programplan/model.php @@ -152,7 +152,7 @@ class programplanModel extends model $this->loadModel('stage'); $this->loadModel('execution'); - $plans = $this->getStage($executionID, $productID); + $plans = $this->getStage($executionID, $productID, 'all', 'order'); if($baselineID) { $baseline = $this->loadModel('cm')->getByID($baselineID);