오류 수정

강석 최 2022-11-16 11:48:46 +09:00
parent 8400fbfbca
commit ca2acee2a9
1 changed files with 5 additions and 4 deletions

View File

@ -218,10 +218,11 @@ public class FaispController {
}
private List<PersonnelStatus> calcStatusList(List<PersonnelStatus> statusList){
for(PersonnelStatus status: statusList){
status.setSumMax(status.getJt001Max()+status.getJt002Max()+status.getJt003Max()+status.getJt004Max()+status.getJt005Max()+status.getJt006Max()+status.getJt007Max());
status.setSumNow(status.getJt001Now()+status.getJt002Now()+status.getJt003Now()+status.getJt004Now()+status.getJt005Now()+status.getJt006Now()+status.getJt007Now());
private List<PersonnelStatus> calcStatusList(List<PersonnelStatus> statusList) {
for (PersonnelStatus status : statusList) {
status.setSumMax(status.getJt001Max() + status.getJt002Max() + status.getJt003Max() + status.getJt004Max() + status.getJt005Max() + status.getJt006Max() + status.getJt007Max());
status.setSumNow(status.getJt001Now() + status.getJt002Now() + status.getJt003Now() + status.getJt004Now() + status.getJt005Now() + status.getJt006Now() + status.getJt007Now());
}
return statusList;
}
}