luodangjia
2024-12-12 ff811ae8df41273d7ab0011b6b7f1f278f03bbd2
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
package com.ruoyi.other.controller;
 
 
import com.ruoyi.account.api.feignClient.AppUserClient;
import com.ruoyi.common.core.domain.R;
import com.ruoyi.common.security.service.TokenService;
import com.ruoyi.other.api.domain.BaseSetting;
import com.ruoyi.other.api.domain.Goods;
import com.ruoyi.other.api.domain.VipGood;
import com.ruoyi.other.api.domain.VipSetting;
import com.ruoyi.other.api.feignClient.GoodsClient;
import com.ruoyi.other.dto.VipSetDto;
import com.ruoyi.other.service.BaseSettingService;
import com.ruoyi.other.service.VipGoodService;
import com.ruoyi.other.service.VipSettingService;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.*;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiParam;
 
import javax.annotation.Resource;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
 
/**
 * <p>
 *  前端控制器
 * </p>
 *
 * @author luodangjia
 * @since 2024-11-20
 */
@RestController
@RequestMapping("/vip-setting")
@Api("会员设置")
public class VipSettingController {
    @Resource
    private VipSettingService vipSettingService;
    @Resource
    private AppUserClient appUserClient;
    @Resource
    private TokenService tokenService;
    @Resource
    private VipGoodService vipGoodService;
    @Resource
    private BaseSettingService baseSettingService;
    @Resource
    private GoodsClient goodsClient;
 
    @Resource
    private VipGoodService getVipGoodService;
 
    @GetMapping("/info")
    @ApiOperation(value = "获取各级会员信息", tags = {"小程序-个人中心首页", "小程序-会员中心"})
    public R<List<VipSetting>> info() {
        List<VipSetting> list = vipSettingService.list();
        return R.ok(list);
    }
 
//    @PostMapping("/button/agent/check")
//    @ApiOperation(value = "准代理,代理按钮是否展示", tags = {"小程序-个人中心首页","小程序-会员中心"})
//    public R<Boolean> buttoncheck(@ApiParam("4准代理,5代理")Integer id) {
//        Long userid = tokenService.getLoginUserApplet().getUserid();
//        AppUser appUserById = appUserClient.getAppUserById(userid);
//        Boolean back = true;
//        VipSetting byId = vipSettingService.getById(id);
//        //第一种判断
//        if (byId == null) {
//            back = false;
//        } else {
//            if (byId.getVipAgentLevelUpRole() == null || byId.getVipAgentLevelUpRole() == 0) {
//                back = false;
//            }
//            if (byId.getVipLevelUpShop() == null || byId.getVipLevelUpShare() == null) {
//                back = false;
//            } else {
//                if (back && appUserById.getShopPoint().compareTo(byId.getVipLevelUpShop()) > 0 && appUserById.getSharePoint().compareTo(byId.getVipLevelUpShare()) > 0) {
//                    back = true;
//                }
//            }
//            if (back) {
//                return R.ok(true);
//            }
//            //第二种判断
//            if (byId.getVipDirectVipRole() == null || byId.getVipDirectVipRole() == 0 || byId.getVipDirectVipNum() == null) {
//                back = false;
//            } else {
//                //拿到当前用户直推钻石会员人数
//                Long data = appUserClient.getVipCount(userid, 3).getData();
//                if (data >= byId.getVipDirectVipNum()) {
//                    return R.ok(true);
//                }
//            }
//            //第三种判断
//            List<VipGood> list = vipGoodService.lambdaQuery().eq(VipGood::getVipId, id).list();
//            for (VipGood vipGood : list) {
//                //挨个判断是否购买商品
//
//
//            }
//        }
//
//            return R.ok();
//        }
 
 
    @GetMapping("getVipSettingById")
    @ApiOperation(value = "获取会员设置")
    public R<VipSetting> getVipSettingById(@ApiParam(value = "会员id") @RequestParam("id") Integer id) {
        return R.ok(vipSettingService.getById(id));
    }
 
 
    /**
     * 查询会员配置
     * @param id
     * @return
     */
    @PostMapping("/getVipSetting")
    public R<VipSetting> getVipSetting(@RequestParam("id") Integer id) {
        return R.ok(vipSettingService.getById(id));
    }
 
    @GetMapping("/list")
    public R<List<VipSetting>> getList(){
        return R.ok(vipSettingService.list());
    }
 
    @GetMapping("/manage/info")
    @ApiOperation(value = "查询", tags = {"后台-会员设置"})
    public R<VipSetDto> managesetinfo() {
        VipSetDto vipSetDto = new VipSetDto();
        VipSetting byId1 = vipSettingService.getById(1);
        vipSetDto.setLevel1Name(byId1.getVipName());
        VipSetting byId2 = vipSettingService.getById(2);
        vipSetDto.setLevel2Name(byId2.getVipName());
        VipSetting byId3 = vipSettingService.getById(3);
        vipSetDto.setLevel3Name(byId3.getVipName());
        VipSetting byId4 = vipSettingService.getById(4);
        vipSetDto.setLevel4Name(byId4.getVipName());
        VipSetting byId5 = vipSettingService.getById(5);
        vipSetDto.setLevel5Name(byId5.getVipName());
        VipSetting byId6 = vipSettingService.getById(6);
        vipSetDto.setLevel6Name(byId6.getVipName());
        VipSetting byId7 = vipSettingService.getById(7);
        vipSetDto.setLevel7Name(byId7.getVipName());
 
        BaseSetting base1 = baseSettingService.getById(1);
        vipSetDto.setPartPoint(new BigDecimal(base1.getContent()));
        BaseSetting base2 = baseSettingService.getById(2);
        vipSetDto.setBottomPartPoint(new BigDecimal(base2.getContent()));
        return R.ok(vipSetDto);
    }
 
 
    @PostMapping("/manage/set")
    @ApiOperation(value = "设置", tags = {"后台-会员设置"})
    public R<List<VipSetting>> manageset(@RequestBody VipSetDto vipSetDto) {
        List<VipSetting> vipSettingList = new ArrayList<>();
        VipSetting byId1 = vipSettingService.getById(1);
        byId1.setVipName(vipSetDto.getLevel1Name());
        vipSettingList.add(byId1);
        VipSetting byId2 = vipSettingService.getById(2);
        byId2.setVipName(vipSetDto.getLevel2Name());
        vipSettingList.add(byId2);
        VipSetting byId3 = vipSettingService.getById(3);
        byId3.setVipName(vipSetDto.getLevel3Name());
        vipSettingList.add(byId3);
        VipSetting byId4 = vipSettingService.getById(4);
        byId4.setVipName(vipSetDto.getLevel4Name());
        vipSettingList.add(byId4);
        VipSetting byId5 = vipSettingService.getById(5);
        byId5.setVipName(vipSetDto.getLevel5Name());
        vipSettingList.add(byId5);
        VipSetting byId6 = vipSettingService.getById(6);
        byId6.setVipName(vipSetDto.getLevel6Name());
        vipSettingList.add(byId6);
        VipSetting byId7 = vipSettingService.getById(7);
        byId7.setVipName(vipSetDto.getLevel7Name());
        vipSettingList.add(byId7);
        vipSettingService.updateBatchById(vipSettingList);
 
        BaseSetting base1 = baseSettingService.getById(1);
        base1.setContent(String.valueOf(vipSetDto.getPartPoint()));
        baseSettingService.updateById(base1);
        BaseSetting base2 = baseSettingService.getById(2);
        base2.setContent(String.valueOf(vipSetDto.getBottomPartPoint()));
        baseSettingService.updateById(base2);
        BaseSetting base3 = baseSettingService.getById(3);
        base3.setContent(vipSetDto.getVipInfo());
        baseSettingService.updateById(base3);
 
        return R.ok();
    }
    @PostMapping("/manage/level/set")
    @ApiOperation(value = "设置", tags = {"后台-会员等级设置"})
    public R<Void> managelevelset(@RequestBody List<VipSetting> vipSettingList) {
        vipSettingService.updateBatchById(vipSettingList);
        return R.ok();
    }
 
    @GetMapping("/manage/level/info")
    @ApiOperation(value = "查询", tags = {"后台-会员等级设置"})
    public R<List<VipSetting>> managelevelinfo() {
        List<VipSetting> list = vipSettingService.list();
        for (VipSetting vipSetting : list) {
            if (vipSetting.getGoodIds()!=null){
                String[] split = vipSetting.getGoodIds().split(",");
                R<List<Goods>> goodsById = goodsClient.getGoodsById(split);
                if (goodsById.getData()!=null){
                    vipSetting.setGoodsList(goodsById.getData());
                }
            }
        }
        return R.ok(list);
    }
 
}