From 3ed6c43a9375090266b16bffeab82470765482ad Mon Sep 17 00:00:00 2001 From: sy Date: Thu, 12 Jan 2023 18:31:36 +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=E5=8E=9F?= =?UTF-8?q?=E6=96=B9=E5=BC=8F=E6=96=B0=E5=A2=9E=E6=97=B6=EF=BC=8C=E6=9C=AA?= =?UTF-8?q?=E8=AE=BE=E7=BD=AE=E5=9F=BA=E6=95=B0=E6=83=85=E5=86=B5=E4=B8=8B?= =?UTF-8?q?=E7=9A=84=E9=80=BB=E8=BE=91=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/com/engine/salary/biz/SIAccountBiz.java | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/com/engine/salary/biz/SIAccountBiz.java b/src/com/engine/salary/biz/SIAccountBiz.java index 6c48ee26a..bda2fae67 100644 --- a/src/com/engine/salary/biz/SIAccountBiz.java +++ b/src/com/engine/salary/biz/SIAccountBiz.java @@ -1476,7 +1476,10 @@ public class SIAccountBiz extends Service { if (archivesPerson != null) { categoryIds.forEach(item -> { if (archivesPerson.containsKey(String.valueOf(item)) && schemeperson.containsKey(item)) { - needArchivesPerson.add(item); + if (StringUtils.isNotBlank(archivesPerson.get(item))) { + needArchivesPerson.add(item); + } + } }); } @@ -1512,7 +1515,10 @@ public class SIAccountBiz extends Service { if (archivesCom != null) { categoryIds.forEach(item -> { if (archivesCom.containsKey(String.valueOf(item)) && schemeCom.containsKey(item)) { - needArchivesCom.add(item); + if (StringUtils.isNotBlank(archivesCom.get(item))) { + needArchivesCom.add(item); + } + } });