From 600cb3c37f5e49bb23eca4167be93d99a49fc52c Mon Sep 17 00:00:00 2001 From: Harryxzy Date: Fri, 23 Sep 2022 11:37:24 +0800 Subject: [PATCH] =?UTF-8?q?xzy-fix-=E7=A4=BE=E4=BF=9D=E7=A6=8F=E5=88=A9?= =?UTF-8?q?=E5=8F=B0=E8=B4=A6=E6=B7=BB=E5=8A=A0=E8=A1=A5=E7=BC=B4=E6=97=B6?= =?UTF-8?q?=E6=A0=B8=E7=AE=97=E4=BA=BA=E6=95=B0=E9=94=99=E8=AF=AF=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/com/engine/salary/biz/SIAccountBiz.java | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/com/engine/salary/biz/SIAccountBiz.java b/src/com/engine/salary/biz/SIAccountBiz.java index d48330dc1..711cfb25b 100644 --- a/src/com/engine/salary/biz/SIAccountBiz.java +++ b/src/com/engine/salary/biz/SIAccountBiz.java @@ -785,18 +785,24 @@ public class SIAccountBiz extends Service { socialTemp = socialTemp.add(socialPerson); fundTemp = fundTemp.add(fundPerson); otherTemp = otherTemp.add(otherPerson); + if (!socialPersonFlag) { + socialAccountPerson += 1; + } + if (!fundPersonFlag) { + funcAccountPerson += 1; + } + if (!otherPersonFlag) { + otherAccountPerson += 1; + } } if (!socialPersonFlag) { socialSum = socialSum.add(socialTemp); - socialAccountPerson += 1; } if (!fundPersonFlag) { fundSum = fundSum.add(fundTemp); - funcAccountPerson += 1; } if (!otherPersonFlag) { otherSum = otherSum.add(otherTemp); - otherAccountPerson += 1; } } InsuranceAccountBatchPO insuranceAccountBatchPO = getInsuranceAccountBatchMapper().getByBillMonth(billMonth, param.getPaymentOrganization());