yujian
2019-01-03 f53edec193227af90aad11f557723e72b4860400
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
package com.yeshi.fanli.controller.admin;
 
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.List;
 
import javax.annotation.Resource;
 
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
 
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.yeshi.utils.JsonUtil;
 
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import com.yeshi.fanli.entity.admin.OrderAdmin;
import com.yeshi.fanli.service.inter.hongbao.HongBaoService;
import com.yeshi.fanli.service.inter.order.OrderService;
import com.yeshi.fanli.tag.PageEntity;
import com.yeshi.fanli.util.Constant;
import com.yeshi.fanli.util.StringUtil;
 
@Controller
@RequestMapping("admin/new/api/v1/order")
public class OrderAdminController {
    
    @Resource
    private OrderService orderService;
    
    @Resource
    private HongBaoService hongBaoService;
    
    @RequestMapping(value ="getOrderList",method=RequestMethod.POST)
    public void getOrderList(int pageIndex,String key,PrintWriter out){
        List<OrderAdmin> orderAdminList = hongBaoService.getOrderAdminList(pageIndex,key);
        int count = orderService.getCount(key);
        int totalPage = count % Constant.PAGE_SIZE == 0 ? count
                / Constant.PAGE_SIZE : count / Constant.PAGE_SIZE + 1;
        PageEntity pe = new PageEntity(pageIndex, Constant.PAGE_SIZE, count,
                totalPage);
        JSONObject data = new JSONObject();
        data.put("pe", pe);
        data.put("orderList",  JsonUtil.getSimpleGsonWithDateAndSerialization().toJson(orderAdminList));    
        out.print(JsonUtil.loadTrueResult(data));
    }
    
    
    /**
     * 统计历史渠道产生订单的金额
     * @param callback
     * @param channelArray 名字数组
     * @param type 统计类型  1-24小时  2-所有
     * @param dateType 类型  1日  2月  3年
     * @param year 2018
     * @param startTime 2018-12-01 
     * @param endTime   2018-12-01 
     * @param out
     */
    @RequestMapping(value = "getHistoryOderByChannel")
    public void getHistoryOderByChannel(String callback, String channelArray, Integer dateType, 
            Integer type, String year, String startTime, String endTime, PrintWriter out) {
 
        if (StringUtil.isNullOrEmpty(channelArray)) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("请选择统计对应名称"));
            return;
        }
        
        if (dateType == null) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("请选择排列方式"));
            return;
        }
        
        if (dateType == 1 && (StringUtil.isNullOrEmpty(startTime) && StringUtil.isNullOrEmpty(endTime))) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("请选择时间区间"));
            return;
        }
        
        if (!StringUtil.isNullOrEmpty(startTime) && StringUtil.isNullOrEmpty(endTime)) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("请选结束日期"));
            return;
        }
        
        if (StringUtil.isNullOrEmpty(startTime) && !StringUtil.isNullOrEmpty(endTime)) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("请选起始日期"));
            return;
        }
        
        if (dateType != 1 && (!StringUtil.isNullOrEmpty(startTime) || !StringUtil.isNullOrEmpty(endTime))) {
            startTime = null;
            endTime = null;
        }
        
        try {
 
            Gson gson = new Gson();
            List<String> list = gson.fromJson(channelArray, new TypeToken<ArrayList<String>>() {}.getType());
 
            if (list == null || list.size() == 0) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("参数格式不正确"));
                return;
            }
            
            JSONArray array = new JSONArray();
 
            for (String channel: list) {
                JSONObject channelData = new JSONObject();
                List<Object> resultList = null;
                if (type == 1) {
                    resultList = hongBaoService.count24HOderByChannel(channel, dateType, year, startTime, endTime);
 
                } else if (type == 2) {
                    resultList = hongBaoService.countHistoryOderByChannel(channel, dateType, year, startTime, endTime);
                }
                 
                
                if (resultList == null) {
                    resultList = new ArrayList<Object>();
                }
                channelData.put("name", channel);
                channelData.put("infos", resultList);
                array.add(channelData);
            }
            
            JSONObject data = new JSONObject();
            data.put("result_list", array);
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
 
        } catch (Exception e) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("操作异常"));
            e.printStackTrace();
        }
 
    }
    
}