diff --git a/module/project/control.php b/module/project/control.php
index 656ab48760..3b8bf8cca8 100644
--- a/module/project/control.php
+++ b/module/project/control.php
@@ -1048,11 +1048,12 @@ class project extends control
foreach($executionStats as $execution)
{
$execution->productName = isset($productNameList[$execution->id]) ? $productNameList[$execution->id] : '';
- if(!empty($execution->tasks) or !empty($execution->children))
+
+ if(!empty($execution->children))
{
- $showToggleIcon = true;
- break;
+ foreach($execution->children as $childrenID => $children) $children->productName = isset($productNameList[$childrenID]) ? $productNameList[$childrenID] : '';
}
+ if(!empty($execution->tasks) or !empty($execution->children)) $showToggleIcon = true;
}
$this->view->executionStats = $executionStats;
diff --git a/module/project/css/execution.css b/module/project/css/execution.css
index 4c3cddba23..71939a8e6b 100644
--- a/module/project/css/execution.css
+++ b/module/project/css/execution.css
@@ -13,7 +13,6 @@ th.table-nest-title .check-all {position: absolute; left: 15px; top: 7px;}
#executionTableList > tr:not(.has-nest-child) .project-type-label {margin-left: 22px;}
.table-statistic {padding-left: 10px;}
td.flex {display: flex; flex-flow: row nowrap; justify-content: flex-start; align-items: center; margin-bottom: 0px;}
-th.c-name {width: 80px;}
td.c-name > .project-type-label {flex: 0 0 36px; padding-right: 2px;}
.c-name > a, .table-children .text-left > a, .c-name > span.text-ellipsis { padding-left: 5px; text-overflow: clip;}
span.table-nest-icon.table-nest-toggle {min-width: 22px; max-width: 22px;}
diff --git a/module/project/view/execution.html.php b/module/project/view/execution.html.php
index af18757430..c935de3512 100644
--- a/module/project/view/execution.html.php
+++ b/module/project/view/execution.html.php
@@ -77,7 +77,6 @@
- division) echo "| {$lang->project->product} | ";?>
nameAB;?>
@@ -86,6 +85,7 @@
|
+ division) echo "{$lang->project->product} | ";?>
project->status;?> |
execution->owner;?> |
programplan->begin;?> |