From ddf5db7d31af51fcf697eac0cee7dd46ff73bcc1 Mon Sep 17 00:00:00 2001
From: admin <2780501319@qq.com>
Date: 星期二, 18 二月 2020 12:50:49 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/div' into div

---
 fanli/src/main/java/com/yeshi/fanli/controller/admin/LostOrderAdminController.java |  190 -----------------------------------------------
 1 files changed, 0 insertions(+), 190 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/controller/admin/LostOrderAdminController.java b/fanli/src/main/java/com/yeshi/fanli/controller/admin/LostOrderAdminController.java
index 16d8c94..47b7793 100644
--- a/fanli/src/main/java/com/yeshi/fanli/controller/admin/LostOrderAdminController.java
+++ b/fanli/src/main/java/com/yeshi/fanli/controller/admin/LostOrderAdminController.java
@@ -1,7 +1,6 @@
 package com.yeshi.fanli.controller.admin;
 
 import java.io.PrintWriter;
-import java.util.ArrayList;
 import java.util.List;
 import java.util.Map;
 
@@ -13,18 +12,13 @@
 
 import com.google.gson.Gson;
 import com.google.gson.GsonBuilder;
-import com.google.gson.reflect.TypeToken;
-import com.yeshi.fanli.controller.admin.utils.AdminUtils;
-import com.yeshi.fanli.dto.ChartTDO;
 import com.yeshi.fanli.entity.bus.user.LostOrder;
 import com.yeshi.fanli.entity.bus.user.Order;
 import com.yeshi.fanli.entity.bus.user.UserInfo;
 import com.yeshi.fanli.service.inter.order.LostOrderService;
 import com.yeshi.fanli.tag.PageEntity;
 import com.yeshi.fanli.util.Constant;
-import com.yeshi.fanli.util.StringUtil;
 
-import net.sf.json.JSONArray;
 import net.sf.json.JSONObject;
 
 @Controller
@@ -200,188 +194,4 @@
 		
 	}
 	
-	
-
-	/**
-	 * 缁熻鎻愮幇鐢宠鎬绘鏁�
-	 * @param callback
-	 * @param dateType     鏄剧ず瑙嗗浘锛氭棩-1 銆佹湀-2銆� 骞�-3
-	 * @param state 鐘舵�侊細  1-鏈鐞� 2-鎴愬姛  3-澶辫触
-	 * @param year 
-	 * @param startTime
-	 * @param endTime
-	 * @param out
-	 */
-	@RequestMapping(value = "getLostNum")
-	public void getLostNum(String callback, Integer dateType, String stateArray, String year, 
-			String startTime, String endTime, PrintWriter out) {
-		String validateMsg = AdminUtils.validateParams(dateType, startTime, endTime);
-		if (validateMsg != null) {
-			JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult(validateMsg));
-			return;
-		}
-		
-		if (dateType != 1 && (!StringUtil.isNullOrEmpty(startTime) || !StringUtil.isNullOrEmpty(endTime))) {
-			startTime = null;
-			endTime = null;
-		}
-
-		List<Integer> channelList = null;
-		if (stateArray != null && stateArray.trim().length() > 0) {
-			Gson gson = new Gson();
-			channelList = gson.fromJson(stateArray, new TypeToken<ArrayList<Integer>>() {}.getType());
-		}
-
-		
-		if (dateType == 1 && year != null) {
-			year = null; // 璁剧疆涓虹┖
-		} else if (dateType == 2) {
-			if (startTime != null) 
-				startTime = null; 
-			
-			if (endTime != null) 
-				endTime = null; 
-			
-		} else if (dateType == 3) {
-			if (year != null)
-				year = null; 
-			
-			if (startTime != null) 
-				startTime = null; 
-			
-			if (endTime != null) 
-				endTime = null; 
-		}
-		
-		Gson gson = new Gson();
-		Object objectDate = null;
-		List<String> dateList = AdminUtils.getDateList(dateType, startTime, endTime, year);
-		try {
-			JSONArray line_list = new JSONArray();
-			if (channelList == null || channelList.size() == 0) {
-				
-			} else {
-				for (Integer state : channelList) {
-					List<ChartTDO> list = lostOrderService.countLostNum(dateType, state, year, 
-							startTime, endTime);
-					JSONObject innerList = new JSONObject();
-					if (state == 1) {
-						innerList.put("name", "鏈鐞�");
-					} else if (state == 2) {
-						innerList.put("name", "鎴愬姛");
-					} else if (state == 3) {
-						innerList.put("name", "澶辫触");
-					}
-
-					if (dateType != 3) {
-						innerList.put("data", gson.toJson(AdminUtils.dayOrMonthDataFactory(dateType, dateList, list)));
-					} else {
-						// 骞磋鍥�
-						Map<String, Object> map = AdminUtils.yearsDataFactory(list);
-						if (objectDate == null) {
-							objectDate = map.get("date");
-						}
-						innerList.put("data", gson.toJson(map.get("value")));
-					}
-					
-					line_list.add(innerList);
-				}
-			}
-
-			JSONObject data = new JSONObject();
-			if (objectDate != null) {
-				data.put("xAxis_list", gson.toJson(objectDate));
-			} else {
-				data.put("xAxis_list", gson.toJson(dateList));
-			}
-			
-			data.put("line_list", line_list);
-			JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
-		} catch (Exception e) {
-			JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("鎿嶄綔寮傚父"));
-			e.printStackTrace();
-		}
-	
-	}
-	
-	/**
-	 * 缁熻鐢宠瘔閲戦鎬绘暟
-	 * @param callback
-	 * @param dateType 鏄剧ず瑙嗗浘锛氭棩-1 銆佹湀-2銆� 骞�-3
-	 * @param year 
-	 * @param startTime
-	 * @param endTime
-	 * @param out
-	 */
-	@RequestMapping(value = "getAppealMoney")
-	public void getAppealMoney(String callback, Integer dateType, String year, String startTime, String endTime,
-			PrintWriter out) {
-
-		String validateMsg = AdminUtils.validateParams(dateType, startTime, endTime);
-		if (validateMsg != null) {
-			JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult(validateMsg));
-			return;
-		}
-		
-		if (dateType != 1 && (!StringUtil.isNullOrEmpty(startTime) || !StringUtil.isNullOrEmpty(endTime))) {
-			startTime = null;
-			endTime = null;
-		}
-
-		
-		if (dateType == 1 && year != null) {
-			year = null; // 璁剧疆涓虹┖
-		} else if (dateType == 2) {
-			if (startTime != null) 
-				startTime = null; 
-			
-			if (endTime != null) 
-				endTime = null; 
-			
-		} else if (dateType == 3) {
-			if (year != null)
-				year = null; 
-			
-			if (startTime != null) 
-				startTime = null; 
-			
-			if (endTime != null) 
-				endTime = null; 
-		}
-		
-		Gson gson = new Gson();
-		Object objectDate = null;
-		List<String> dateList = AdminUtils.getDateList(dateType, startTime, endTime, year);
-		try {
-			JSONArray line_list = new JSONArray();
-			List<ChartTDO> list = lostOrderService.countAppealMoney(dateType, year, startTime, endTime);
-			JSONObject innerList = new JSONObject();
-			innerList.put("name", "鎬昏");
-
-			if (dateType != 3) {
-				innerList.put("data", gson.toJson(AdminUtils.dayOrMonthDataFactory(dateType, dateList, list)));
-			} else {
-				// 骞磋鍥�
-				Map<String, Object> map = AdminUtils.yearsDataFactory(list);
-
-				if (objectDate == null) {
-					objectDate = map.get("date");
-				}
-				innerList.put("data", gson.toJson(map.get("value")));
-			}
-			line_list.add(innerList);
-
-			JSONObject data = new JSONObject();
-			if (objectDate != null) {
-				data.put("xAxis_list", gson.toJson(objectDate));
-			} else {
-				data.put("xAxis_list", gson.toJson(dateList));
-			}
-			data.put("line_list", line_list);
-			JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
-		} catch (Exception e) {
-			JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("鎿嶄綔寮傚父"));
-			e.printStackTrace();
-		}
-	}
 }

--
Gitblit v1.8.0