提交代码

dev
胡锐 5 months ago
parent c0c2de5a10
commit 3abcafb2ef
  1. 2
      service/src/main/java/com/hfkj/service/order/impl/BsOrderServiceImpl.java

@ -285,6 +285,7 @@ public class BsOrderServiceImpl implements BsOrderService {
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "优惠券状态不处于待使用"); throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "优惠券状态不处于待使用");
} }
discountUserRel.setStatus(2); discountUserRel.setStatus(2);
discountUserRel.setUseEndTime(new Date());
couponDiscountUserRelService.update(discountUserRel); couponDiscountUserRelService.update(discountUserRel);
// 查询优惠券 // 查询优惠券
CouponDiscount discount = couponDiscountService.queryDetail(discountUserRel.getDiscountId()); CouponDiscount discount = couponDiscountService.queryDetail(discountUserRel.getDiscountId());
@ -352,6 +353,7 @@ public class BsOrderServiceImpl implements BsOrderService {
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "未知优惠券"); throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "未知优惠券");
} }
discountUserRel.setStatus(1); discountUserRel.setStatus(1);
discountUserRel.setUseTime(null);
couponDiscountUserRelService.update(discountUserRel); couponDiscountUserRelService.update(discountUserRel);
} }

Loading…
Cancel
Save