|
@@ -142,20 +142,20 @@ public class CouponLogic {
|
|
|
public void add(HttpServletRequest request,CouponBean couponBean) throws RemoteServiceException {
|
|
|
AdminUserCom adminUser = commonLogic.getAdminUser(request);
|
|
|
|
|
|
- if (couponBean.getActiveType() == 1) {
|
|
|
+ /* if (couponBean.getActiveType() == 1) {
|
|
|
if (Objects.isNull(couponBean.getActiveStartTime()) || Objects.isNull(couponBean.getActiveEndTime())) {
|
|
|
throw new RemoteServiceException("使用时间区间不能为空!");
|
|
|
}
|
|
|
if (couponBean.getActiveEndTime().compareTo(couponBean.getActiveStartTime()) < 0) {
|
|
|
throw new RemoteServiceException("使用结束时间不能少于开始时间!");
|
|
|
}
|
|
|
- }
|
|
|
+ }*/
|
|
|
couponBean.setFlag(CouponFlagEnum.WAIT.toString());
|
|
|
couponBean.setLeftAmount(couponBean.getCouponAmount());
|
|
|
couponBean.setCreateTime(new Date());
|
|
|
couponBean.setCompanyWechatId(adminUser.getLoginCompanyWechatId());
|
|
|
couponBean.setCompanyName(adminUser.getLoginCompanyName());
|
|
|
- couponBean.setActiveType(couponBean.getActiveDay() != null ? 2:1);
|
|
|
+ couponBean.setActiveType(2);
|
|
|
couponService.save(couponBean);
|
|
|
String couponId = couponBean.getCouponId();
|
|
|
if (couponBean.getCouponType().trim().equals(CouponTypeEnum.GOODS.getRemark()) && couponBean.getGoodsList() != null) {
|