diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxCouponServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxCouponServiceImpl.java index d85fd257b..912f1dc03 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxCouponServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxCouponServiceImpl.java @@ -336,6 +336,9 @@ public class WxCouponServiceImpl implements WxCouponService { } else { return new ResultData(ErrorCode.SYS_PARAMETER_ERROR.getCode(), "请填写有效时间类型"); } + if(!this.validCouponDate(record)) { + return new ResultData(ResultData.ERROR,"券有效使用日期必须在30天以内。"); + } } if(EnumCouponType.COUPON_GIFT.getCode().equals(record.getType())){ @@ -363,10 +366,6 @@ public class WxCouponServiceImpl implements WxCouponService { } } - if(!this.validCouponDate(record)) { - return new ResultData(ResultData.ERROR,"券有效使用日期必须在30天以内。"); - } - if (EnumCouponContentType.HTML.getCode().equals(record.getContentType())) { if (StringUtils.isEmpty(record.getHtml())) { return new ResultData(ErrorCode.SYS_PARAMETER_ERROR.getCode(), "请填写富文本内容");