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();