Showing
1 changed file
with
1 additions
and
1 deletions
@@ -73,7 +73,7 @@ public class CouponServiceImpl implements ICouponService { | @@ -73,7 +73,7 @@ public class CouponServiceImpl implements ICouponService { | ||
73 | if (coupon == null) { | 73 | if (coupon == null) { |
74 | return null; | 74 | return null; |
75 | } | 75 | } |
76 | - if (CouponProductLimitTypeEnum.NON.getLimitType().equals(coupon.getCouponType().toString())) { | 76 | + if (CouponProductLimitTypeEnum.NON.getLimitType().equals(coupon.getProductLimitType().toString())) { |
77 | return new CouponInfo(); | 77 | return new CouponInfo(); |
78 | } | 78 | } |
79 | Map<Integer, List<Integer>> map = getAssociatedProductIdListMap(Arrays.asList(coupon)); | 79 | Map<Integer, List<Integer>> map = getAssociatedProductIdListMap(Arrays.asList(coupon)); |
-
Please register or login to post a comment