오류 수정
parent
8400fbfbca
commit
ca2acee2a9
|
|
@ -218,10 +218,11 @@ public class FaispController {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<PersonnelStatus> calcStatusList(List<PersonnelStatus> statusList){
|
private List<PersonnelStatus> calcStatusList(List<PersonnelStatus> statusList) {
|
||||||
for(PersonnelStatus status: statusList){
|
for (PersonnelStatus status : statusList) {
|
||||||
status.setSumMax(status.getJt001Max()+status.getJt002Max()+status.getJt003Max()+status.getJt004Max()+status.getJt005Max()+status.getJt006Max()+status.getJt007Max());
|
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());
|
status.setSumNow(status.getJt001Now() + status.getJt002Now() + status.getJt003Now() + status.getJt004Now() + status.getJt005Now() + status.getJt006Now() + status.getJt007Now());
|
||||||
}
|
}
|
||||||
return statusList;
|
return statusList;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue