[Bug #936] Fixed issue setting scale to 2 decimal figure, before converting in String.
FEA : ItEr72S04BugFixing
This commit is contained in:
parent
05b553bcd0
commit
fecfa19556
1 changed files with 6 additions and 6 deletions
|
|
@ -97,17 +97,17 @@ public class OrderElementHistoricalStatisticsComponent extends
|
|||
finishApplications = getFinishedApplicationsNumber()
|
||||
.toString();
|
||||
averageEstimatedHours = calculateAverageEstimatedHours()
|
||||
.toString();
|
||||
.setScale(2).toString();
|
||||
averageWorkedHours = calculateAverageWorkedHours()
|
||||
.toString();
|
||||
.setScale(2).toString();
|
||||
maxEstimatedHours = calculateMaxEstimatedHours()
|
||||
.toString();
|
||||
.setScale(2).toString();
|
||||
maxWorkedHours = calculateMaxWorkedHours()
|
||||
.toString();
|
||||
.setScale(2).toString();
|
||||
minEstimatedHours = calculateMinEstimatedHours()
|
||||
.toString();
|
||||
.setScale(2).toString();
|
||||
minWorkedHours = calculateMinWorkedHours()
|
||||
.toString();
|
||||
.setScale(2).toString();
|
||||
return null;
|
||||
}
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue