|
@@ -1,11 +1,14 @@
|
|
|
package com.gree.mall.manager.logic.coupon;
|
|
|
|
|
|
+import cn.hutool.core.convert.Convert;
|
|
|
import cn.hutool.core.date.DateUtil;
|
|
|
+import com.aliyuncs.ram.model.v20150501.GetUserResponse;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.gree.mall.manager.bean.ExcelData;
|
|
|
import com.gree.mall.manager.bean.activity.CustomSecSpecBean;
|
|
|
import com.gree.mall.manager.bean.admin.AdminUserCom;
|
|
|
+import com.gree.mall.manager.bean.admin.AdminWebsitVO;
|
|
|
import com.gree.mall.manager.bean.coupon.*;
|
|
|
import com.gree.mall.manager.commonmapper.CouponDateMapper;
|
|
|
import com.gree.mall.manager.commonmapper.SecKillMapper;
|
|
@@ -17,6 +20,8 @@ import com.gree.mall.manager.plus.entity.*;
|
|
|
import com.gree.mall.manager.plus.service.*;
|
|
|
import com.gree.mall.manager.utils.DateUtils;
|
|
|
import com.gree.mall.manager.utils.excel.ExcelUtils;
|
|
|
+import com.gree.mall.manager.zfire.bean.ZfireParamBean;
|
|
|
+import com.gree.mall.manager.zfire.util.FieldUtils;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.collections.CollectionUtils;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
@@ -153,7 +158,7 @@ public class CouponLogic {
|
|
|
couponBean.setActiveType(couponBean.getActiveDay() != null ? 2:1);
|
|
|
couponService.save(couponBean);
|
|
|
String couponId = couponBean.getCouponId();
|
|
|
- if (couponBean.getCouponType().trim().equals(CouponTypeEnum.GOODS.getName()) && couponBean.getGoodsList() != null) {
|
|
|
+ if (couponBean.getCouponType().trim().equals(CouponTypeEnum.GOODS.getRemark()) && couponBean.getGoodsList() != null) {
|
|
|
List<CouponGoods> couponGoodsList = new ArrayList<>();
|
|
|
for (CouponGoods couponGoods : couponBean.getGoodsList()) {
|
|
|
couponGoods.setCouponId(couponId);
|
|
@@ -165,7 +170,7 @@ public class CouponLogic {
|
|
|
couponGoodsService.saveBatch(couponGoodsList);
|
|
|
}
|
|
|
//指定标签
|
|
|
- if (couponBean.getReceiveCrowd() == CouponCrowdEnum.TAG.getFlag() && couponBean.getTagList() != null) {
|
|
|
+ if (couponBean.getReceiveCrowd().equals(Convert.toInt(CouponCrowdEnum.TAG.getKey())) && couponBean.getTagList() != null) {
|
|
|
List<String> userIds = wxCustomerMapper.queryTagUserIdList(adminUser.getLoginCompanyWechatId(), couponBean.getTagList());
|
|
|
List<CouponTag> couponTagList = new ArrayList<>();
|
|
|
for (CouponTag couponTag : couponBean.getTagList()) {
|
|
@@ -191,7 +196,7 @@ public class CouponLogic {
|
|
|
}
|
|
|
|
|
|
//指定会员
|
|
|
- if (couponBean.getReceiveCrowd().equals(CouponCrowdEnum.SPECIFY.getFlag()) && couponBean.getUserList() != null) {
|
|
|
+ if (couponBean.getReceiveCrowd().equals(Convert.toInt(CouponCrowdEnum.SPECIFY.getKey())) && couponBean.getUserList() != null) {
|
|
|
List<CouponUser> couponUserList = new ArrayList<>();
|
|
|
// List<UserCoupon> userCouponList = new ArrayList<>();
|
|
|
for (CouponUserTypeBean couponUserTypeBean : couponBean.getUserList()) {
|
|
@@ -219,7 +224,7 @@ public class CouponLogic {
|
|
|
|
|
|
}
|
|
|
//全部业务员
|
|
|
- if (couponBean.getReceiveCrowd() == CouponCrowdEnum.ALL_SERVICE.getFlag()) {
|
|
|
+ if (couponBean.getReceiveCrowd().equals(Convert.toInt(CouponCrowdEnum.ALL_SERVICE.getKey()))) {
|
|
|
List<UserCoupon> userCouponList = new ArrayList<>();
|
|
|
List<User> userList = userService.lambdaQuery()
|
|
|
.eq(User::getType, UserTypeEnum.SERVICE.toString())
|
|
@@ -245,7 +250,7 @@ public class CouponLogic {
|
|
|
}
|
|
|
}
|
|
|
//全部普通用户
|
|
|
- if (couponBean.getReceiveCrowd() == CouponCrowdEnum.ALL_GENRERAL.getFlag()) {
|
|
|
+ if (couponBean.getReceiveCrowd().equals(Convert.toInt(CouponCrowdEnum.ALL_GENRERAL.getKey()))) {
|
|
|
List<CouponUser> couponUserList = new ArrayList<>();
|
|
|
List<User> userList = userService.lambdaQuery()
|
|
|
.eq(User::getType, UserTypeEnum.GENERAL.toString())
|
|
@@ -683,4 +688,21 @@ public class CouponLogic {
|
|
|
userCouponService.saveBatch(userCouponList);
|
|
|
}
|
|
|
|
|
|
+ public void cancel(String couponId) {
|
|
|
+ userCouponService.lambdaUpdate()
|
|
|
+ .eq(UserCoupon::getCouponId,couponId)
|
|
|
+ .eq(UserCoupon::getStatus,false).remove();
|
|
|
+ }
|
|
|
+
|
|
|
+ public IPage<CouponVO> list(Page page, ZfireParamBean zfireParam) {
|
|
|
+
|
|
|
+ //获取当前登录企业id
|
|
|
+ AdminUserCom adminUser = commonLogic.getAdminUser();
|
|
|
+
|
|
|
+ //1.组装查询条件
|
|
|
+ FieldUtils.supplyParam(zfireParam, CouponVO.class,adminUser);
|
|
|
+
|
|
|
+ IPage<CouponVO> couponVOIPage = couponDateMapper.couponList(page, zfireParam);
|
|
|
+ return couponVOIPage;
|
|
|
+ }
|
|
|
}
|