From 30d8e227e8d823b6c38c3b9c90ac2df03b63befe Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期二, 25 二月 2025 16:41:22 +0800
Subject: [PATCH] 淘宝转链接口更新

---
 fanli/src/main/java/com/yeshi/fanli/controller/client/v2/JingDongControllerV2.java |  278 +++++++++++++++++++++++++++---------------------------
 1 files changed, 139 insertions(+), 139 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/controller/client/v2/JingDongControllerV2.java b/fanli/src/main/java/com/yeshi/fanli/controller/client/v2/JingDongControllerV2.java
index d37b126..1a7fb94 100644
--- a/fanli/src/main/java/com/yeshi/fanli/controller/client/v2/JingDongControllerV2.java
+++ b/fanli/src/main/java/com/yeshi/fanli/controller/client/v2/JingDongControllerV2.java
@@ -1,139 +1,139 @@
-package com.yeshi.fanli.controller.client.v2;
-
-import java.io.PrintWriter;
-import java.math.BigDecimal;
-import java.util.ArrayList;
-import java.util.List;
-
-import javax.annotation.Resource;
-
-import org.springframework.stereotype.Controller;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.yeshi.utils.JsonUtil;
-
-import com.google.gson.Gson;
-import com.google.gson.GsonBuilder;
-import com.yeshi.fanli.dto.ConfigParamsDTO;
-import com.yeshi.fanli.entity.accept.AcceptData;
-import com.yeshi.fanli.entity.bus.homemodule.Special;
-import com.yeshi.fanli.entity.bus.homemodule.SwiperPicture;
-import com.yeshi.fanli.entity.jd.JDGoods;
-import com.yeshi.fanli.exception.jd.JDGoodsException;
-import com.yeshi.fanli.service.inter.common.JumpDetailV2Service;
-import com.yeshi.fanli.service.inter.config.ConfigService;
-import com.yeshi.fanli.service.inter.goods.TaoBaoGoodsBriefService;
-import com.yeshi.fanli.service.inter.homemodule.SpecialService;
-import com.yeshi.fanli.service.inter.homemodule.SwiperPictureService;
-import com.yeshi.fanli.service.inter.jd.JDGoodsService;
-import com.yeshi.fanli.service.inter.lable.QualityGoodsService;
-import com.yeshi.fanli.service.inter.order.config.HongBaoManageService;
-import com.yeshi.fanli.service.inter.taobao.dataoke.DaTaoKeGoodsService;
-import com.yeshi.fanli.util.Constant;
-import com.yeshi.fanli.util.factory.goods.GoodsDetailVOFactory;
-import com.yeshi.fanli.vo.goods.GoodsDetailVO;
-
-import net.sf.json.JSONArray;
-import net.sf.json.JSONObject;
-
-/**
- * 鐑攢姒�
- * 
- * @author Administrator
- *
- */
-@Controller
-@RequestMapping("api/v2/jd")
-public class JingDongControllerV2 {
-
-	@Resource
-	private HongBaoManageService hongBaoManageService;
-
-	@Resource
-	private TaoBaoGoodsBriefService taoBaoGoodsBriefService;
-
-	@Resource
-	private JumpDetailV2Service jumpDetailV2Service;
-
-	@Resource
-	private DaTaoKeGoodsService daTaoKeGoodsService;
-
-	@Resource
-	private SwiperPictureService swiperPictureService;
-
-	@Resource
-	private QualityGoodsService qualityGoodsService;
-
-	@Resource
-	private ConfigService configService;
-
-	@Resource
-	private SpecialService specialService;
-
-	@Resource
-	private JDGoodsService jdGoodsService;
-
-	/**
-	 * 浜笢涓撻鍒嗙被
-	 * 
-	 * @param acceptData
-	 * @param out
-	 */
-	@RequestMapping(value = "getClass")
-	public void getJDClass(AcceptData acceptData, PrintWriter out) {
-		JSONObject root = new JSONObject();
-		root.put("list", jdGoodsService.getSpecialClass());
-		root.put("jdLink", configService.get("jingdong_h5_link"));
-		out.print(JsonUtil.loadTrueResult(root));
-	}
-
-
-	/**
-	 * 浜笢涓撻 + 鍟嗗搧鍒楄〃
-	 * 
-	 * @param acceptData
-	 * @param out
-	 */
-	@RequestMapping(value = "getGoodsInfo")
-	public void getGoodsInfo(AcceptData acceptData, Long cid, Integer page, PrintWriter out) {
-		JSONObject root = new JSONObject();
-		if (cid == 1 && page == 1) {
-			List<SwiperPicture> topPicList = swiperPictureService.getByBannerCard("jingdong_special_index");
-			if (topPicList == null) {
-				topPicList = new ArrayList<SwiperPicture>();
-			}
-			root.put("listPic", JsonUtil.getApiCommonGson().toJson(topPicList));
-
-			int platformCode = Constant.getPlatformCode(acceptData.getPlatform());
-			
-			List<Special> listSpecial = specialService.listByPlaceKey("jingdong_special_index", platformCode, Integer.parseInt(acceptData.getVersion()));
-			if (listSpecial == null) {
-				listSpecial = new ArrayList<Special>();
-			}
-			root.put("listSpe", JsonUtil.getApiCommonGson().toJson(listSpecial));
-		}
-
-		try {
-			List<JDGoods> goodsList = jdGoodsService.specialSearch(page, cid);
-			JSONArray array = new JSONArray();
-			if (goodsList != null && goodsList.size() > 0) {
-				BigDecimal fanLiRate = hongBaoManageService.getFanLiRate();
-				BigDecimal shareRate = hongBaoManageService.getShareRate();
-			    ConfigParamsDTO paramsDTO = new ConfigParamsDTO(fanLiRate, shareRate, Constant.MAX_REWARD_RATE);
-
-				Gson gson = JsonUtil.getConvertBigDecimalToStringSubZeroBuilder(new GsonBuilder())
-						.excludeFieldsWithoutExposeAnnotation().setDateFormat("yyyy-MM-dd").create();
-				for (JDGoods goods : goodsList) {
-					GoodsDetailVO goodsDetailVO = GoodsDetailVOFactory.convertJDGoods(goods, paramsDTO);
-					array.add(gson.toJson(goodsDetailVO));
-				}
-			}
-
-			root.put("list", array);
-			root.put("count", 1000);
-			out.print(JsonUtil.loadTrueResult(root));
-		} catch (JDGoodsException e) {
-			out.print(JsonUtil.loadFalseResult(e.getMsg()));
-		}
-	}
-
-}
+package com.yeshi.fanli.controller.client.v2;
+
+import java.io.PrintWriter;
+import java.util.ArrayList;
+import java.util.List;
+
+import javax.annotation.Resource;
+
+import com.yeshi.fanli.util.SystemInfoUtil;
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.yeshi.utils.JsonUtil;
+
+import com.google.gson.Gson;
+import com.google.gson.GsonBuilder;
+import com.yeshi.fanli.dto.GoodsMoneyConfigParamsDTO;
+import com.yeshi.fanli.entity.accept.AcceptData;
+import com.yeshi.fanli.entity.bus.homemodule.Special;
+import com.yeshi.fanli.entity.jd.JDGoods;
+import com.yeshi.fanli.entity.system.ConfigKeyEnum;
+import com.yeshi.fanli.exception.jd.JDGoodsException;
+import com.yeshi.fanli.service.inter.common.JumpDetailV2Service;
+import com.yeshi.fanli.service.inter.config.ConfigService;
+import com.yeshi.fanli.service.inter.goods.TaoBaoGoodsBriefService;
+import com.yeshi.fanli.service.inter.homemodule.SpecialService;
+import com.yeshi.fanli.service.inter.homemodule.SwiperPictureService;
+import com.yeshi.fanli.service.inter.jd.JDGoodsService;
+import com.yeshi.fanli.service.inter.lable.QualityGoodsService;
+import com.yeshi.fanli.service.inter.order.OrderHongBaoMoneyComputeService;
+import com.yeshi.fanli.service.inter.taobao.dataoke.DaTaoKeGoodsService;
+import com.yeshi.fanli.util.Constant;
+import com.yeshi.fanli.util.factory.goods.GoodsDetailVOFactory;
+import com.yeshi.fanli.vo.goods.GoodsDetailVO;
+import com.yeshi.fanli.vo.homemodule.BannerVO;
+
+import net.sf.json.JSONArray;
+import net.sf.json.JSONObject;
+
+/**
+ * 鐑攢姒�
+ * 
+ * @author Administrator
+ *
+ */
+@Controller
+@RequestMapping("api/v2/jd")
+public class JingDongControllerV2 {
+
+	@Resource
+	private OrderHongBaoMoneyComputeService orderHongBaoMoneyComputeService;
+
+	@Resource
+	private TaoBaoGoodsBriefService taoBaoGoodsBriefService;
+
+	@Resource
+	private JumpDetailV2Service jumpDetailV2Service;
+
+	@Resource
+	private DaTaoKeGoodsService daTaoKeGoodsService;
+
+	@Resource
+	private SwiperPictureService swiperPictureService;
+
+	@Resource
+	private QualityGoodsService qualityGoodsService;
+
+	@Resource
+	private ConfigService configService;
+
+	@Resource
+	private SpecialService specialService;
+
+	@Resource
+	private JDGoodsService jdGoodsService;
+
+	/**
+	 * 浜笢涓撻鍒嗙被
+	 * 
+	 * @param acceptData
+	 * @param out
+	 */
+	@RequestMapping(value = "getClass")
+	public void getJDClass(AcceptData acceptData, PrintWriter out) {
+		JSONObject root = new JSONObject();
+		root.put("list", jdGoodsService.getSpecialClass());
+		root.put("jdLink", configService.getValue(ConfigKeyEnum.jingdongH5Link.getKey(), SystemInfoUtil.getSystem(acceptData)));
+		out.print(JsonUtil.loadTrueResult(root));
+	}
+
+
+	/**
+	 * 浜笢涓撻 + 鍟嗗搧鍒楄〃
+	 * 
+	 * @param acceptData
+	 * @param out
+	 */
+	@RequestMapping(value = "getGoodsInfo")
+	public void getGoodsInfo(AcceptData acceptData, Long cid, Integer page, PrintWriter out) {
+		JSONObject root = new JSONObject();
+		if (cid == 1 && page == 1) {
+			List<BannerVO> topPicList = swiperPictureService.getByBannerCardAndVersion("jingdong_special_index",acceptData.getPlatform(), Integer.parseInt(acceptData.getVersion()),acceptData.getSystem());
+			if (topPicList == null) {
+				topPicList = new ArrayList<BannerVO>();
+			}
+			root.put("listPic", JsonUtil.getApiCommonGson().toJson(topPicList));
+
+			int platformCode = Constant.getPlatformCode(acceptData.getPlatform());
+			
+			List<Special> listSpecial = specialService.listByPlaceKey("jingdong_special_index", platformCode, Integer.parseInt(acceptData.getVersion()),acceptData.getSystem());
+			if (listSpecial == null) {
+				listSpecial = new ArrayList<Special>();
+			}
+			root.put("listSpe", JsonUtil.getApiCommonGson().toJson(listSpecial));
+		}
+
+		try {
+			List<JDGoods> goodsList = jdGoodsService.specialSearch(page, cid,acceptData.getSystem());
+			JSONArray array = new JSONArray();
+			if (goodsList != null && goodsList.size() > 0) {
+			    GoodsMoneyConfigParamsDTO paramsDTO = orderHongBaoMoneyComputeService.getShowComputeRate(acceptData.getPlatform(),
+						acceptData.getVersion(),acceptData.getSystem());
+
+				Gson gson = JsonUtil.getConvertBigDecimalToStringSubZeroBuilder(new GsonBuilder())
+						.excludeFieldsWithoutExposeAnnotation().setDateFormat("yyyy-MM-dd").create();
+				for (JDGoods goods : goodsList) {
+					GoodsDetailVO goodsDetailVO = GoodsDetailVOFactory.convertJDGoods(goods, paramsDTO);
+					array.add(gson.toJson(goodsDetailVO));
+				}
+			}
+
+			root.put("list", array);
+			root.put("count", 1000);
+			out.print(JsonUtil.loadTrueResult(root));
+		} catch (JDGoodsException e) {
+			out.print(JsonUtil.loadFalseResult(e.getMsg()));
+		}
+	}
+
+}

--
Gitblit v1.8.0