This commit is contained in:
sunguangming
2023-12-25 18:58:24 +08:00
parent bdfe3e2f20
commit 82cbad914b
3 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -211,7 +211,7 @@ $fnGenerateDefaultData = function() use ($config, $plans, $planID, $stages, $exe
$item->realBegan = $plan->realBegan;
$item->realEnd = $plan->realEnd;
$item->desc = $plan->desc;
$item->setMilestone = $plan->setMilestone;
$item->setMilestone = isset($plan->setMilestone) ? $plan->setMilestone : false;
if(in_array($config->edition, array('max', 'ipd')) && $executionType == 'stage')
{
$item->output = empty($plan->output) ? 0 : explode(',', $plan->output);