From 5a23ce2d5ca9fc26c2e5382c9683526a912e8504 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Tue, 24 May 2022 16:34:16 +0800 Subject: [PATCH] * Fix bug #22759. --- module/execution/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/config.php b/module/execution/config.php index a0d653269c..fb00ff4e8f 100644 --- a/module/execution/config.php +++ b/module/execution/config.php @@ -7,7 +7,7 @@ $config->execution->weekend = '2'; $config->execution->ownerFields = array('PO', 'PM', 'QD', 'RD'); $config->execution->list = new stdclass(); -$config->execution->list->exportFields = 'id,name,projectName,code,PM,end,status,totalEstimate,totalConsumed,totalLeft,progress'; +$config->execution->list->exportFields = 'id,name,projectName,code,PM,begin,end,status,totalEstimate,totalConsumed,totalLeft,progress'; $config->execution->modelList['scrum'] = 'sprint'; $config->execution->modelList['waterfall'] = 'stage';