Commit f703637e by box

三方券订单退款退券

parent dc75fbcb
...@@ -163,7 +163,7 @@ public class RefundService { ...@@ -163,7 +163,7 @@ public class RefundService {
throw new ServiceException("该门店不支持线上退款,请联系门店进行线下处理"); throw new ServiceException("该门店不支持线上退款,请联系门店进行线下处理");
// 如果是买券订单,查询券是否已使用,如果没有使用,冻结券,否则不许退款 // 如果是买券订单,查询券是否已使用,如果没有使用,冻结券,否则不许退款
if (BizTypeEnum.SALE_COUPON.getBizType().equals(order.getBizType())) { if (BizTypeEnum.SALE_COUPON.getBizType().equals(order.getBizType()) || ThirdCouponOrderHandle.isThirdCouponOrder(order)) {
if (BooleanUtils.isTrue(orderRefundVo.getIsPartRefund())) { if (BooleanUtils.isTrue(orderRefundVo.getIsPartRefund())) {
throw new ServiceException("该订单不支持部分退款,请联系门店进行线下处理"); throw new ServiceException("该订单不支持部分退款,请联系门店进行线下处理");
} }
......
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 to comment