This commit is contained in:
2023-09-22 11:02:11 +08:00
parent 1d9379cd94
commit 2100d73d9a

View File

@@ -114,11 +114,11 @@ public class ClearingWithdrawInfoServiceImpl implements ClearingWithdrawInfoServ
} }
for (ClearingWithdrawInfo clearingWithdrawInfo : infoList) { for (ClearingWithdrawInfo clearingWithdrawInfo : infoList) {
String withdrawCode = clearingWithdrawInfo.getWithdrawCode(); String withdrawCode = clearingWithdrawInfo.getWithdrawCode();
DrawCashDetailVO drawCashDetailVO = adapayService.queryDrawCashDetail(withdrawCode, wechatAppId);
WithdrawInfoVO vo = new WithdrawInfoVO(); WithdrawInfoVO vo = new WithdrawInfoVO();
vo.setMerchantId(merchantId); vo.setMerchantId(merchantId);
vo.setWithdrawCode(withdrawCode); vo.setWithdrawCode(withdrawCode);
vo.setApplicationTime(DateUtils.formatDateTime(clearingWithdrawInfo.getApplicationTime())); vo.setApplicationTime(DateUtils.formatDateTime(clearingWithdrawInfo.getApplicationTime()));
DrawCashDetailVO drawCashDetailVO = adapayService.queryDrawCashDetail(withdrawCode, wechatAppId);
if (drawCashDetailVO != null) { if (drawCashDetailVO != null) {
vo.setStatusDesc(drawCashDetailVO.getStatusDesc()); vo.setStatusDesc(drawCashDetailVO.getStatusDesc());
vo.setCashAmt(drawCashDetailVO.getCashAmt()); vo.setCashAmt(drawCashDetailVO.getCashAmt());