提交 ec2b1826 作者: xiaowang

修复

上级 fd5197cc
......@@ -861,7 +861,7 @@ public class LeaseOrderServiceImpl implements LeaseOrderService {
}
}
// 退回微信支付的押金部分
if (otherPledge.compareTo(BigDecimal.ZERO) > 0) {
if (otherPledge != null && otherPledge.compareTo(BigDecimal.ZERO) > 0) {
ApplyRefundVO applyRefundVO = wxRefund(leaseOrderDO);
applyRefundVO.setRefund(otherPledge.multiply(BigDecimal.valueOf(100)).longValue());
ResultBody refundOtherPledge = paymentAppApi.applyRefund(applyRefundVO, currentAccount.getToken());
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论