mitao
2024-04-30 ab4ea7b8f10c9b66aed9c2ea161a08b25c3851a7
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
package com.sinata.modular.mall.controller;
 
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.baomidou.mybatisplus.plugins.Page;
import com.sinata.core.base.controller.BaseController;
import com.sinata.core.common.annotion.BussinessLog;
import com.sinata.core.common.annotion.Permission;
import com.sinata.core.common.constant.factory.PageFactory;
import com.sinata.core.log.LogObjectHolder;
import com.sinata.modular.mall.model.MallGoods;
import com.sinata.modular.mall.model.MallUserReport;
import com.sinata.modular.mall.service.IMallGoodsService;
import com.sinata.modular.mall.service.IMallUserReportService;
import com.sinata.modular.member.model.MemMerchant;
import com.sinata.modular.member.model.MemUser;
import com.sinata.modular.member.service.IMemMerchantService;
import com.sinata.modular.member.service.IMemUserBankDetailService;
import com.sinata.modular.member.service.IMemUserService;
import com.sinata.modular.system.service.ITNoticeMessageService;
import org.apache.commons.collections.CollectionUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.ui.Model;
import org.springframework.util.StringUtils;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
 
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
 
/**
 * 用户举报控制器
 *
 * @author goku
 */
@Controller
@RequestMapping("/mallUserReport")
public class MallUserReportController extends BaseController {
 
    private String PREFIX = "/mall/mallUserReport/";
 
    @Autowired
    private IMallUserReportService mallUserReportService;
 
    @Autowired
    private IMemUserService memUserService;
 
    @Autowired
    private IMemMerchantService memMerchantService;
 
    @Autowired
    private IMallGoodsService mallGoodsService;
 
    @Autowired
    private IMemUserBankDetailService memUserBankDetailService;
 
    @Autowired
    private ITNoticeMessageService itNoticeMessageService;
 
    /**
     * 跳转到用户举报首页
     */
    @RequestMapping("")
    public String index() {
        return PREFIX + "mallUserReport.html";
    }
 
    /**
     * 跳转到添加用户举报
     */
    @RequestMapping("/mallUserReport_add")
    public String mallUserReportAdd() {
        return PREFIX + "mallUserReport_add.html";
    }
 
 
    /**
     * 跳转到添加用户举报
     */
    @RequestMapping("/handler/{id}")
    public String handler(@PathVariable String id, Model model) {
        model.addAttribute("id", id);
        model.addAllAttributes(mallUserReportService.selectList(new EntityWrapper<MallUserReport>().eq("id", id)));
        return PREFIX + "mallUserReport_handler.html";
    }
 
    /**
     * 跳转到修改用户举报
     */
    @RequestMapping("/mallUserReport_update/{mallUserReportId}")
    public String mallUserReportUpdate(@PathVariable Integer mallUserReportId, Model model) {
        MallUserReport mallUserReport = mallUserReportService.selectById(mallUserReportId);
        model.addAttribute("item", mallUserReport);
        LogObjectHolder.me().set(mallUserReport);
        return PREFIX + "mallUserReport_edit.html";
    }
 
    /**
     * 获取用户举报列表
     */
    @ResponseBody
    @RequestMapping(value = "/list")
    public Object list(String beginTime, String endTime, String nikeName, String merchantName, String goodsName, Integer goodsId, Integer state) {
        Page<Map<String, Object>> page = new PageFactory().defaultPage();
        Wrapper wrapper = new EntityWrapper<MallUserReport>().orderBy("id", false);
 
        // 时间搜索
        if (!StringUtils.isEmpty(beginTime)) {
            wrapper.ge("create_time", beginTime + " 00:00:00");
        }
        if (!StringUtils.isEmpty(endTime)) {
            wrapper.le("create_time", endTime + " 23:59:59");
        }
 
        List<Integer> userIds = null;
        if (!StringUtils.isEmpty(nikeName)) {
            Wrapper<MemUser> memUserWrapper = new EntityWrapper<MemUser>().eq("is_delete", 0);
            if (!StringUtils.isEmpty(nikeName)) {
                memUserWrapper.like("nick_name", nikeName);
            }
 
            List<MemUser> memUserList = this.memUserService.selectList(memUserWrapper);
            if (CollectionUtils.isNotEmpty(memUserList)) {
                userIds = memUserList.stream().map(o -> o.getId()).collect(Collectors.toList());
            }
        }
        if (CollectionUtils.isNotEmpty(userIds)) {
            wrapper.in("user_id", userIds);
        }
        if (state != null) {
            wrapper.eq("state", state);
        }
 
        List<Integer> memMerchantIds = null;
        if (!StringUtils.isEmpty(merchantName)) {
            Wrapper<MemMerchant> memMerchantWrapper = new EntityWrapper<MemMerchant>().eq("is_delete", 0);
            memMerchantWrapper.like("merchant_name", merchantName).orNew().like("id", merchantName);
 
            List<MemMerchant> memMerchantList = this.memMerchantService.selectList(memMerchantWrapper);
            if (CollectionUtils.isNotEmpty(memMerchantList)) {
                memMerchantIds = memMerchantList.stream().map(o -> o.getId()).collect(Collectors.toList());
            }
        }
        if (CollectionUtils.isNotEmpty(memMerchantIds)) {
            wrapper.in("merchant_id", memMerchantIds);
        }
 
        List<Integer> goodIds = null;
        if (!StringUtils.isEmpty(goodsName) || goodsId != null) {
            Wrapper<MallGoods> mallGoodsWrapper = new EntityWrapper<MallGoods>().eq("is_delete", 0);
            if (!StringUtils.isEmpty(goodsName)) {
                mallGoodsWrapper.like("goods_name", goodsName);
            }
            if (goodsId != null) {
                mallGoodsWrapper.eq("id", goodsId);
            }
 
            List<MallGoods> mallGoodsList = this.mallGoodsService.selectList(mallGoodsWrapper);
            if (CollectionUtils.isNotEmpty(mallGoodsList)) {
                goodIds = mallGoodsList.stream().map(o -> o.getId()).collect(Collectors.toList());
            }
        }
        if (CollectionUtils.isNotEmpty(goodIds)) {
            wrapper.in("goods_id", goodIds);
        }
        // 查询数据列表
        List<Map<String, Object>> list = mallUserReportService.selectMapsPage(page, wrapper).getRecords();
        this.memUserService.wrapperMapUser(list, "userId");
        this.memMerchantService.wrapperMapMerchant(list, "merchantId");
 
        this.mallGoodsService.wrapperMapGoods(list, "goodsId");
        page.setRecords(list);
        return super.packForBT(page);
    }
 
    /**
     * 新增用户举报
     */
    @Permission
    @ResponseBody
    @BussinessLog(value = "新增用户举报")
    @RequestMapping(value = "/add")
    public Object add(MallUserReport mallUserReport) {
        mallUserReportService.insert(mallUserReport);
        return SUCCESS_TIP;
    }
 
    /**
     * 删除/批量删除
     */
    @Permission
    @ResponseBody
    @BussinessLog(value = "删除/批量删除用户举报")
    @RequestMapping(value = "/delete")
    public Object delete(@RequestParam String ids) {
        // 逻辑删除
        mallUserReportService.updateForSet("is_delete = 1", new EntityWrapper<MallUserReport>().in("id", ids.split(",")));
        return SUCCESS_TIP;
    }
 
    /**
     * 修改用户举报
     */
    @Permission
    @ResponseBody
    @BussinessLog(value = "修改用户举报")
    @RequestMapping(value = "/update")
    public Object update(MallUserReport mallUserReport) {
        mallUserReportService.updateById(mallUserReport);
        return SUCCESS_TIP;
    }
 
    /**
     * 修改用户举报状态
     */
    @Transactional
    @ResponseBody
    @RequestMapping(value = "/updateState")
    public Object updateState(Integer mallUserReportId, Integer state, Integer reportState, Integer deductScore,
                              Boolean offShelf, Integer frozenState, Integer days) {
        return SUCCESS_TIP;
    }
 
    /**
     * 跳转用户举报详情
     */
    @RequestMapping(value = "/detail/{mallUserReportId}")
    public Object detail(@PathVariable("mallUserReportId") Integer mallUserReportId, Model model) {
        MallUserReport mallUserReport = mallUserReportService.selectById(mallUserReportId);
        model.addAttribute("item", mallUserReport);
        return PREFIX + "mallUserReport_detail.html";
    }
}