Merge branch 'feature/v3-siRepairCreate-1229' into release/2.5.3.2301.01
This commit is contained in:
commit
b0436236eb
|
|
@ -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()));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue