diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ClearingWithdrawInfoServiceImpl.java b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ClearingWithdrawInfoServiceImpl.java index c7997d973..c69ec8bb8 100644 --- a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ClearingWithdrawInfoServiceImpl.java +++ b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ClearingWithdrawInfoServiceImpl.java @@ -114,11 +114,11 @@ public class ClearingWithdrawInfoServiceImpl implements ClearingWithdrawInfoServ } for (ClearingWithdrawInfo clearingWithdrawInfo : infoList) { String withdrawCode = clearingWithdrawInfo.getWithdrawCode(); - DrawCashDetailVO drawCashDetailVO = adapayService.queryDrawCashDetail(withdrawCode, wechatAppId); WithdrawInfoVO vo = new WithdrawInfoVO(); vo.setMerchantId(merchantId); vo.setWithdrawCode(withdrawCode); vo.setApplicationTime(DateUtils.formatDateTime(clearingWithdrawInfo.getApplicationTime())); + DrawCashDetailVO drawCashDetailVO = adapayService.queryDrawCashDetail(withdrawCode, wechatAppId); if (drawCashDetailVO != null) { vo.setStatusDesc(drawCashDetailVO.getStatusDesc()); vo.setCashAmt(drawCashDetailVO.getCashAmt());