From f6c74fb3b585d25fe45dea893335600853cd6476 Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期四, 24 一月 2019 09:33:12 +0800
Subject: [PATCH] 获取商品链接更改

---
 fanli/src/main/java/com/yeshi/fanli/controller/client/UserOrderController.java |  177 +++++++++++++++++++++++++++++++++++++++++++---------------
 1 files changed, 130 insertions(+), 47 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/controller/client/UserOrderController.java b/fanli/src/main/java/com/yeshi/fanli/controller/client/UserOrderController.java
index b1fa29a..485598e 100644
--- a/fanli/src/main/java/com/yeshi/fanli/controller/client/UserOrderController.java
+++ b/fanli/src/main/java/com/yeshi/fanli/controller/client/UserOrderController.java
@@ -9,23 +9,27 @@
 
 import javax.annotation.Resource;
 
-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.DateUtil;
 import org.yeshi.utils.JsonUtil;
 
+import com.yeshi.fanli.entity.AppVersionInfo;
 import com.yeshi.fanli.entity.accept.AcceptData;
 import com.yeshi.fanli.entity.bus.user.UserInfo;
 import com.yeshi.fanli.exception.order.CommonOrderException;
+import com.yeshi.fanli.service.inter.config.AppVersionService;
 import com.yeshi.fanli.service.inter.config.ConfigService;
-import com.yeshi.fanli.service.inter.hongbao.HongBaoService;
+import com.yeshi.fanli.service.inter.count.HongBaoV2CountService;
 import com.yeshi.fanli.service.inter.order.CommonOrderService;
+import com.yeshi.fanli.service.inter.user.UserInfoExtraService;
 import com.yeshi.fanli.service.inter.user.UserInfoService;
 import com.yeshi.fanli.util.account.UserUtil;
 import com.yeshi.fanli.vo.order.CommonOrderVO;
+import com.yeshi.fanli.vo.user.UserInfoExtraVO;
+
+import net.sf.json.JSONObject;
 
 @Controller
 @RequestMapping("api/v1/user/order")
@@ -33,15 +37,21 @@
 	
 	@Resource
 	private ConfigService configService;
+	
+	@Resource
+	private AppVersionService appVersionService;
 
 	@Resource
 	private UserInfoService userInfoService;
 	
 	@Resource
+	private UserInfoExtraService userInfoExtraService;
+	
+	@Resource
 	private CommonOrderService commonOrderService;
 	
 	@Resource
-	private HongBaoService hongBaoService;
+	private HongBaoV2CountService hongBaoV2CountService;
 
 	/**
 	 * 璁㈠崟鍒楄〃
@@ -73,41 +83,58 @@
 			page = 1;
 		}
 		
-		if (state !=null && state == 0) {
-			state = null;
+		if (state != null && state == 0) {
+			state = null;// 鎵�鏈夌姸鎬�
 		}
 		
 		if (type != null && type == 0 ) {
-			type = null; // 鏌ヨ鎵�鏈夌被鍨嬭鍗�
+			type = null; // 鎵�鏈夌被鍨嬭鍗�
 		}
 		
 		try {
 			if (slotTime != null) {
-				SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
-				startTime = sd.format(new Date());
-				endTime = convertDate(slotTime, startTime);
+				SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM-dd");
+				endTime= sd.format(new Date());
+				startTime = convertDate(slotTime, endTime);
 			}
 		} catch (Exception e) {
 			e.printStackTrace();
 		}
 		
+		if (endTime != null && endTime.trim().length() > 0) {
+			endTime += " 23:59:59";
+		}
+		
 		try {
 			long count = 0;
-			List<CommonOrderVO> list = commonOrderService.getOrderByUid(page, uid, state, type, orderState, orderNo,
-					startTime, endTime, dateType);
-			
-			if (list != null && list.size() > 0) {
-				count = commonOrderService.countGroupOrderNoByUid(uid,  state, type, orderState, orderNo, startTime, endTime, dateType);
-			}
-			
 			int totalValid = 0;
 			int totalProces = 0;
 			int totalInvite = 0;
 			long todayTotal = 0;
 			BigDecimal todayMoney = null;
-			// 闇�瑕佺粺璁′俊鎭�
+			
+			
+			// 鏌ヨ鍒楄〃
+			List<CommonOrderVO> list = commonOrderService.getOrderByUid(page, uid, state, type, orderState,
+					orderNo, startTime, endTime, dateType);
+			
+			if (list != null && list.size() > 0) {
+				// 缁熻鎬绘暟
+				count = commonOrderService.countGroupOrderNoByUid(uid,  state, type, orderState, orderNo, 
+						startTime, endTime, dateType);
+			}
+			
+			// 闇�瑕佺粺璁$瓫閫変俊鎭� 锛氭湭澶辨晥鐨勬�婚噾棰� 浠ュ強璁㈠崟
 			if (needCount && page == 1) {
-				Map<String, BigDecimal> countOrder = commonOrderService.countByUidAndOrderState(uid, type, startTime, endTime);
+				
+				todayMoney = commonOrderService.countBonusOrderMoney(uid, type, dateType, startTime, endTime);
+				
+				todayTotal =  commonOrderService.countBonusOrderNumber(uid, type, dateType, startTime, endTime);
+				
+				
+				// 缁熻鏈夋晥鐨勮鍗曟暟閲� 銆� 澶辨晥璁㈠崟鏁伴噺 銆佺淮鏉冭鍗曟暟閲�
+				Map<String, BigDecimal> countOrder = commonOrderService.countByUidAndOrderState(uid, type, 
+						startTime, endTime, dateType);
 				
 				if (countOrder.get("totalValid") != null) {
 					totalValid = countOrder.get("totalValid").intValue();
@@ -120,14 +147,12 @@
 				if (countOrder.get("totalInvite") != null) {
 					totalInvite = countOrder.get("totalInvite").intValue();
 				}	
-				
-				todayTotal = commonOrderService.countOrder(uid, type, 1);
-				todayMoney = commonOrderService.countOrderMoney(uid, type , 1); 
 			}
-		
+			
 			if (todayMoney == null) {
-				todayMoney = new BigDecimal(0);
+				todayMoney = new BigDecimal(0.00);
 			}
+			
 			
 			String helpUrl = configService.get("order_list_help");
 			
@@ -137,8 +162,15 @@
 			
 			data.put("helpUrl", helpUrl);
 			
-			data.put("todayTotal", todayTotal);
-			data.put("todayMoney", todayMoney);
+			if (type != null && type == 1) {
+				data.put("todayMoney", "棰勪及杩斿埄鎬婚 楼" + todayMoney.setScale(2, BigDecimal.ROUND_DOWN).toString());
+			} else if (type != null &&(type == 2 || type == 3)) {
+				data.put("todayMoney", "棰勪及濂栭噾鎬婚 楼" + todayMoney.setScale(2, BigDecimal.ROUND_DOWN).toString());
+			} else {
+				data.put("todayMoney", "棰勪及鎬婚 楼" + todayMoney.setScale(2, BigDecimal.ROUND_DOWN).toString());
+			}
+			
+			data.put("todayTotal", "鍏�"+ todayTotal+ "绗�");
 			data.put("totalValid", totalValid); // 鏈夋晥鏁伴噺
 			data.put("totalProces", totalProces); // 缁存潈鏁伴噺
 			data.put("totalInvite", totalInvite); // 澶辨晥鏁伴噺
@@ -177,11 +209,34 @@
 
 			UserInfo userInfo = UserUtil.filterForClientUser(user);
 			
+			// 1.5.0 鐗堟湰涔嬪悗杩斿洖鏂扮殑绛夌骇
+			String version = acceptData.getVersion();
+			if (version != null && version.trim().length() > 0) {
+				int versionCode = Integer.parseInt(version);
+				String platform = acceptData.getPlatform();
+
+				AppVersionInfo versionInfo = appVersionService.getByPlatformAndVersion(platform, "1.5.0");
+				if (versionInfo != null) {
+					int versionCode150 = versionInfo.getVersionCode();
+					if (versionCode >= versionCode150) {
+						UserInfoExtraVO userInfoExtra = userInfoExtraService.getInfoExtraVOByUid(user.getId());						if (userInfoExtra != null && userInfoExtra.getUserRank() != null) {
+							String picture = userInfoExtra.getUserRank().getPicture();
+							String icon = userInfoExtra.getUserRank().getIcon();
+							
+							userInfo.setRankIcon(icon);
+							userInfo.setRankNamePicture(picture);
+						}
+					}
+				}
+
+			}
+			
+			
 			JSONObject data = new JSONObject();
 			data.put("userInfo", userInfo);
 			
 			/* 鎬昏鍗曠粺璁�   */
-			Map<String, BigDecimal> countOrder= commonOrderService.countOrderByHongBaoType(uid, null);
+			Map<String, BigDecimal> countOrder= commonOrderService.countHistoryOrder(uid, null);
 			int self = 0;
 			if (countOrder.get("totalSelf") != null) {
 				self = countOrder.get("totalSelf").intValue();
@@ -205,7 +260,7 @@
 			data.put("invite", invite);
 			
 			/*  浠婃棩璁㈠崟缁熻  */
-			Map<String, BigDecimal> countToday= commonOrderService.countOrderByHongBaoType(uid, 1);
+			Map<String, BigDecimal> countToday= commonOrderService.countHistoryOrder(uid, 1);
 			
 			int todaySelf = 0;
 			if (countToday.get("totalSelf") != null) {
@@ -233,7 +288,7 @@
 			data.put("today", todaydata);
 			
 			/*  鏄ㄦ棩璁㈠崟缁熻   */
-			Map<String, BigDecimal> countYesterday= commonOrderService.countOrderByHongBaoType(uid, 2);
+			Map<String, BigDecimal> countYesterday= commonOrderService.countHistoryOrder(uid, 2);
 			int yesterdaySelf = 0;
 			if (countYesterday.get("totalSelf") != null) {
 				yesterdaySelf = countYesterday.get("totalSelf").intValue();
@@ -281,18 +336,46 @@
 		
 		try {
 			
-			JSONObject data = new JSONObject();
-			// 鍒嗕韩缁熻
-			BigDecimal sharemoney = commonOrderService.countOrderMoney(uid,2, dateType);
-			data.put("shareCount", commonOrderService.countOrder(uid, 2, dateType));
-			data.put("sharemoney", sharemoney.setScale(2, BigDecimal.ROUND_DOWN).toString());
+			Object shareCount = 0;
+			BigDecimal sharemoney = new BigDecimal(0.00);
+			Object inviteCount = 0;
+			BigDecimal inviteMoney = new BigDecimal(0.00);
+			
+			Map<String, Object> shareMap = commonOrderService.countBonusOrderMoneyAndNumber(uid, 2 , dateType, null, null);
+			if (shareMap != null) {
+				Object totalNum = shareMap.get("totalNum");
+				if (totalNum != null) {
+					shareCount = totalNum;
+				}
+				
+				Object totalmoney = shareMap.get("totalmoney");
+				if (totalmoney != null) {
+					sharemoney = (BigDecimal) totalmoney;
+				}
+			}
+			
 			// 閭�璇风粺璁�
-			BigDecimal inviteMoney = commonOrderService.countOrderMoney(uid,3, dateType);
-			data.put("inviteCount", commonOrderService.countOrder(uid, 3, dateType));
+			Map<String, Object> inviteMap = commonOrderService.countBonusOrderMoneyAndNumber(uid, 3 , dateType, null, null);
+			if (inviteMap != null) {
+				Object totalNum = inviteMap.get("totalNum");
+				if (totalNum != null) {
+					inviteCount = totalNum;
+				}
+				
+				Object totalmoney = inviteMap.get("totalmoney");
+				if (totalmoney != null) {
+					inviteMoney = (BigDecimal) totalmoney;
+				}
+			}
+			
+			
+			JSONObject data = new JSONObject();
+			data.put("shareCount", shareCount);
+			data.put("sharemoney",  sharemoney.setScale(2, BigDecimal.ROUND_DOWN).toString());
+			data.put("inviteCount", inviteCount);
 			data.put("inviteMoney", inviteMoney.setScale(2, BigDecimal.ROUND_DOWN).toString());
 			
-			data.put("showTiCheng", hongBaoService.getTotalTiChengCount(uid) > 0);
-			
+			data.put("showTiCheng", hongBaoV2CountService.getTotalTiChengCount(uid) > 0);
 			out.print(JsonUtil.loadTrueResult(data));
 			
 		} catch (Exception e) {
@@ -309,32 +392,32 @@
 	 * @return
 	 * @throws Exception
 	 */
-	public String convertDate (Integer slotTime, String startTime) throws Exception {
-		String endTime = null;
+	public String convertDate (Integer slotTime, String endTime) throws Exception {
+		String startTime = null;
 		
 		switch (slotTime) {
 			case 1: // 鏈�杩戜笁澶�
-				endTime = DateUtil.plusDay(3, startTime);
+				startTime = DateUtil.reduceDay(2, endTime);
 				break;
 			case 2: // 鏈�杩戜竷澶�
-				endTime = DateUtil.plusDay(7, startTime);
+				startTime = DateUtil.reduceDay(6, endTime);
 				break;
 			case 3: // 鏈�杩�15澶� 锛堝崐鏈堬級
-				endTime = DateUtil.plusDay(15, startTime);
+				startTime = DateUtil.reduceDay(14, endTime);
 				break;
 			case 4: // 鏈�杩戜笁鍗佸ぉ 锛堟湰鏈堬級
-				endTime = DateUtil.plusDay(30, startTime);
+				startTime = DateUtil.reduceDay(29, endTime);
 				break;
 			case 5: // 鏈�杩戜節鍗佸ぉ锛堣繎涓夋湀锛�
-				endTime = DateUtil.plusDay(3*30, startTime);
+				startTime = DateUtil.reduceDay(3*30-1, endTime);
 				break;
 			case 6: // 鏈�杩戜竴鐧惧叓鍗佸ぉ锛堣繎鍗婂勾锛�
-				endTime = DateUtil.plusDay(6*30, startTime);
+				startTime = DateUtil.reduceDay(6*30-1, endTime);
 				break;
 			default:
 				break;
 		}
 		
-		return endTime;
+		return startTime;
 	}
 }

--
Gitblit v1.8.0