* Merge 18.8 programplan module.

This commit is contained in:
hufangzhou
2023-11-23 16:49:36 +08:00
parent 4bb8e39815
commit 25fe77cac7
12 changed files with 298 additions and 44 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ $fnGenerateStageByProductList = function() use ($productID, $productList, $proje
/* Generate checkboxes for sub-stage management. */
$fnGenerateSubPlanManageFields = function() use ($lang, $planID, $project, $executionType)
{
if(empty($planID) || $project->model != 'waterfallplus') return div();
if(empty($planID) || in_array($project->model, array('waterfallplus', 'ipd'))) return div();
$typeList = $project->model == 'ipd' ? $lang->stage->ipdTypeList : $lang->programplan->typeList;