From 6c730669c737907688eab3321e86c8ff17d4f196 Mon Sep 17 00:00:00 2001 From: sy Date: Thu, 5 Jan 2023 17:21:31 +0800 Subject: [PATCH] =?UTF-8?q?=E8=96=AA=E9=85=AC=E7=B3=BB=E7=BB=9F-=E7=A6=8F?= =?UTF-8?q?=E5=88=A9=E5=8F=B0=E8=B4=A6=EF=BC=8C=E8=A1=A5=E7=BC=B4=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E6=96=B9=E5=BC=8F=E4=BA=8C=EF=BC=8C=E6=8C=89=E7=85=A7?= =?UTF-8?q?=E6=8C=87=E5=AE=9A=E6=A0=B8=E7=AE=97=E6=9C=88=E8=8E=B7=E5=8F=96?= =?UTF-8?q?=E7=BC=B4=E7=BA=B3=E5=9F=BA=E6=95=B0=E5=8A=9F=E8=83=BD=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../engine/salary/service/impl/SIRepairServiceImpl.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/com/engine/salary/service/impl/SIRepairServiceImpl.java b/src/com/engine/salary/service/impl/SIRepairServiceImpl.java index 80794e272..e4b65f6be 100644 --- a/src/com/engine/salary/service/impl/SIRepairServiceImpl.java +++ b/src/com/engine/salary/service/impl/SIRepairServiceImpl.java @@ -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())); } }