xuhy
2025-01-09 b9009a5abd3f4129784a8d5e5316622e95669b68
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
package com.stylefeng.guns.modular.system.controller.general;
 
 
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.stylefeng.guns.core.util.ToolUtil;
import com.stylefeng.guns.modular.system.model.TCompany;
import com.stylefeng.guns.modular.system.service.ITCompanyService;
import com.stylefeng.guns.modular.system.service.IUserActivityDiscount1Service;
import com.stylefeng.guns.modular.system.service.IUserCouponRecordService;
import com.stylefeng.guns.modular.system.service.IUserRedPacketRecordService;
import com.stylefeng.guns.modular.system.util.ResultUtil;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
 
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletResponse;
import java.net.URLEncoder;
import java.util.List;
 
/**
 * 报表控制器
 */
@Controller
@RequestMapping("/report")
public class ReportController {
 
    private String PREFIX = "/system/report/";
 
    @Autowired
    private ITCompanyService companyService;
 
    @Autowired
    private IUserCouponRecordService userCouponRecordService;
 
    @Autowired
    private IUserRedPacketRecordService redPacketRecordService;
 
    @Autowired
    private IUserActivityDiscount1Service userActivityDiscount1Service;
 
 
 
 
    /**
     * 跳转到日常运营数据汇总页
     * @return
     */
    @RequestMapping("/showOperationalData")
    public String showOperationalData(Model model){
        List<TCompany> tCompanies = companyService.selectList(new EntityWrapper<TCompany>().eq("state", 0).ne("flag", 3));
        model.addAttribute("company", tCompanies);
        return PREFIX + "operationalData.html";
    }
 
    /**
     * 跳转到优惠券统计页
     * @param model
     * @return
     */
    @RequestMapping("/showCouponStatistics")
    public String showCouponStatistics(Model model){
        List<TCompany> tCompanies = companyService.selectList(new EntityWrapper<TCompany>().eq("state", 0).ne("flag", 3));
        model.addAttribute("company", tCompanies);
        return PREFIX + "couponStatistics.html";
    }
 
    /**
     * 跳转到优惠券统计详情页
     * @param type
     * @param model
     * @return
     */
    @RequestMapping("/showCouponStatisticsInfo")
    public String showCouponStatisticsInfo(Integer type, Model model){
        List<TCompany> tCompanies = companyService.selectList(new EntityWrapper<TCompany>().eq("state", 0).ne("flag", 3));
        model.addAttribute("company", tCompanies);
        model.addAttribute("type", type);
        return PREFIX + "couponStatisticsInfo.html";
    }
 
 
 
 
 
 
    /**
     * 获取日常运营数据
     * @param type
     * @param time
     * @param companyId
     * @param offset
     * @param limit
     * @return
     */
    @ResponseBody
    @RequestMapping(value = "/queryOperationalData", method = RequestMethod.POST)
    public Object queryOperationalData(Integer type, String time, Integer companyId, Integer offset, Integer limit){
        try {
            String start = null;
            String end = null;
            if(ToolUtil.isNotEmpty(time)){
                start = time.split(" - ")[0];
                end = time.split(" - ")[1];
            }
            return companyService.queryOperationalData(type, start, end, companyId, offset, limit);
        }catch (Exception e){
            e.printStackTrace();
            return ResultUtil.runErr();
        }
    }
 
    /**
     * 下载日常运营数据汇总表
     * @param type
     * @param time
     * @param companyId
     * @param response
     */
    @ResponseBody
    @RequestMapping(value = "/downloadOperationalData", method = RequestMethod.GET)
    public void downloadOperationalData(Integer type, String time, Integer companyId, HttpServletResponse response){
        try {
            String start = null;
            String end = null;
            if(ToolUtil.isNotEmpty(time)){
                start = time.split(" - ")[0];
                end = time.split(" - ")[1];
            }
            HSSFWorkbook hssfWorkbook = companyService.downloadOperationalData(type, start, end, companyId);
            response.setHeader("Content-Disposition", "attachment; filename=" + URLEncoder.encode("日常运营数据汇总表.xls", "utf-8"));
            response.setContentType("application/vnd.ms-excel");
            ServletOutputStream out = response.getOutputStream();
            hssfWorkbook.write(out);
            out.flush();
            out.close();
        }catch (Exception e){
            e.printStackTrace();
        }
    }
 
 
    /**
     * 获取优惠券统计
     * @param type
     * @param name
     * @param time
     * @param companyId
     * @param offset
     * @param limit
     * @return
     */
    @ResponseBody
    @RequestMapping(value = "/queryCouponRegister", method = RequestMethod.POST)
    public Object queryCouponRegister(Integer type, String name, String time, Integer companyId, Integer offset, Integer limit){
        try {
            return userCouponRecordService.queryCouponRegister(type, name, time, companyId, offset, limit);
        }catch (Exception e){
            e.printStackTrace();
            return ResultUtil.runErr();
        }
    }
 
    /**
     * 下载优惠券领取数据
     * @param type
     * @param name
     * @param time
     * @param companyId
     * @param response
     */
    @ResponseBody
    @RequestMapping(value = "/downloadCouponRegister", method = RequestMethod.GET)
    public void downloadCouponRegister(Integer type, String name, String time, Integer companyId, HttpServletResponse response){
        try {
            String na = "";
            if(type == 2){
                na = "注册优惠券奖励";
            }
            if(type == 3){
                na = "邀请优惠券奖励";
            }
            if(type == 4){
                na = "充值优惠券奖励";
            }
            HSSFWorkbook hssfWorkbook = userCouponRecordService.downloadCouponRegister(type, name, time, companyId);
            response.setHeader("Content-Disposition", "attachment; filename=" + URLEncoder.encode(na + ".xls", "utf-8"));
            response.setContentType("application/vnd.ms-excel");
            ServletOutputStream out = response.getOutputStream();
            hssfWorkbook.write(out);
            out.flush();
            out.close();
        }catch (Exception e){
            e.printStackTrace();
        }
    }
 
 
    /**
     * 获取红包统计数据
     * @param name
     * @param time
     * @param companyId
     * @param offset
     * @param limit
     * @return
     */
    @ResponseBody
    @RequestMapping(value = "/queryRedEnvelopes", method = RequestMethod.POST)
    public Object queryRedEnvelopes(String name, String time, Integer companyId, Integer offset, Integer limit){
        try {
            return redPacketRecordService.queryRedEnvelopes(name, time, companyId, offset, limit);
        }catch (Exception e){
            e.printStackTrace();
            return ResultUtil.runErr();
        }
    }
 
 
    /**
     * 下载红包奖励
     * @param name
     * @param time
     * @param companyId
     * @param response
     */
    @ResponseBody
    @RequestMapping(value = "/downloadRedEnvelopes", method = RequestMethod.GET)
    public void downloadRedEnvelopes(String name, String time, Integer companyId, HttpServletResponse response){
        try {
            HSSFWorkbook hssfWorkbook = redPacketRecordService.downloadRedEnvelopes(name, time, companyId);
            response.setHeader("Content-Disposition", "attachment; filename=" + URLEncoder.encode("红包奖励.xls", "utf-8"));
            response.setContentType("application/vnd.ms-excel");
            ServletOutputStream out = response.getOutputStream();
            hssfWorkbook.write(out);
            out.flush();
            out.close();
        }catch (Exception e){
            e.printStackTrace();
        }
    }
 
 
 
    /**
     * 获取折扣统计
     * @param name
     * @param time
     * @param companyId
     * @param offset
     * @param limit
     * @return
     */
    @ResponseBody
    @RequestMapping(value = "/queryDiscount1", method = RequestMethod.POST)
    public Object queryDiscount1(String name, String time, Integer companyId, Integer offset, Integer limit){
        try {
            return userActivityDiscount1Service.queryDiscount1(name, time, companyId, offset, limit);
        }catch (Exception e){
            e.printStackTrace();
            return ResultUtil.runErr();
        }
    }
 
    /**
     * 下载折扣优惠活动
     * @param name
     * @param time
     * @param companyId
     * @param response
     */
    @ResponseBody
    @RequestMapping(value = "/downloadDiscount1", method = RequestMethod.GET)
    public void downloadDiscount1(String name, String time, Integer companyId, HttpServletResponse response){
        try {
            HSSFWorkbook hssfWorkbook = userActivityDiscount1Service.downloadDiscount1(name, time, companyId);
            response.setHeader("Content-Disposition", "attachment; filename=" + URLEncoder.encode("折扣优惠活动.xls", "utf-8"));
            response.setContentType("application/vnd.ms-excel");
            ServletOutputStream out = response.getOutputStream();
            hssfWorkbook.write(out);
            out.flush();
            out.close();
        }catch (Exception e){
            e.printStackTrace();
        }
    }
 
    /**
     * 获取优惠券统计明细
     * @param type
     * @param name
     * @param time
     * @param companyId
     * @param offset
     * @param limit
     * @return
     */
    @ResponseBody
    @RequestMapping(value = "/queryCouponRegisterInfo", method = RequestMethod.POST)
    public Object queryCouponRegisterInfo(Integer type, String name, String time, Integer companyId, Integer offset, Integer limit){
        try {
            type += 1;
            return userCouponRecordService.queryCouponRegisterInfo(type, name, time, companyId, offset, limit);
        }catch (Exception e){
            e.printStackTrace();
            return ResultUtil.runErr();
        }
    }
 
 
 
 
    /**
     * 获取充值赠送优惠券明细
     * @param name
     * @param time
     * @param companyId
     * @param offset
     * @param limit
     * @return
     */
    @ResponseBody
    @RequestMapping(value = "/queryCouponRegisterInfo1", method = RequestMethod.POST)
    public Object queryCouponRegisterInfo1(String name, String time, Integer companyId, Integer offset, Integer limit){
        try {
            return userCouponRecordService.queryCouponRegisterInfo1( name, time, companyId, offset, limit);
        }catch (Exception e){
            e.printStackTrace();
            return ResultUtil.runErr();
        }
    }
 
 
    /**
     * 获取折扣优惠详情
     * @param time
     * @param companyId
     * @param offset
     * @param limit
     * @return
     */
    @ResponseBody
    @RequestMapping(value = "/queryDiscountInfo", method = RequestMethod.POST)
    public Object queryDiscountInfo(String name, String time, Integer companyId, Integer offset, Integer limit){
        try {
            return userActivityDiscount1Service.queryDiscountInfo(name, time, companyId, offset, limit);
        }catch (Exception e){
            e.printStackTrace();
            return ResultUtil.runErr();
        }
    }
 
 
 
 
    /**
     * 获取红包领取详情
     * @param name
     * @param time
     * @param companyId
     * @param offset
     * @param limit
     * @return
     */
    @ResponseBody
    @RequestMapping(value = "/queryRedEnvelopesInfo", method = RequestMethod.POST)
    public Object queryRedEnvelopesInfo(String name, String time, Integer companyId, Integer offset, Integer limit){
        try {
            return redPacketRecordService.queryRedEnvelopesInfo(name, time, companyId, offset, limit);
        }catch (Exception e){
            e.printStackTrace();
            return ResultUtil.runErr();
        }
    }
 
 
    /**
     * 优惠明细下载
     * @param type
     * @param name
     * @param time
     * @param companyId
     * @param response
     */
    @ResponseBody
    @RequestMapping(value = "/downloadCouponStatisticsInfo", method = RequestMethod.GET)
    public void downloadCouponStatisticsInfo(Integer type, String name, String time, Integer companyId, HttpServletResponse response){
        try {
            if(type == 1 || type == 2){
                type += 1;
                HSSFWorkbook hssfWorkbook = userCouponRecordService.downloadCouponRegisterInfo(type, name, time, companyId);
                response.setHeader("Content-Disposition", "attachment; filename=" + URLEncoder.encode((type == 2 ? "注册奖励明细" : "邀请奖励明细") + ".xls", "utf-8"));
                response.setContentType("application/vnd.ms-excel");
                ServletOutputStream out = response.getOutputStream();
                hssfWorkbook.write(out);
                out.flush();
                out.close();
            }
            if(type == 3){
                HSSFWorkbook hssfWorkbook = userCouponRecordService.downloadCouponRegisterInfo1(name, time, companyId);
                response.setHeader("Content-Disposition", "attachment; filename=" + URLEncoder.encode("充值奖励明细.xls", "utf-8"));
                response.setContentType("application/vnd.ms-excel");
                ServletOutputStream out = response.getOutputStream();
                hssfWorkbook.write(out);
                out.flush();
                out.close();
            }
            if(type == 4){
                HSSFWorkbook hssfWorkbook = userActivityDiscount1Service.downloadDiscountInfo(name, time, companyId);
                response.setHeader("Content-Disposition", "attachment; filename=" + URLEncoder.encode("折扣优惠明细.xls", "utf-8"));
                response.setContentType("application/vnd.ms-excel");
                ServletOutputStream out = response.getOutputStream();
                hssfWorkbook.write(out);
                out.flush();
                out.close();
            }
            if(type == 5){
                HSSFWorkbook hssfWorkbook = redPacketRecordService.downloadRedEnvelopesInfo(name, time, companyId);
                response.setHeader("Content-Disposition", "attachment; filename=" + URLEncoder.encode("红包优惠明细.xls", "utf-8"));
                response.setContentType("application/vnd.ms-excel");
                ServletOutputStream out = response.getOutputStream();
                hssfWorkbook.write(out);
                out.flush();
                out.close();
            }
        }catch (Exception e){
            e.printStackTrace();
        }
    }
}