|
@@ -171,31 +171,6 @@ public class CouponLogic {
|
|
|
}
|
|
|
couponGoodsService.saveBatch(couponGoodsList);
|
|
|
}
|
|
|
- //指定标签
|
|
|
- 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()) {
|
|
|
- couponTag.setCouponId(couponId);
|
|
|
- couponTag.setCreateTime(new Date());
|
|
|
- couponTag.setCompanyWechatId(adminUser.getLoginCompanyWechatId());
|
|
|
- couponTag.setCompanyName(adminUser.getLoginCompanyName());
|
|
|
- couponTagList.add(couponTag);
|
|
|
- }
|
|
|
- couponTagService.saveBatch(couponTagList);
|
|
|
-
|
|
|
- List<CouponUser> couponUserList = new ArrayList<>();
|
|
|
- CouponUser couponUser = new CouponUser();
|
|
|
- for (String userId : userIds) {
|
|
|
- couponUser.setCouponId(couponId);
|
|
|
- couponUser.setUserId(userId);
|
|
|
- couponUser.setCreateTime(new Date());
|
|
|
- couponUser.setCouponUserId(adminUser.getLoginCompanyWechatId());
|
|
|
- couponUser.setCompanyName(adminUser.getCompanyName());
|
|
|
- couponUserList.add(couponUser);
|
|
|
- }
|
|
|
- couponUserService.saveBatch(couponUserList);
|
|
|
- }
|
|
|
|
|
|
//指定会员
|
|
|
if (couponBean.getReceiveCrowd().equals(Convert.toInt(CouponCrowdEnum.SPECIFY.getKey())) && couponBean.getUserList() != null) {
|