From eec7e789a87863c25d92c10ad5dfc22ad80c448d Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期二, 14 七月 2020 12:36:48 +0800
Subject: [PATCH] 系统区分BUG修复

---
 fanli/src/main/java/com/yeshi/fanli/service/impl/brand/BrandInfoServiceImpl.java |   88 +++++++++++++++++++++++++------------------
 1 files changed, 51 insertions(+), 37 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/brand/BrandInfoServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/brand/BrandInfoServiceImpl.java
index 5bae6ea..7977663 100644
--- a/fanli/src/main/java/com/yeshi/fanli/service/impl/brand/BrandInfoServiceImpl.java
+++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/brand/BrandInfoServiceImpl.java
@@ -8,6 +8,8 @@
 
 import javax.annotation.Resource;
 
+import com.yeshi.fanli.entity.SystemEnum;
+import org.omg.PortableInterceptor.SYSTEM_EXCEPTION;
 import org.springframework.cache.annotation.Cacheable;
 import org.springframework.core.task.TaskExecutor;
 import org.springframework.stereotype.Service;
@@ -33,9 +35,11 @@
 import com.yeshi.fanli.service.inter.brand.BrandShopCaheService;
 import com.yeshi.fanli.service.inter.goods.TaoBaoGoodsBriefService;
 import com.yeshi.fanli.service.inter.lable.QualityGoodsService;
+import com.yeshi.fanli.service.inter.order.OrderHongBaoMoneyComputeService;
 import com.yeshi.fanli.service.inter.order.config.HongBaoManageService;
 import com.yeshi.fanli.service.inter.taobao.TaoBaoGoodsUpdateService;
 import com.yeshi.fanli.util.Constant;
+import com.yeshi.fanli.util.FilePathEnum;
 import com.yeshi.fanli.util.StringUtil;
 import com.yeshi.fanli.util.factory.goods.GoodsDetailVOFactory;
 import com.yeshi.fanli.vo.brand.BrandInfoVO;
@@ -49,22 +53,10 @@
 	private BrandInfoMapper brandInfoMapper;
 
 	@Resource
-	private HongBaoManageService hongBaoManageService;
-
-	@Resource
-	private QualityGoodsService qualityGoodsService;
-
-	@Resource
-	private TaoBaoGoodsBriefService taoBaoGoodsBriefService;
-
-	@Resource
-	private TaoBaoGoodsUpdateService taoBaoGoodsUpdateService;
+	private OrderHongBaoMoneyComputeService orderHongBaoMoneyComputeService;
 
 	@Resource
 	private BrandClassShopService brandClassShopService;
-
-	@Resource
-	private BrandShopCaheDao brandShopCaheDao;
 
 	@Resource
 	private BrandGoodsCaheService brandGoodsCaheService;
@@ -181,7 +173,7 @@
 			executor.execute(new Runnable() {
 				@Override
 				public void run() {
-					BrandInfo numInfo = brandGoodsCaheService.addBrandGoods(record);
+					BrandInfo numInfo = brandGoodsCaheService.addBrandGoods(record, SystemEnum.blks);
 
 					BrandInfo update = new BrandInfo();
 					update.setId(record.getId());
@@ -201,20 +193,42 @@
 	 * @throws Exception
 	 */
 	public String uploadPicture(MultipartFile file) throws Exception {
-
 		// 鏂囦欢瑙f瀽
 		InputStream inputStream = file.getInputStream();
 		String contentType = file.getContentType();
 		String type = contentType.substring(contentType.indexOf("/") + 1);
 
 		// 鏂囦欢璺緞
-		String filePath = "/img/brand/" + UUID.randomUUID().toString().replace("-", "") + "." + type;
+		String filePath = FilePathEnum.brand.getPath() + UUID.randomUUID().toString().replace("-", "") + "." + type;
 		// 鎵ц涓婁紶
-		String fileLink = COSManager.getInstance().uploadFile(inputStream, filePath).getUrl();
-
-		return fileLink;
+		return COSManager.getInstance().uploadFile(inputStream, filePath).getUrl();
 	}
 
+	
+	@Override
+	public void switchState(Long id) throws BrandInfoException {
+		if (id == null) {
+			throw new BrandInfoException(1, "璇蜂紶閫掓纭弬鏁�");
+		}
+		BrandInfo resultObj = brandInfoMapper.selectByPrimaryKey(id);
+		if (resultObj == null) {
+			throw new BrandInfoException(1, "姝ゅ唴瀹瑰凡涓嶅瓨鍦�");
+		}
+		
+		Integer state = resultObj.getState();
+		if (state == null || state == 0) {
+			state = 1;
+		} else {
+			state = 0;
+		}
+		
+		BrandInfo updateObj = new BrandInfo();
+		updateObj.setId(id);
+		updateObj.setState(state);
+		brandInfoMapper.updateByPrimaryKeySelective(updateObj);
+	}
+	
+	
 	@Override
 	public int deleteBatchByPrimaryKey(List<Long> list) {
 		executor.execute(new Runnable() {
@@ -272,10 +286,10 @@
 
 	@Override
 	@Cacheable(value = "brandCache", key = "'listValidBrandInfoCache-'+#cid")
-	public List<BrandInfo> listValidBrandInfoCache(Long cid) {
+	public List<BrandInfo> listValidBrandInfoCache(Long cid,SystemEnum system) {
 		List<BrandInfo> listInfo = new ArrayList<BrandInfo>();
 
-		List<TaoBaoShop> listShop = brandClassShopService.listEffectiveClassShop(cid);
+		List<TaoBaoShop> listShop = brandClassShopService.listEffectiveClassShop(cid,system);
 		if (listShop == null || listShop.size() == 0)
 			return listInfo;
 		for (TaoBaoShop taoBaoShop : listShop) {
@@ -289,11 +303,11 @@
 	}
 
 	@Override
-	@Cacheable(value = "brandCache", key = "'listBrandInfoCache-'+#start+'-'+#start +'-'+#cid+'-'+#platform+'-'+#version")
-	public List<BrandInfoVO> listBrandInfoCache(long start, int count, Long cid, String platform, String version) {
+	@Cacheable(value = "brandCache", key = "'listBrandInfoCache-'+#start+'-'+#start +'-'+#cid+'-'+#platform+'-'+#version+'-'+#system")
+	public List<BrandInfoVO> listBrandInfoCache(long start, int count, Long cid, String platform, String version,SystemEnum system) {
 		List<BrandInfoVO> listInfo = new ArrayList<BrandInfoVO>();
 
-		List<TaoBaoShopVO> listShop = brandClassShopService.listEffectiveShop(start, count, cid, platform, version);
+		List<TaoBaoShopVO> listShop = brandClassShopService.listEffectiveShop(start, count, cid, platform, version,system);
 		if (listShop == null || listShop.size() == 0)
 			return listInfo;
 
@@ -386,7 +400,7 @@
 				if (StringUtil.isNullOrEmpty(name) && StringUtil.isNullOrEmpty(searchKey))
 					continue;
 				// 娣诲姞鍟嗗搧
-				BrandInfo numInfo = brandGoodsCaheService.addBrandGoods(brandInfo);
+				BrandInfo numInfo = brandGoodsCaheService.addBrandGoods(brandInfo, SystemEnum.blks);
 
 				BrandInfo updateInfo = new BrandInfo();
 				updateInfo.setId(brandInfo.getId());
@@ -408,26 +422,26 @@
 	}
 
 	@Override
-	public long countValidByCidToApp(Long cid) {
-		return brandInfoMapper.countValidByCidToApp(cid);
+	public long countValidByCidToApp(Long cid, SystemEnum system) {
+		return brandInfoMapper.countValidByCidToApp(cid,system);
 	}
 
 	@Override
-	@Cacheable(value = "brandCache", key = "'listValidByCidToApp-'+#cid")
-	public List<BrandInfo> listValidByCidToApp(Long cid) {
+	@Cacheable(value = "brandCache", key = "'listValidByCidToApp-'+#cid+'-'+#system")
+	public List<BrandInfo> listValidByCidToApp(Long cid, SystemEnum system) {
 		if (cid == null)
 			return null;
-		return brandInfoMapper.listValidByCidToApp(cid);
+		return brandInfoMapper.listValidByCidToApp(cid,system);
 	}
 
-	@Cacheable(value = "brandCache", key = "'listValidToApp-'+#start+'-'+#cid")
+	@Cacheable(value = "brandCache", key = "'listValidToApp-'+#start+'-'+#cid+'-'+#system")
 	@Override
-	public List<BrandInfoVO> listValidToApp(long start, int count, Long cid, String platform, String version) {
-		List<BrandInfoVO> list = brandInfoMapper.listBrandInfoVO(start, count, cid);
+	public List<BrandInfoVO> listValidToApp(long start, int count, Long cid, String platform, String version,SystemEnum system) {
+		List<BrandInfoVO> list = brandInfoMapper.listBrandInfoVO(start, count, cid,system);
 		if (list == null || list.size() == 0)
 			return null;
 
-		ConfigParamsDTO configParamsDTO = hongBaoManageService.getShowComputeRate(platform, version);
+		ConfigParamsDTO configParamsDTO = orderHongBaoMoneyComputeService.getShowComputeRate(platform, version,system);
 
 		List<BrandInfoVO> listInfo = new ArrayList<BrandInfoVO>();
 		for (int i = 0; i < list.size(); i++) {
@@ -469,8 +483,8 @@
 	}
 
 	@Override
-	@Cacheable(value = "brandCache", key = "'listByAlikeName-'+#key+'-'+#platform+'-'+#version")
-	public BrandInfoVO listByAlikeName(String key, String platform, String version) {
+	@Cacheable(value = "brandCache", key = "'listByAlikeName-'+#key+'-'+#platform+'-'+#version+'-'+#system")
+	public BrandInfoVO listByAlikeName(String key, String platform, String version,SystemEnum system) {
 		if (StringUtil.isNullOrEmpty(key))
 			return null;
 
@@ -478,7 +492,7 @@
 		if (list == null || list.size() == 0)
 			return null;
 
-		ConfigParamsDTO configParamsDTO = hongBaoManageService.getShowComputeRate(platform, version);
+		ConfigParamsDTO configParamsDTO = orderHongBaoMoneyComputeService.getShowComputeRate(platform, version, system);
 
 		BrandInfoVO brand = list.get(0);
 		List<BrandGoodsCahe> listGoods = brandGoodsCaheService.getByBrandId(1, 3, brand.getId());

--
Gitblit v1.8.0