puzhibing
2022-08-22 1421f8e9c308c4741cb396309035009393b5b036
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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
package com.stylefeng.guns.modular.system.controller.general;
 
 
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.plugins.Page;
import com.stylefeng.guns.core.base.controller.BaseController;
import com.stylefeng.guns.core.common.constant.factory.PageFactory;
import com.stylefeng.guns.core.util.DateUtil;
import com.stylefeng.guns.core.util.ExcelExportUtil;
import com.stylefeng.guns.core.util.SinataUtil;
import com.stylefeng.guns.core.util.ToolUtil;
import com.stylefeng.guns.modular.system.model.TCompany;
import com.stylefeng.guns.modular.system.service.*;
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.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Map;
 
/**
 * 报表控制器
 */
@Controller
@RequestMapping("/report")
public class ReportController extends BaseController {
 
    private String PREFIX = "/system/report/";
 
    @Autowired
    private ITCompanyService companyService;
 
    @Autowired
    private IUserCouponRecordService userCouponRecordService;
 
    @Autowired
    private IUserRedPacketRecordService redPacketRecordService;
 
    @Autowired
    private IUserActivityDiscount1Service userActivityDiscount1Service;
 
    @Autowired
    private ITDriverService driverService;
 
 
 
 
    /**
     * 跳转到日常运营数据汇总页
     * @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();
        }
    }
 
    /**
     * 司机收益统计页面
     * @author yxh
     * @date 2021/4/2 17:07
     * @param model
     */
    @RequestMapping("/driverIncomeStatisticsInfo")
    public String ShowDriverIncomeList(Model model){
        List<TCompany> tCompanies = companyService.selectList(new EntityWrapper<TCompany>().eq("state", 0).ne("flag", 3));
        model.addAttribute("company", tCompanies);
        return PREFIX + "driverIncomeData.html";
    }
 
 
    /**
     * 司机收益统计排行
     * @author yxh
     * @date 2021/4/2 17:35
     * @return java.lang.Object
     */
    @ResponseBody
    @RequestMapping(value = "/queryDriverIncomeData", method = RequestMethod.POST)
    public Object queryDriverIncomeData(Integer type, String time, Integer companyId){
        try {
            String start = null;
            String end = null;
            if(ToolUtil.isNotEmpty(time)){
                start = time.split(" - ")[0];
                end = time.split(" - ")[1];
            }
            Page<Map<String, Object>> page = new PageFactory<Map<String, Object>>().defaultPage();
            page.setRecords(driverService.queryDriverIncomeData(page,type,start,end,companyId));
            return super.packForBT(page);
        }catch (Exception e){
            e.printStackTrace();
            return ResultUtil.runErr();
        }
    }
 
    /**
     * 导出司机收益排行
     * @author yxh
     * @date 2021/4/7 9:32
     * @param type
     * @param time
     * @param companyId
     * @param response
     */
    @RequestMapping(value = "/downloadDriverIncomeData", method = RequestMethod.GET)
    public void downloadDriverIncomeData(Integer type, String time, Integer companyId, HttpServletRequest request, HttpServletResponse response){
        String start = null;
        String end = null;
        if(ToolUtil.isNotEmpty(time)){
            start = time.split(" - ")[0];
            end = time.split(" - ")[1];
        }
        List<Map<String, Object>> list = driverService.queryDriverIncomeDataNoPage(type,start,end,companyId);
        // 表格数据
        List<List<String>> dataList = new ArrayList<>();
        // 表头行
        List<String> shellList = new ArrayList<String>();
        shellList.add("姓名");
        shellList.add("账号/手机号");
        shellList.add("所属分公司");
        shellList.add("订单总数");
        shellList.add("未支付订单数");
        shellList.add("取消订单数");
        shellList.add("订单总金额");
        shellList.add("未支付订金额");
        dataList.add(shellList);
 
        for (Map<String, Object> map : list) {
            //数据行
            shellList = new ArrayList<String>();
            if(SinataUtil.isNotEmpty(map.get("driverName"))){
                shellList.add(map.get("driverName").toString());
            }else{
                shellList.add("-");
            }
            if(SinataUtil.isNotEmpty(map.get("driverPhone"))){
                shellList.add(map.get("driverPhone").toString());
            }else{
                shellList.add("-");
            }
            if(SinataUtil.isNotEmpty(map.get("companyName"))){
                shellList.add(map.get("companyName").toString());
            }else{
                shellList.add("-");
            }
            if(SinataUtil.isNotEmpty(map.get("privateCarTotalNum"))){
                shellList.add(map.get("privateCarTotalNum").toString());
            }else{
                shellList.add("0");
            }
            if(SinataUtil.isNotEmpty(map.get("privateCarNotPayNum"))){
                shellList.add(map.get("privateCarNotPayNum").toString());
            }else{
                shellList.add("0");
            }
            if(SinataUtil.isNotEmpty(map.get("privateCarcancelNum"))){
                shellList.add(map.get("privateCarcancelNum").toString());
            }else{
                shellList.add("0");
            }
            if(SinataUtil.isNotEmpty(map.get("privateCarTotalMoney"))){
                shellList.add(map.get("privateCarTotalMoney").toString());
            }else{
                shellList.add("0");
            }
            if(SinataUtil.isNotEmpty(map.get("privateCarNotPayMoney"))){
                shellList.add(map.get("privateCarNotPayMoney").toString());
            }else{
                shellList.add("0");
            }
            dataList.add(shellList);
        }
        try {
            // 调用工具类进行导出
            ExcelExportUtil.easySheet("司机收益导出记录"+ DateUtil.formatDate(new Date(), "YYYYMMddHHmmss"), "司机收益导出记录", dataList,request, response);
 
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
 
}