| | |
| | | public R<IPage<CouponInfo>> list(@RequestParam("pageNum") Integer pageNum, |
| | | @RequestParam("pageSize") Integer pageSize, |
| | | CouponInfo couponInfo) { |
| | | Integer periodType = couponInfo.getPeriodType(); |
| | | if (periodType != null && periodType.equals(0)){ |
| | | couponInfo.setPeriodType(null); |
| | | } |
| | | IPage<CouponInfo> couponInfoIPage = couponInfoService.queryCouponInfoPage(Page.of(pageNum, pageSize), couponInfo); |
| | | for (CouponInfo record : couponInfoIPage.getRecords()) { |
| | | R<Long> r = userCouponClient.getCouponCount(record.getId()); |
| | |
| | | @ApiOperation(value = "优惠劵管理-详情", tags = {"管理后台-活动管理"}) |
| | | public R<CouponInfo> detail(@RequestParam("id") Integer id) { |
| | | CouponInfo byId = couponInfoService.getById(id); |
| | | if (byId == null){ |
| | | return R.fail("优惠劵不存在"); |
| | | } |
| | | String forGoodIds = byId.getForGoodIds(); |
| | | if (!"-1".equals(forGoodIds) && StringUtils.isNotEmpty(forGoodIds)){ |
| | | List<Goods> goods = goodsService.listByIds(Arrays.asList(forGoodIds.split(","))); |
| | |
| | | AppUser appUserById = appUserClient.getAppUserById(userid); |
| | | LocalDateTime now = LocalDateTime.now(); |
| | | //查出全部可领取的优惠劵 |
| | | List<CouponInfo> list = couponInfoService.lambdaQuery().le(CouponInfo::getSendStartTime, now).ge(CouponInfo::getSendEndTime, now).eq(CouponInfo::getPersonType, 1).list(); |
| | | List<CouponInfo> list = couponInfoService.lambdaQuery() |
| | | .le(CouponInfo::getSendStartTime, now) |
| | | .ge(CouponInfo::getSendEndTime, now) |
| | | .eq(CouponInfo::getPersonType, 1) |
| | | .list(); |
| | | //查出指定人员可领取优惠券 |
| | | List<CouponInfo> list1 = couponInfoService.lambdaQuery().le(CouponInfo::getSendStartTime, now).ge(CouponInfo::getSendEndTime, now).eq(CouponInfo::getPersonType, 2).apply("FIND_IN_SET('" + appUserById.getId() + "', person_ids)").list(); |
| | | List<CouponInfo> list1 = couponInfoService.lambdaQuery() |
| | | .le(CouponInfo::getSendStartTime, now) |
| | | .ge(CouponInfo::getSendEndTime, now) |
| | | .eq(CouponInfo::getPersonType, 2) |
| | | .apply("FIND_IN_SET('" + appUserById.getId() + "', person_ids)") |
| | | .list(); |
| | | //查出指定会员可领取优惠劵 |
| | | List<CouponInfo> list2 = couponInfoService.lambdaQuery().le(CouponInfo::getSendStartTime, now).ge(CouponInfo::getSendEndTime, now).eq(CouponInfo::getPersonType, 3).apply("FIND_IN_SET('" + appUserById.getVipId() + "', vip_ids)").list(); |
| | | List<CouponInfo> returnList = new ArrayList<>(); |