* 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
@@ -2972,13 +2972,13 @@ class taskModel extends model
$storyChanged ? print("<span class='status-story status-changed'>{$this->lang->story->changed}</span>") : print("<span class='status-task status-{$task->status}'> " . $this->processStatus('task', $task) . "</span>");
break;
case 'estimate':
echo round($task->estimate, 1) . ' ' . $this->lang->execution->workHourUnit;
echo round($task->estimate, 1) . $this->lang->execution->workHourUnit;
break;
case 'consumed':
echo round($task->consumed, 1) . ' ' . $this->lang->execution->workHourUnit;
echo round($task->consumed, 1) . $this->lang->execution->workHourUnit;
break;
case 'left':
echo round($task->left, 1) . ' ' . $this->lang->execution->workHourUnit;
echo round($task->left, 1) . $this->lang->execution->workHourUnit;
break;
case 'progress':
echo round($task->progress, 2) . '%';