From 33d47cd4a4dc0fc0a386f638eade5fade9528308 Mon Sep 17 00:00:00 2001 From: tianshujie Date: Mon, 23 Oct 2023 11:18:51 +0800 Subject: [PATCH] * Fix an error when setting stage. --- 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 278782dc62..0e65e2bd02 100755 --- a/module/programplan/model.php +++ b/module/programplan/model.php @@ -813,7 +813,7 @@ class programplanModel extends model $this->computeProgress($stageID, 'create'); } } - $this->execution->updateProducts($stageID); + $this->execution->updateProducts($stageID, $_POST); /* If child plans has milestone, update parent plan set milestone eq 0 . */ if($parentID and $milestone) $this->dao->update(TABLE_PROJECT)->set('milestone')->eq(0)->where('id')->eq($parentID)->exec();