Commit f849a2cb by unknown

repair the refund amount

parent abffd30d
......@@ -359,7 +359,7 @@ public class OpEventActivityOrderService
logger.info("赛事余额退款差值" + refundDelta.intValue());
if(refundDelta.compareTo(BigDecimal.ZERO) == 1){
//超出他原有用余额付款的金额, 超出部分对冲银行卡付款的金额
order.setRefundAmount(refundDelta);
order.setRefundAmount(refundDelta.add(order.getRefundAmount()));
//余额退款金额就是全部余额支付的部分
order.setPrePayCardRefundAmount(order.getPrePayCardAmount());
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment