debug:押金退款

This commit is contained in:
磷叶 2024-10-28 14:01:19 +08:00
parent 941e7f85e1
commit f2b4675ac3

View File

@ -168,7 +168,7 @@ public class RechargePayHandler implements AfterPay, AfterRefund {
bonusService.partBonus(order.getBonusList(), order.getMoney());
// 如果有押金则申请押金退款
if (order.getSuitPrice() != null && order.getSuitPrice().compareTo(BigDecimal.ZERO) > 0 && order.getDepositPayId() != null) {
if (order.getSuitDeposit() != null && order.getSuitDeposit().compareTo(BigDecimal.ZERO) > 0 && order.getDepositPayId() != null) {
// 押金退款
PayBillRefundDTO refundDto = new PayBillRefundDTO();
refundDto.setPayId(order.getDepositPayId());