From 4be4ea7d0f44af232b6f9549e2f51c1fce3360a8 Mon Sep 17 00:00:00 2001 From: sunguangming Date: Mon, 12 Jun 2023 15:20:20 +0800 Subject: [PATCH] * Add execution::all custom fields. --- module/execution/config/dtable.php | 13 +++++++++++++ module/execution/ui/all.html.php | 5 ++++- module/project/zen.php | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/module/execution/config/dtable.php b/module/execution/config/dtable.php index e334fbf38b..5e5f197ee4 100644 --- a/module/execution/config/dtable.php +++ b/module/execution/config/dtable.php @@ -7,6 +7,7 @@ $config->execution->dtable->fieldList['rawID']['type'] = 'checkID'; $config->execution->dtable->fieldList['rawID']['sortType'] = 'desc'; $config->execution->dtable->fieldList['rawID']['checkbox'] = true; $config->execution->dtable->fieldList['rawID']['width'] = '80'; +$config->execution->dtable->fieldList['rawID']['required'] = true; $config->execution->dtable->fieldList['name']['title'] = $lang->execution->name; $config->execution->dtable->fieldList['name']['name'] = 'name'; @@ -16,6 +17,7 @@ $config->execution->dtable->fieldList['name']['type'] = 'html'; $config->execution->dtable->fieldList['name']['nestedToggle'] = true; $config->execution->dtable->fieldList['name']['sortType'] = true; $config->execution->dtable->fieldList['name']['minWidth'] = '356'; +$config->execution->dtable->fieldList['name']['required'] = true; if(isset($config->setCode) and $config->setCode == 1) { @@ -25,6 +27,7 @@ if(isset($config->setCode) and $config->setCode == 1) $config->execution->dtable->fieldList['code']['type'] = 'text'; $config->execution->dtable->fieldList['code']['sortType'] = true; $config->execution->dtable->fieldList['code']['width'] = '136'; + $config->execution->dtable->fieldList['code']['show'] = 'true'; } $config->execution->dtable->fieldList['project']['title'] = $lang->execution->project; @@ -33,6 +36,7 @@ $config->execution->dtable->fieldList['project']['type'] = 'desc'; $config->execution->dtable->fieldList['project']['sortType'] = true; $config->execution->dtable->fieldList['project']['width'] = '160'; $config->execution->dtable->fieldList['project']['group'] = '1'; +$config->execution->dtable->fieldList['project']['show'] = true; $config->execution->dtable->fieldList['status']['title'] = $lang->execution->status; $config->execution->dtable->fieldList['status']['name'] = 'status'; @@ -41,6 +45,7 @@ $config->execution->dtable->fieldList['status']['statusMap'] = $lang->execution- $config->execution->dtable->fieldList['status']['sortType'] = true; $config->execution->dtable->fieldList['status']['width'] = '80'; $config->execution->dtable->fieldList['status']['group'] = '1'; +$config->execution->dtable->fieldList['status']['show'] = true; $config->execution->dtable->fieldList['PM']['title'] = $lang->execution->PM; $config->execution->dtable->fieldList['PM']['name'] = 'PM'; @@ -48,6 +53,7 @@ $config->execution->dtable->fieldList['PM']['type'] = 'avatarBtn'; $config->execution->dtable->fieldList['PM']['sortType'] = true; $config->execution->dtable->fieldList['PM']['width'] = '100'; $config->execution->dtable->fieldList['PM']['group'] = '2'; +$config->execution->dtable->fieldList['PM']['show'] = true; $config->execution->dtable->fieldList['openedDate']['title'] = $lang->execution->openedDate; $config->execution->dtable->fieldList['openedDate']['name'] = 'openedDate'; @@ -62,6 +68,7 @@ $config->execution->dtable->fieldList['begin']['type'] = 'date'; $config->execution->dtable->fieldList['begin']['sortType'] = true; $config->execution->dtable->fieldList['begin']['width'] = '96'; $config->execution->dtable->fieldList['begin']['group'] = '3'; +$config->execution->dtable->fieldList['begin']['show'] = true; $config->execution->dtable->fieldList['end']['title'] = $lang->execution->end; $config->execution->dtable->fieldList['end']['name'] = 'end'; @@ -69,6 +76,7 @@ $config->execution->dtable->fieldList['end']['type'] = 'date'; $config->execution->dtable->fieldList['end']['sortType'] = true; $config->execution->dtable->fieldList['end']['width'] = '96'; $config->execution->dtable->fieldList['end']['group'] = '3'; +$config->execution->dtable->fieldList['end']['show'] = true; $config->execution->dtable->fieldList['realBegan']['title'] = $lang->execution->realBeganAB; $config->execution->dtable->fieldList['realBegan']['name'] = 'realBegan'; @@ -90,6 +98,7 @@ $config->execution->dtable->fieldList['totalEstimate']['type'] = 'number'; $config->execution->dtable->fieldList['totalEstimate']['sortType'] = false; $config->execution->dtable->fieldList['totalEstimate']['width'] = '64'; $config->execution->dtable->fieldList['totalEstimate']['group'] = '4'; +$config->execution->dtable->fieldList['totalEstimate']['show'] = true; $config->execution->dtable->fieldList['totalConsumed']['title'] = $lang->execution->totalConsumed; $config->execution->dtable->fieldList['totalConsumed']['name'] = 'totalConsumed'; @@ -97,6 +106,7 @@ $config->execution->dtable->fieldList['totalConsumed']['type'] = 'number'; $config->execution->dtable->fieldList['totalConsumed']['sortType'] = false; $config->execution->dtable->fieldList['totalConsumed']['width'] = '64'; $config->execution->dtable->fieldList['totalConsumed']['group'] = '4'; +$config->execution->dtable->fieldList['totalConsumed']['show'] = true; $config->execution->dtable->fieldList['totalLeft']['title'] = $lang->execution->totalLeft; $config->execution->dtable->fieldList['totalLeft']['name'] = 'totalLeft'; @@ -104,6 +114,7 @@ $config->execution->dtable->fieldList['totalLeft']['type'] = 'number'; $config->execution->dtable->fieldList['totalLeft']['sortType'] = false; $config->execution->dtable->fieldList['totalLeft']['width'] = '64'; $config->execution->dtable->fieldList['totalLeft']['group'] = '4'; +$config->execution->dtable->fieldList['totalLeft']['show'] = true; $config->execution->dtable->fieldList['progress']['title'] = $lang->execution->progress; $config->execution->dtable->fieldList['progress']['name'] = 'progress'; @@ -111,6 +122,7 @@ $config->execution->dtable->fieldList['progress']['type'] = 'progress'; $config->execution->dtable->fieldList['progress']['sortType'] = false; $config->execution->dtable->fieldList['progress']['width'] = '64'; $config->execution->dtable->fieldList['progress']['group'] = '4'; +$config->execution->dtable->fieldList['progress']['show'] = true; $config->execution->dtable->fieldList['burn']['title'] = $lang->execution->burn; $config->execution->dtable->fieldList['burn']['name'] = 'burn'; @@ -118,3 +130,4 @@ $config->execution->dtable->fieldList['burn']['type'] = 'burn'; $config->execution->dtable->fieldList['burn']['sortType'] = false; $config->execution->dtable->fieldList['burn']['width'] = '88'; $config->execution->dtable->fieldList['burn']['group'] = '4'; +$config->execution->dtable->fieldList['burn']['show'] = true; diff --git a/module/execution/ui/all.html.php b/module/execution/ui/all.html.php index 5a1d0ab8ed..118207ec70 100644 --- a/module/execution/ui/all.html.php +++ b/module/execution/ui/all.html.php @@ -73,13 +73,16 @@ toolbar ))) : null ); +$setting = $this->datatable->getSetting('execution'); + dtable ( set::userMap($users), - set::cols(array_values($config->execution->dtable->fieldList)), + set::cols($setting), set::data($tableData), set::checkable($canBatchAction), set::fixedLeftWidth('44%'), + set::customCols(true), set::onRenderCell(jsRaw('onRenderSparkline')), set::footToolbar($footToolbar), set::footPager( diff --git a/module/project/zen.php b/module/project/zen.php index b3c03fd78b..92fa3f5e98 100644 --- a/module/project/zen.php +++ b/module/project/zen.php @@ -980,7 +980,7 @@ class projectZen extends project if($project->PM) { - $user = zget($userList, $project->PM); + $user = zget($userList, $project->PM, ''); if(empty($user)) continue; $project->PM = $user->realname;