Commit 4e872244 by 徐康

商品券使用门槛校验

parent 5016c3be
......@@ -624,7 +624,7 @@ public class CheckMCCafeOrder {
}
if(CouponTypeEnum.TYPE_0.getCode().equals(o.getCouponType())) {
if(o.getCodeInfo().getMinamount() != null && o.getCodeInfo().getMinamount() != 0
&& o.getCodeInfo().getMinamount().longValue() < shoppingCartGoodsDto.getOriginalTotalAmount()) {
&& o.getCodeInfo().getMinamount().longValue() > shoppingCartGoodsDto.getOriginalTotalAmount()) {
String couponName = StringUtils.isNotBlank(o.getCodeInfo().getAct_name())?o.getCodeInfo().getAct_name():"商品券";
throw new ServiceException(ResponseResult.COUPON_ORDER_ORIGINAL_AMOUNT_NOT_ENOUGH, "抱歉,使用"+couponName+"需满足核销门槛,请继续添加商品~");
}
......
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