update添加在途金额字段

This commit is contained in:
Guoqs
2025-10-15 15:59:40 +08:00
parent b7c3e35144
commit 8fa310acf8
2 changed files with 9 additions and 1 deletions

View File

@@ -684,6 +684,7 @@ public class AdapayService {
// 在途金额
BigDecimal pendingAmount = BigDecimal.ZERO;
List<WithdrawInfoVO> withdrawInfoVOS = clearingWithdrawInfoService.selectByMerchantId(merchantId);
log.info("==查询提现在途金额param:{}, result:{}", JSON.toJSONString(withdrawInfoVOS), JSON.toJSONString(pendingAmount));
if (CollectionUtils.isNotEmpty(withdrawInfoVOS)) {
pendingAmount = withdrawInfoVOS.stream()
.filter(item -> "pending".equals(item.getStatusDesc()))