Merge branch 'feature/v3-siRepairCreate-1229' into release/2.5.3.2301.01

This commit is contained in:
sy 2023-01-05 17:24:33 +08:00
commit b0436236eb
1 changed files with 4 additions and 4 deletions

View File

@ -113,16 +113,16 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
ICategoryPO insuranceCategoryPO = list.stream().filter(item -> SalaryI18nUtil.getI18nLabel(93113, "养老保险").equals(item.getInsuranceName())).findFirst()
.get();
if (socialBaseMap != null && socialBaseMap.containsKey(insuranceCategoryPO.getId())) {
targetBaseMap.put(insuranceCategoryPO.getId().toString(), socialBaseMap.get(insuranceCategoryPO.getId()));
if (socialBaseMap != null && socialBaseMap.containsKey(insuranceCategoryPO.getId().toString())) {
targetBaseMap.put(insuranceCategoryPO.getId().toString(), socialBaseMap.get(insuranceCategoryPO.getId().toString()));
}
}
if (projects.contains(ProjectTypeEnum.MEDICAL_INSURANCE.getValue())) {
ICategoryPO insuranceCategoryPO = list.stream().filter(item -> SalaryI18nUtil.getI18nLabel(93114, "医疗保险").equals(item.getInsuranceName())).findFirst()
.get();
if (socialBaseMap != null && socialBaseMap.containsKey(insuranceCategoryPO.getId())) {
targetBaseMap.put(insuranceCategoryPO.getId().toString(), socialBaseMap.get(insuranceCategoryPO.getId()));
if (socialBaseMap != null && socialBaseMap.containsKey(insuranceCategoryPO.getId().toString())) {
targetBaseMap.put(insuranceCategoryPO.getId().toString(), socialBaseMap.get(insuranceCategoryPO.getId().toString()));
}
}