From 52b5d0b25e17b32dd126ef41d539ea9a29a9f974 Mon Sep 17 00:00:00 2001 From: xhxu Date: Fri, 3 Dec 2021 12:21:12 +0800 Subject: [PATCH] // --- .../com/iformall/service/impl/WxCouponServiceImpl.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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(), "请填写富文本内容");