xuhy
2025-01-10 d1632e46b772d691e55b4013585bfe61164b8bde
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package com.jilongda.applet.controller;
 
 
import com.jilongda.applet.model.TCoupon;
import com.jilongda.applet.model.TCouponReceive;
import com.jilongda.applet.query.TCouponQuery;
import com.jilongda.applet.service.TCouponReceiveService;
import com.jilongda.applet.service.TCouponService;
import com.jilongda.applet.service.TStoreService;
import com.jilongda.applet.utils.LoginInfoUtil;
import com.jilongda.applet.vo.TCouponReceiveVO;
import com.jilongda.common.basic.ApiResult;
import com.jilongda.common.basic.PageInfo;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
 
import java.time.LocalDateTime;
import java.util.Objects;
 
/**
 * <p>
 * 优惠券 前端控制器
 * </p>
 *
 * @author 无关风月
 * @since 2024-12-09
 */
@Api(tags = "优惠券记录")
@RestController
@RequestMapping("/t-coupon-receive")
public class TCouponReceiveController {
 
    @Autowired
    private TCouponReceiveService tCouponReceiveService;
    @Autowired
    private TCouponService couponService;
    @Autowired
    private LoginInfoUtil loginInfoUtil;
    @ApiOperation(value = "优惠券列表")
    @PostMapping(value = "/pageList")
    public ApiResult pageList(@RequestBody TCouponQuery query) {
        Integer userId = loginInfoUtil.getUserId();
        query.setUserId(userId);
        PageInfo<TCouponReceiveVO> page = tCouponReceiveService.pageList(query);
        return ApiResult.success(page);
    }
 
    @ApiOperation(value = "扫码领取优惠券;优惠券id")
    @GetMapping(value = "/getCoupons")
    public ApiResult getCoupons(@RequestParam Integer id) {
        Integer userId = loginInfoUtil.getUserId();
 
        // 查询优惠券信息
        TCoupon coupon = couponService.getById(id);
        if(Objects.isNull(coupon)){
            return ApiResult.failed("优惠券不存在");
        }
 
        TCouponReceive tCouponReceive = new TCouponReceive();
        tCouponReceive.setUserId(userId);
        tCouponReceive.setCouponId(id);
        tCouponReceive.setType(4);
        tCouponReceive.setAmount(coupon.getAmount());
        tCouponReceive.setStoreId(coupon.getStoreId());
        if (coupon.getTime()!=0){
            tCouponReceive.setEndTime(LocalDateTime.now().plusDays(coupon.getTime()));
        }
        tCouponReceive.setAmountCondition(coupon.getAmountCondition());
        tCouponReceive.setStatus(1);
        tCouponReceive.setCouponName(coupon.getName());
        tCouponReceiveService.save(tCouponReceive);
        return ApiResult.success();
    }
}