* [misc,done,3h] convert scientific counting into numbers.

This commit is contained in:
tianshujie
2025-02-11 11:30:35 +08:00
committed by 刘刚
parent bbff780d3d
commit ec43dda1ee
19 changed files with 54 additions and 24 deletions
+4 -4
View File
@@ -465,19 +465,19 @@ row
(
setClass('w-1/3'),
span(setClass('text-gray'), $lang->execution->estimateHours),
span(setClass('ml-2'), (float)$project->estimate . 'h')
span(setClass('ml-2'), helper::formatHours($project->estimate) . 'h')
),
div
(
setClass('w-1/3'),
span(setClass('text-gray'), $lang->execution->consumedHours),
span(setClass('ml-2'), (float)$project->consumed . 'h')
span(setClass('ml-2'), helper::formatHours($project->consumed) . 'h')
),
div
(
setClass('w-1/3'),
span(setClass('text-gray'), $lang->execution->leftHours),
span(setClass('ml-2'), (float)$project->left . 'h')
span(setClass('ml-2'), helper::formatHours($project->left) . 'h')
),
div
(
@@ -489,7 +489,7 @@ row
(
setClass('w-1/3 mt-4'),
span(setClass('text-gray'), $lang->execution->totalHours),
span(setClass('ml-2'), (float)$project->left . 'h')
span(setClass('ml-2'), helper::formatHours($project->left) . 'h')
),
div
(