From 179b39401c406579a0d10c442a665aeb2802e931 Mon Sep 17 00:00:00 2001
From: yujian <yujian@123.com>
Date: 星期一, 20 五月 2019 09:17:03 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 fanli/src/main/java/com/yeshi/fanli/controller/client/RecommendController.java |   54 +++++++++++++++++++++++++++++++++++++-----------------
 1 files changed, 37 insertions(+), 17 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/controller/client/RecommendController.java b/fanli/src/main/java/com/yeshi/fanli/controller/client/RecommendController.java
index c62d7fa..93f8b30 100644
--- a/fanli/src/main/java/com/yeshi/fanli/controller/client/RecommendController.java
+++ b/fanli/src/main/java/com/yeshi/fanli/controller/client/RecommendController.java
@@ -1602,6 +1602,8 @@
 			if ("ios".equalsIgnoreCase(platform)) {
 				root.put("htmlLink", configService.get("index_html_link_ios"));
 			}
+			
+			root.put("spikeGoods",  getSpikeGoodsContent(acceptData));
 
 			out.print(JsonUtil.loadTrueResult(root));
 		} catch (Exception e) {
@@ -1648,15 +1650,7 @@
 		return swiperList;
 	}
 
-	/**
-	 * 闄愭椂绉掓潃 1.5.3
-	 * 
-	 * @param acceptData
-	 * @param out
-	 */
-	@RequestMapping(value = "getSpikeGoods")
-	public void getSpikeGoods(AcceptData acceptData, PrintWriter out) {
-
+	private JSONObject getSpikeGoodsContent(AcceptData acceptData) {
 		// 涓嬩竴娆″�掕鏃剁殑鏃堕棿
 		int type = qualityFlashSaleService.getNowType() + 1;
 		int hour = 0;
@@ -1735,14 +1729,27 @@
 		}
 		Long endTime = nextTime.getTimeInMillis() - java.lang.System.currentTimeMillis();
 		
-		JSONObject params = new JSONObject();
-		params.put("url", configService.get("spike_goods_link"));
-		JumpDetailV2 jumpDetail = jumpDetailV2Service.getByTypeCache("web");
-		
 		JSONObject root = new JSONObject();
 		root.put("time", nextTime.getTimeInMillis());
 		root.put("endTime", endTime > 0? endTime : 0);
 		root.put("listgoods", array);
+
+		return root;
+	}
+
+	/**
+	 * 闄愭椂绉掓潃 1.5.3
+	 * 
+	 * @param acceptData
+	 * @param out
+	 */
+	@RequestMapping(value = "getSpikeGoods")
+	public void getSpikeGoods(AcceptData acceptData, PrintWriter out) {
+		JSONObject params = new JSONObject();
+		params.put("url", configService.get("spike_goods_link"));
+		JumpDetailV2 jumpDetail = jumpDetailV2Service.getByTypeCache("web");
+		
+		JSONObject root = getSpikeGoodsContent(acceptData);
 		root.put("params", params);
 		root.put("jumpDetail", jumpDetail);
 		out.print(JsonUtil.loadTrueResult(root));
@@ -2020,8 +2027,8 @@
 		goodsJson.put("hongBao", hongBao);
 
 		List<ClientTextStyleVO> labels = new ArrayList<>();
-		labels.add(new ClientTextStyleVO("鏍囩娴嬭瘯鍐呭", "#FF0000"));
-		labels.add(new ClientTextStyleVO("鏍囩娴嬭瘯鍐呭", "#00FF00"));
+		labels.add(new ClientTextStyleVO("鏍囩鍐呭", "#F14242"));
+		labels.add(new ClientTextStyleVO("鏍囩鍐呭", "#00FF00"));
 		goodsJson.put("labels", labels);
 
 		data.put("tbPidInfo", clientTBPid);
@@ -2050,19 +2057,29 @@
 			} else {
 				tbShopInfo.setUserType("0");
 			}
+			
+			String shopLink = tbShopInfo.getShopUrl();
+			if (StringUtil.isNullOrEmpty(shopLink)) {
+				tbShopInfo.setShopUrl(TaoBaoUtil.getShopLink(tbShopInfo.getUserId()));
+			}
 		}
 		// 搴楅摵
 		if (("android".equalsIgnoreCase(acceptData.getPlatform()) && Integer.parseInt(acceptData.getVersion()) >= 40)
 				|| ("ios".equalsIgnoreCase(acceptData.getPlatform())
 						&& Integer.parseInt(acceptData.getVersion()) >= 49)) {
 			TaoBaoShop shop = taoBaoShopService.getTaoBaoShop(goods.getAuctionId(), goods.getSellerId());
-			if (shop != null)
+			if (shop != null) {
+				String shopLink = shop.getShopLink();
+				if (StringUtil.isNullOrEmpty(shopLink)) {
+					shop.setShopLink(TaoBaoUtil.getShopLink(shop.getId()));
+				}
 				goodsJson.put("shopInfo", shop);
+			}
 		} else {
 			goodsJson.put("shopInfo", tbShopInfo);
 		}
 
-		goodsJson.put("fanliValid", true);// 鏄惁鏈夎繑鍒�
+		goodsJson.put("fanliValid",Math.random()>0.5? true:false);// 鏄惁鏈夎繑鍒�
 
 		// 鍒嗕韩璺緞
 		String shareUrl = String.format("%s?id=" + tb.getAuctionId(), Constant.systemCommonConfig.getAppShareInfoUrl());
@@ -2080,6 +2097,9 @@
 		data.put("shareUsers", listShareUser);
 		data.put("couponUsers", listCouponUser);
 		data.put("detailWebUrl", "http://apph5.yeshitv.com/apppage/goods_img.html?id=" + id);
+		
+		data.put("noRebateHelpLink", configService.get("no_rebate_help_link"));
+		
 		// 鍟嗗搧閾炬帴
 		String h5Url = String.format("http://%s%s?id=%s&appType=flq", configService.getH5Host(),
 				Constant.systemCommonConfig.getShareGoodsPagePath(), tb.getAuctionId() + "");

--
Gitblit v1.8.0