[KC-148] 라벨링 목록 - 진행율 퍼센트 2째자리까지만 + spotless
This commit is contained in:
@@ -116,7 +116,8 @@ public class LabelWorkDto {
|
||||
if (this.labelCompleteTotCnt == null) {
|
||||
return 0.0;
|
||||
}
|
||||
return (double) this.labelCompleteTotCnt / this.totalAssignmentCnt * 100.0;
|
||||
return Math.round(((double) this.labelCompleteTotCnt / this.totalAssignmentCnt * 100.0) * 100)
|
||||
/ 100.0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user