From 150beef775a9a15ad89fa6edf8272ddb6bbc911d Mon Sep 17 00:00:00 2001 From: guofeilong Date: Mon, 10 Oct 2022 02:51:03 +0000 Subject: [PATCH] * finish task *71875 --- module/execution/config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/execution/config.php b/module/execution/config.php index 82dda40697..f14bd946b5 100644 --- a/module/execution/config.php +++ b/module/execution/config.php @@ -177,11 +177,11 @@ $config->execution->gantt->linkType['begin']['end'] = 3; $config->execution->datatable = new stdclass(); if($config->systemMode == 'new') { - $config->execution->datatable->defaultField = array('id', 'name', 'project', 'PM', 'status', 'progress', 'begin', 'end', 'estimate', 'consumed', 'left', 'burn'); + $config->execution->datatable->defaultField = array('id', 'name', 'project', 'status', 'PM', 'begin', 'end', 'estimate', 'consumed', 'left', 'progress', 'burn'); } else { - $config->execution->datatable->defaultField = array('id', 'name', 'PM', 'status', 'progress', 'begin', 'end', 'estimate', 'consumed', 'left', 'burn'); + $config->execution->datatable->defaultField = array('id', 'name', 'status', 'PM', 'begin', 'end', 'estimate', 'consumed', 'left', 'progress', 'burn'); } $config->execution->datatable->fieldList['id']['title'] = 'idAB';