From a1a2cf7535373390f7cb29fb4e7c4f7a22a0a915 Mon Sep 17 00:00:00 2001
From: Administrator <Administrator@MS-20170306HGUF>
Date: 星期六, 22 二月 2020 18:38:57 +0800
Subject: [PATCH] 动态发圈-素材

---
 fanli/src/main/java/com/yeshi/fanli/controller/admin/GoodsEvaluateAdminController.java |  287 ++++++++++++++++++++++++++++++++++++++++++++++++++++-----
 1 files changed, 261 insertions(+), 26 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/controller/admin/GoodsEvaluateAdminController.java b/fanli/src/main/java/com/yeshi/fanli/controller/admin/GoodsEvaluateAdminController.java
index 8e857f7..29d678e 100644
--- a/fanli/src/main/java/com/yeshi/fanli/controller/admin/GoodsEvaluateAdminController.java
+++ b/fanli/src/main/java/com/yeshi/fanli/controller/admin/GoodsEvaluateAdminController.java
@@ -19,6 +19,7 @@
 import com.yeshi.fanli.entity.dynamic.CommentInfo;
 import com.yeshi.fanli.entity.dynamic.GoodsEvaluate;
 import com.yeshi.fanli.entity.dynamic.ImgInfo;
+import com.yeshi.fanli.entity.dynamic.CommentInfo.CommentInfoEnum;
 import com.yeshi.fanli.entity.dynamic.ImgInfo.ImgEnum;
 import com.yeshi.fanli.exception.dynamic.GoodsEvaluateException;
 import com.yeshi.fanli.service.inter.dynamic.GoodsEvaluateService;
@@ -122,6 +123,27 @@
 	 *            0a39676f138c4dcba722e321d43c4284
 	 * @param out
 	 */
+	@RequestMapping(value = "saveGoodsCoupon")
+	public void saveGoodsCoupon(String callback, String pid, String tags, String tagDesc, PrintWriter out) {
+		try {
+			goodsEvaluateService.saveGoodsCoupon(pid, tags, tagDesc);
+			JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult("淇濆瓨鎴愬姛"));
+		} catch (GoodsEvaluateException e) {
+			JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult(e.getMsg()));
+		} catch (Exception e) {
+			JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("淇濆瓨澶辫触"));
+			e.printStackTrace();
+		}
+	}
+	
+	/**
+	 * 淇濆瓨淇℃伅
+	 * 
+	 * @param callback
+	 * @param special
+	 *            0a39676f138c4dcba722e321d43c4284
+	 * @param out
+	 */
 	@RequestMapping(value = "saveSingleGoodsCoupon")
 	public void saveSingleGoodsCoupon(String callback, String pid, CommentInfo commentInfo, PrintWriter out) {
 		try {
@@ -152,25 +174,27 @@
 			String videoPic = "";
 			Integer picNum = 1;
 			List<String> list = new ArrayList<String>();
-			GoodsEvaluate goodsEvaluate = goodsEvaluateService.getById(pid);
-			if (goodsEvaluate != null && goodsEvaluate.getImgList() != null && goodsEvaluate.getImgList().size() > 0) {
-				List<ImgInfo> imgList = goodsEvaluate.getImgList();
-				for (ImgInfo imgInfo : imgList) {
-					ImgEnum type = imgInfo.getType();
-					if (type == ImgEnum.video) {
-						videoPic = imgInfo.getUrl();
-						videoUrl = imgInfo.getVideoUrl();
-					} else if (type == ImgEnum.goods) {
-						list.add(imgInfo.getUrl());
-						goodsId = imgInfo.getGoods().getGoodsId().toString();
-						goodsType = imgInfo.getGoods().getGoodsType().toString();
-					} else if (type == ImgEnum.img) {
-						list.add(imgInfo.getUrl());
+			if (!StringUtil.isNullOrEmpty(pid)) {
+				GoodsEvaluate goodsEvaluate = goodsEvaluateService.getById(pid);
+				if (goodsEvaluate != null && goodsEvaluate.getImgList() != null && goodsEvaluate.getImgList().size() > 0) {
+					List<ImgInfo> imgList = goodsEvaluate.getImgList();
+					for (ImgInfo imgInfo : imgList) {
+						ImgEnum type = imgInfo.getType();
+						if (type == ImgEnum.video) {
+							videoPic = imgInfo.getUrl();
+							videoUrl = imgInfo.getVideoUrl();
+						} else if (type == ImgEnum.goods) {
+							list.add(imgInfo.getUrl());
+							goodsId = imgInfo.getGoods().getGoodsId().toString();
+							goodsType = imgInfo.getGoods().getGoodsType().toString();
+						} else if (type == ImgEnum.img) {
+							list.add(imgInfo.getUrl());
+						}
 					}
+					picNum = goodsEvaluate.getMainPicNum();
 				}
-				picNum = goodsEvaluate.getMainPicNum();
 			}
-
+			
 			JSONObject data = new JSONObject();
 			data.put("goodsId",  goodsId);
 			data.put("goodsType",  goodsType);
@@ -196,13 +220,19 @@
 	 *            0a39676f138c4dcba722e321d43c4284
 	 * @param out
 	 */
-	@RequestMapping(value = "getSingleGoodsCoupon")
-	public void getSingleGoodsCoupon(String callback, String pid, PrintWriter out) {
+	@RequestMapping(value = "getCurrencyCoupon")
+	public void getCurrencyCoupon(String callback, String pid, PrintWriter out) {
 		try {
 			CommentInfo commentInfo = new CommentInfo();
-			GoodsEvaluate goodsEvaluate = goodsEvaluateService.getById(pid);
-			if (goodsEvaluate != null && goodsEvaluate.getComments() != null && goodsEvaluate.getComments().size() > 0) {
-				commentInfo = goodsEvaluate.getComments().get(0);
+			if (!StringUtil.isNullOrEmpty(pid)) {
+				GoodsEvaluate goodsEvaluate = goodsEvaluateService.getById(pid);
+				if (goodsEvaluate != null && goodsEvaluate.getComments() != null && goodsEvaluate.getComments().size() > 0) {
+					for (CommentInfo info: goodsEvaluate.getComments()) {
+						if (CommentInfoEnum.currencyCoupon == info.getType()) {
+							commentInfo = info;
+						}
+					}
+				}
 			}
 			JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(commentInfo));
 		} catch (Exception e) {
@@ -210,7 +240,101 @@
 			e.printStackTrace();
 		}
 	}
+	
+	
+	/**
+	 * 鑾峰彇淇℃伅
+	 * 
+	 * @param callback
+	 * @param special
+	 *            0a39676f138c4dcba722e321d43c4284
+	 * @param out
+	 */
+	@RequestMapping(value = "getSingleGoodsCoupon")
+	public void getSingleGoodsCoupon(String callback, String pid, PrintWriter out) {
+		try {
+			CommentInfo commentInfo = new CommentInfo();
+			if (!StringUtil.isNullOrEmpty(pid)) {
+				GoodsEvaluate goodsEvaluate = goodsEvaluateService.getById(pid);
+				if (goodsEvaluate != null && goodsEvaluate.getComments() != null && goodsEvaluate.getComments().size() > 0) {
+					for (CommentInfo info: goodsEvaluate.getComments()) {
+						if (CommentInfoEnum.goodsCoupon == info.getType()) {
+							commentInfo = info;
+						}
+					}
+				}
+			}
+			JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(commentInfo));
+		} catch (Exception e) {
+			JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("鏌ヨ澶辫触"));
+			e.printStackTrace();
+		}
+	}
+	
+	/**
+	 * 淇濆瓨澶氫釜鍟嗗搧
+	 * @param out
+	 */
+	@RequestMapping(value = "saveMultipleGoods")
+	public void saveMultipleGoods(String callback, String pid,  String videoUrl, String goodsList, 
+			HttpServletRequest request, PrintWriter out) {
+		try {
+			MultipartHttpServletRequest fileRequest = null;
+			if (request instanceof MultipartHttpServletRequest) {
+				fileRequest = (MultipartHttpServletRequest) request;
+			}
+			goodsEvaluateService.saveMultipleGoods(pid, videoUrl, goodsList, fileRequest);
+			JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult("淇濆瓨鎴愬姛"));
+		} catch (GoodsEvaluateException e) {
+			JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult(e.getMsg()));
+		} catch (Exception e) {
+			JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("淇濆瓨澶辫触"));
+			e.printStackTrace();
+		}
+	}
 
+	
+	/**
+	 * 鑾峰彇澶氫釜鍟嗗搧淇℃伅
+	 * 
+	 * @param out
+	 */
+	@RequestMapping(value = "getMultipleGoods")
+	public void getMultipleGoods(String callback, String pid, PrintWriter out) {
+		try {
+			String videoUrl = "";
+			String videoPic = "";
+			List<String> list = new ArrayList<String>();
+			List<String> goodsList = new ArrayList<String>();
+			
+			if (!StringUtil.isNullOrEmpty(pid)) {
+				GoodsEvaluate goodsEvaluate = goodsEvaluateService.getById(pid);
+				if (goodsEvaluate != null && goodsEvaluate.getImgList() != null && goodsEvaluate.getImgList().size() > 0) {
+					List<ImgInfo> imgList = goodsEvaluate.getImgList();
+					for (ImgInfo imgInfo : imgList) {
+						ImgEnum type = imgInfo.getType();
+						if (type == ImgEnum.video) {
+							videoPic = imgInfo.getUrl();
+							videoUrl = imgInfo.getVideoUrl();
+						} else if (type == ImgEnum.goods) {
+							list.add(imgInfo.getUrl());
+							goodsList.add(imgInfo.getGoods().getGoodsId() + "-"+ imgInfo.getGoods().getGoodsType());
+						} 
+					}
+				}
+			}
+			
+			JSONObject data = new JSONObject();
+			data.put("list",  list);
+			data.put("goodsList",  goodsList);
+			data.put("videoUrl",  videoUrl);
+			data.put("videoPic",  videoPic);
+			JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
+		} catch (Exception e) {
+			JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("鏌ヨ澶辫触"));
+			e.printStackTrace();
+		}
+	}
 	
 	/**
 	 * 淇濆瓨淇℃伅
@@ -281,6 +405,32 @@
 	}
 	
 	
+	/**
+	 * 淇濆瓨淇℃伅
+	 * 
+	 * @param callback
+	 * @param special
+	 *            0a39676f138c4dcba722e321d43c4284
+	 * @param out
+	 */
+	@RequestMapping(value = "saveSuCai")
+	public void saveSuCai(String callback, String pid, String videoUrl, String picUrls, 
+			HttpServletRequest request, PrintWriter out) {
+		try {
+			MultipartHttpServletRequest fileRequest = null;
+			if (request instanceof MultipartHttpServletRequest) {
+				fileRequest = (MultipartHttpServletRequest) request;
+			}
+			goodsEvaluateService.saveSuCai(pid, videoUrl, picUrls, fileRequest);
+			JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult("淇濆瓨鎴愬姛"));
+		} catch (GoodsEvaluateException e) {
+			JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult(e.getMsg()));
+		} catch (Exception e) {
+			JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("淇濆瓨澶辫触"));
+			e.printStackTrace();
+		}
+	}
+	
 	
 	/**
 	 * 淇濆瓨淇℃伅
@@ -292,7 +442,10 @@
 	@RequestMapping(value = "getEvaluate")
 	public void getEvaluate(String callback, String id, PrintWriter out) {
 		try {
-			GoodsEvaluate goodsEvaluate = goodsEvaluateService.getById(id);
+			GoodsEvaluate goodsEvaluate = null;
+			if (!StringUtil.isNullOrEmpty(id)) {
+				goodsEvaluate = goodsEvaluateService.getById(id);
+			}
 			if (goodsEvaluate == null)
 				goodsEvaluate = new GoodsEvaluate();
 
@@ -308,8 +461,6 @@
 			e.printStackTrace();
 		}
 	}
-	
-	
 	
 	
 
@@ -364,7 +515,7 @@
 		}
 
 		try {
-			List<GoodsEvaluate> list = goodsEvaluateService.query((pageIndex - 1) * pageSize, pageSize, key, state);
+			List<GoodsEvaluate> list = goodsEvaluateService.query((pageIndex - 1) * pageSize, pageSize, key, state, 1);
 			if (list == null || list.size() == 0) {
 				JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("鏆傛棤鏁版嵁"));
 				return;
@@ -386,7 +537,7 @@
 				}
 			}
 
-			long count = goodsEvaluateService.count(key, state);
+			long count = goodsEvaluateService.count(key, state, 1);
 
 			int totalPage = (int) (count % pageSize == 0 ? count / pageSize : count / pageSize + 1);
 			PageEntity pe = new PageEntity(pageIndex, pageSize, count, totalPage);
@@ -401,6 +552,63 @@
 		}
 	}
 
+	
+	/**
+	 * 鏌ヨ
+	 * 
+	 * @param callback
+	 * @param pageIndex
+	 * @param pageSize
+	 * @param bannerId
+	 * @param out
+	 */
+	@RequestMapping(value = "querySuCai")
+	public void querySuCai(String callback, Integer pageIndex, Integer pageSize, String key, Integer state,
+			PrintWriter out) {
+		if (pageIndex == null || pageIndex < 1) {
+			pageIndex = 1;
+		}
+		if (pageSize == null || pageSize < 1) {
+			pageSize = Constant.PAGE_SIZE;
+		}
+
+		try {
+			List<GoodsEvaluate> list = goodsEvaluateService.query((pageIndex - 1) * pageSize, pageSize, key, state, 2);
+			if (list == null || list.size() == 0) {
+				JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("鏆傛棤鏁版嵁"));
+				return;
+			}
+
+			for (GoodsEvaluate article : list) {
+				Date startTime = article.getStartTime();
+				if (startTime == null) {
+					article.setStartTimeChar("");
+				} else {
+					article.setStartTimeChar(TimeUtil.formatDateAddT(startTime));
+				}
+
+				Date endTime = article.getEndTime();
+				if (endTime == null) {
+					article.setEndTimeChar("");
+				} else {
+					article.setEndTimeChar(TimeUtil.formatDateAddT(endTime));
+				}
+			}
+
+			long count = goodsEvaluateService.count(key, state, 2);
+
+			int totalPage = (int) (count % pageSize == 0 ? count / pageSize : count / pageSize + 1);
+			PageEntity pe = new PageEntity(pageIndex, pageSize, count, totalPage);
+
+			JSONObject data = new JSONObject();
+			data.put("pe", pe);
+			data.put("result_list", list);
+			JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
+		} catch (Exception e) {
+			JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("鎿嶄綔寮傚父"));
+			e.printStackTrace();
+		}
+	}
 	/**
 	 * 鏍规嵁閾炬帴鏌ヨ鍟嗗搧
 	 * 
@@ -489,6 +697,7 @@
 			JSONObject object = new JSONObject();
 			object.put("goodsId", 551062664275L);
 			object.put("goodsType", 1);
+			object.put("picUrl", "https://img.alicdn.com/bao/uploaded/i3/2640238597/O1CN01H5Q0Ni2DNTYxGAy3V_!!0-item_pic.jpg_220x220");
 			object.put("imgList", imgList);
 			JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(object));
 		} catch (Exception e) {
@@ -549,6 +758,32 @@
 			e.printStackTrace();
 		}
 	}
+	
+	/**
+	 * 鍒犻櫎淇℃伅
+	 * 
+	 * @param callback
+	 * @param idArray
+	 * @param out
+	 */
+	@RequestMapping(value = "release")
+	public void release(String callback, String id, PrintWriter out) {
+		try {
+			if (StringUtil.isNullOrEmpty(id)) {
+				JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("璇烽�夋嫨鎿嶄綔鐨勬暟鎹�"));
+				return;
+			}
+
+			goodsEvaluateService.release(id);
+			JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult("鍙戝竷鎴愬姛"));
+		} catch (GoodsEvaluateException e) {
+			JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult(e.getMsg()));
+		} catch (Exception e) {
+			JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("鍙戝竷澶辫触"));
+			e.printStackTrace();
+		}
+	}
+	
 
 	/**
 	 * 鏌ヨ鍝佽

--
Gitblit v1.8.0