* Finish task #37099.

This commit is contained in:
holan20180123
2021-03-31 13:22:46 +08:00
parent d9910cc561
commit ea9cc9cb2f
21 changed files with 42 additions and 32 deletions
+3 -3
View File
@@ -1307,13 +1307,13 @@ class projectModel extends model
echo $project->teamCount;
break;
case 'estimate':
echo $project->hours->totalEstimate . ' ' . $this->lang->execution->workHourUnit;
echo $project->hours->totalEstimate . $this->lang->execution->workHourUnit;
break;
case 'consume':
echo $project->hours->totalConsumed . ' ' . $this->lang->execution->workHourUnit;
echo $project->hours->totalConsumed . $this->lang->execution->workHourUnit;
break;
case 'surplus':
echo $project->hours->totalLeft . ' ' . $this->lang->execution->workHourUnit;
echo $project->hours->totalLeft . $this->lang->execution->workHourUnit;
break;
case 'progress':
echo "<div class='progress-pie' data-doughnut-size='90' data-color='#00da88' data-value='{$project->hours->progress}' data-width='24' data-height='24' data-back-color='#e8edf3'><div class='progress-info'>{$project->hours->progress}</div></div>";