From 9a24f2802a3d6fe3e82c05e52f2880d65ad04dcf Mon Sep 17 00:00:00 2001
From: yujian <yujian>
Date: 星期一, 29 四月 2019 08:59:47 +0800
Subject: [PATCH] Merge branch 'div_develop' into master_develop

---
 fanli/src/main/java/com/yeshi/fanli/service/impl/taobao/TaoBaoGoodsUpdateServiceImpl.java |   17 +++++++----------
 1 files changed, 7 insertions(+), 10 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/taobao/TaoBaoGoodsUpdateServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/taobao/TaoBaoGoodsUpdateServiceImpl.java
index c34e343..a8bea9e 100644
--- a/fanli/src/main/java/com/yeshi/fanli/service/impl/taobao/TaoBaoGoodsUpdateServiceImpl.java
+++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/taobao/TaoBaoGoodsUpdateServiceImpl.java
@@ -19,7 +19,6 @@
 import com.yeshi.fanli.exception.taobao.TaobaoGoodsUpdateException;
 import com.yeshi.fanli.service.inter.activity.ActivityService;
 import com.yeshi.fanli.service.inter.goods.CommonGoodsService;
-import com.yeshi.fanli.service.inter.goods.RecommendSectionGoodsService;
 import com.yeshi.fanli.service.inter.lable.QualityFactoryService;
 import com.yeshi.fanli.service.inter.taobao.TaoBaoGoodsUpdateService;
 import com.yeshi.fanli.util.BeanUtil;
@@ -29,8 +28,6 @@
 
 @Service
 public class TaoBaoGoodsUpdateServiceImpl implements TaoBaoGoodsUpdateService {
-	@Resource
-	private RecommendSectionGoodsService recommendSectionGoodsService;
 
 	@Resource
 	private ActivityService activityService;
@@ -61,7 +58,7 @@
 				}
 
 			} catch (TaobaoGoodsDownException e) {
-				 offlineTaoBaoGoods(goods.getAuctionId());
+				offlineTaoBaoGoods(goods.getAuctionId());
 			} catch (Exception e) {
 
 			}
@@ -71,9 +68,6 @@
 	@Transactional
 	@Override
 	public void deleteTaoBaoGoods(Long auctionId) {
-		// 鍒犻櫎棣栭〉鎺ㄨ崘鏁版嵁
-		recommendSectionGoodsService.deleteRecommendSectionGoodsByTbAuctionId(auctionId);
-
 		// 鍒犻櫎绮鹃�夊簱鐩稿叧鐨勬暟鎹�
 		qualityFactoryService.deleteByTbAuctionId(auctionId);
 
@@ -83,9 +77,7 @@
 
 	@Transactional
 	@Override
-	public void  offlineTaoBaoGoods(Long auctionId) {
-		// 鍒犻櫎棣栭〉鎺ㄨ崘鏁版嵁
-		recommendSectionGoodsService.deleteRecommendSectionGoodsByTbAuctionId(auctionId);
+	public void offlineTaoBaoGoods(Long auctionId) {
 		// 鏇存柊鍔ㄦ�佹暟鎹�
 		activityService.downTaoBaoGoods(auctionId);
 
@@ -124,6 +116,9 @@
 				taoBaoGoodsBriefMapper.updateByPrimaryKeySelective(updateGoods);
 
 			}
+
+		// 鏇存柊鍔ㄦ�佸晢鍝�
+		activityService.updateRecommendActivityGoods(goods);
 	}
 
 	@Override
@@ -149,6 +144,7 @@
 		// 鏇存柊鏍囬锛屽晢鍝佸浘鐗囷紝閿�閲忥紝浠锋牸锛屽埜淇℃伅锛岃繑鍒╀俊鎭紝搴楅摵淇℃伅锛屽垎绫讳俊鎭�
 		updateGoods.setTitle(goods.getTitle());
 		updateGoods.setPictUrl(goods.getPictUrl());
+		updateGoods.setPictUrlWhite(goods.getPictUrlWhite());
 		updateGoods.setImgList(goods.getImgList());
 		updateGoods.setBiz30day(goods.getBiz30day());
 		updateGoods.setZkPrice(goods.getZkPrice());
@@ -186,6 +182,7 @@
 		updateGoods.setRootCategoryName(goods.getRootCategoryName());
 		updateGoods.setLeafCatId(goods.getLeafCatId());
 		updateGoods.setLeafName(goods.getLeafName());
+		updateGoods.setMaterialLibType(goods.getMaterialLibType());
 
 		return updateGoods;
 	}

--
Gitblit v1.8.0