‘linchangsheng’ 3 weeks ago
parent
commit
edf99f2e65
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/com/gree/mall/manager/logic/coupon/CouponLogic.java

+ 1 - 1
src/main/java/com/gree/mall/manager/logic/coupon/CouponLogic.java

@@ -160,7 +160,7 @@ public class CouponLogic {
         couponBean.setCompanyWechatId(adminUser.getCompanyWechatId());
         couponService.save(couponBean);
         String couponId = couponBean.getCouponId();
-        if (couponBean.getCouponType().trim().equals(CouponTypeEnum.GOODS.getRemark()) && couponBean.getGoodsList() != null) {
+        if (couponBean.getCouponType().trim().equals(CouponTypeEnum.GOODS.getKey()) && couponBean.getGoodsList() != null) {
             List<CouponGoods> couponGoodsList = new ArrayList<>();
             for (CouponGoods couponGoods : couponBean.getGoodsList()) {
                 couponGoods.setCouponId(couponId);