From eb88a9097fcb6510f4d360c87ac001e0b820cc9b Mon Sep 17 00:00:00 2001 From: zhuliang Date: Thu, 25 Jun 2026 15:08:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=A1=E6=A0=B8=E6=89=8B=E5=B7=A5=E5=BD=95?= =?UTF-8?q?=E5=85=A5=E5=88=B0=E8=B4=A6=E9=80=9A=E7=9F=A5=E6=97=B6=E4=B8=8D?= =?UTF-8?q?=E8=B0=83=E8=B5=84=E9=87=91=E7=B3=BB=E7=BB=9F=E6=A0=A1=E9=AA=8C?= =?UTF-8?q?=E5=AF=B9=E8=B4=A6=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../impl/TemporaryChargesServiceImpl.java | 42 +++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/micro-modules/micro-bls/src/main/java/com/sinosoft/bls/service/impl/TemporaryChargesServiceImpl.java b/micro-modules/micro-bls/src/main/java/com/sinosoft/bls/service/impl/TemporaryChargesServiceImpl.java index e1db0ab..3d17372 100644 --- a/micro-modules/micro-bls/src/main/java/com/sinosoft/bls/service/impl/TemporaryChargesServiceImpl.java +++ b/micro-modules/micro-bls/src/main/java/com/sinosoft/bls/service/impl/TemporaryChargesServiceImpl.java @@ -411,27 +411,27 @@ public class TemporaryChargesServiceImpl implements ITemporaryChargesService { private Boolean callBackAccount(List list,String approvalStatus){ List accountInfosCallBackIns = new ArrayList<>(); - if(approvalStatus.equals(TempConstants.TEMP_APPROVAL_REVERTED)){ - list.forEach(temp->{ - //手工录入的不需要回调 - if(!TempConstants.EXCEPTION_RECONCI_CODE.equals(temp.getReconciliationCode())){ - AccountInfosCallBackIn accountInfosCallBackIn = new AccountInfosCallBackIn(); - accountInfosCallBackIn.setAbstract(temp.getReconciliationCode()); - accountInfosCallBackIn.setConfirmState(TempConstants.TEMP_CALBACK_FAILED); - accountInfosCallBackIns.add(accountInfosCallBackIn); - } - }); - }else if(approvalStatus.equals(TempConstants.TEMP_APPROVAL_PASSED)){ - list.forEach(temp->{ - AccountInfosCallBackIn accountInfosCallBackIn = new AccountInfosCallBackIn(); - //手工录入的不需要回调 - if(!TempConstants.EXCEPTION_RECONCI_CODE.equals(temp.getReconciliationCode())){ - accountInfosCallBackIn.setAbstract(temp.getReconciliationCode()); - accountInfosCallBackIn.setConfirmState(TempConstants.TEMP_CALBACK_PASSED); - accountInfosCallBackIns.add(accountInfosCallBackIn); - } - }); - } +// if(approvalStatus.equals(TempConstants.TEMP_APPROVAL_REVERTED)){ +// list.forEach(temp->{ +// //手工录入的不需要回调 +// if(!TempConstants.EXCEPTION_RECONCI_CODE.equals(temp.getReconciliationCode())){ +// AccountInfosCallBackIn accountInfosCallBackIn = new AccountInfosCallBackIn(); +// accountInfosCallBackIn.setAbstract(temp.getReconciliationCode()); +// accountInfosCallBackIn.setConfirmState(TempConstants.TEMP_CALBACK_FAILED); +// accountInfosCallBackIns.add(accountInfosCallBackIn); +// } +// }); +// }else if(approvalStatus.equals(TempConstants.TEMP_APPROVAL_PASSED)){ +// list.forEach(temp->{ +// AccountInfosCallBackIn accountInfosCallBackIn = new AccountInfosCallBackIn(); +// //手工录入的不需要回调 +// if(!TempConstants.EXCEPTION_RECONCI_CODE.equals(temp.getReconciliationCode())){ +// accountInfosCallBackIn.setAbstract(temp.getReconciliationCode()); +// accountInfosCallBackIn.setConfirmState(TempConstants.TEMP_CALBACK_PASSED); +// accountInfosCallBackIns.add(accountInfosCallBackIn); +// } +// }); +// } if(!accountInfosCallBackIns.isEmpty() && accountInfosCallBackIns.size()>0){ // if(BeanUtil.isNotEmpty(accountInfosCallBackIn)){ FundAccountInfosCallBackBo fundAccountInfosCallBackBo = new FundAccountInfosCallBackBo();