薪酬系统-福利台账,调差列表优化,默认配置带出单位缴费数据
This commit is contained in:
parent
494462092d
commit
2f4d580793
|
|
@ -550,6 +550,18 @@ public class SICompensationServiceImpl extends Service implements SICompensation
|
|||
}
|
||||
dto.setCategoryTypeOptions(categoryTypeOptions);
|
||||
|
||||
//设置公司核算金额(单位)
|
||||
CompensationParam compensationParam = CompensationParam.builder()
|
||||
.categoryType(dto.getCategoryType())
|
||||
.employeeId(dto.getEmployeeId().toString())
|
||||
.paymentOrganization(dto.getPaymentOrganization())
|
||||
.target(Long.valueOf(dto.getTargetOptions().get("id")))
|
||||
.build();
|
||||
List<CompensationParam> paramList = new ArrayList<>();
|
||||
paramList.add(compensationParam);
|
||||
List<Map<String, String>> comTotalList = compensationComTotal(paramList);
|
||||
dto.setCompanyTotal(comTotalList.get(0).get("totalNum"));
|
||||
|
||||
compensationDTOList.add(dto);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue