From 573c491b4a1ba60e12a5678a01c1546c0077c1ee Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期二, 30 七月 2019 09:07:42 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- fanli/src/main/java/com/yeshi/fanli/service/impl/lable/LabelServiceImpl.java | 76 +++++++++++++++++++++++++++++--------- 1 files changed, 58 insertions(+), 18 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/lable/LabelServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/lable/LabelServiceImpl.java index fcdaf4d..5da3b12 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/impl/lable/LabelServiceImpl.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/lable/LabelServiceImpl.java @@ -1,6 +1,7 @@ package com.yeshi.fanli.service.impl.lable; import java.io.InputStream; +import java.util.ArrayList; import java.util.Date; import java.util.HashSet; import java.util.List; @@ -9,14 +10,12 @@ import java.util.UUID; import javax.annotation.Resource; -import javax.transaction.Transactional; - -import jxl.Sheet; -import jxl.Workbook; import org.springframework.cache.annotation.Cacheable; import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; import org.springframework.web.multipart.MultipartFile; +import org.yeshi.utils.tencentcloud.COSManager; import com.yeshi.fanli.dao.mybatis.lable.LabelClassMapper; import com.yeshi.fanli.dao.mybatis.lable.LabelGoodsMapper; @@ -25,18 +24,17 @@ import com.yeshi.fanli.entity.bus.lable.LabelGoods; import com.yeshi.fanli.entity.common.AdminUser; import com.yeshi.fanli.exception.LabelException; -import com.yeshi.fanli.log.LogHelper; import com.yeshi.fanli.service.inter.lable.LabelService; import com.yeshi.fanli.util.StringUtil; -import org.yeshi.utils.tencentcloud.COSManager; + +import jxl.Sheet; +import jxl.Workbook; @Service public class LabelServiceImpl implements LabelService { @Resource private LabelMapper labelMapper; - @Resource - private LabelService labelService; @Resource private LabelGoodsMapper labelGoodsMapper; @@ -91,7 +89,7 @@ // 涓婁紶鍥剧墖 if (file != null) { - labelService.uploadPicture(file, label); + uploadPicture(file, label); } @@ -139,7 +137,7 @@ Label label = labelMapper.selectByPrimaryKey(id); if (label != null) { // 鍒犻櫎鍥剧墖 - labelService.deleteImg(label); + deleteImg(label); // 鍒犻櫎鏁版嵁淇℃伅 labelMapper.deleteByPrimaryKey(id); @@ -158,14 +156,21 @@ @Override public List<Label> selectByTitle(String title) throws LabelException{ - LogHelper.test("鏌ヨ鏍囩锛� "+title); return labelMapper.selectByTitle(title); } + @Override - @Cacheable(value = "labelCache",key="'selectByTitleCache-'+#labKey +'-'+#title") - public List<Label> selectByTitleCache(String labKey, String title) throws LabelException{ - return selectByTitle(title); + @Cacheable(value = "labelCache",key="'getByTitleCache-'+#labKey +'-'+#title") + public Label getByTitleCache(String labKey, String title) throws LabelException{ + return labelMapper.getByTitle(title); + } + + + @Override + @Cacheable(value = "labelCache",key="'listByTitlesCache-'+#list") + public List<Label> listByTitlesCache(List<String> list){ + return labelMapper.listByTitles(list); } @@ -214,7 +219,7 @@ for (String title : titles) { - List<Label> labels = labelService.selectByTitle(title.trim()); + List<Label> labels = selectByTitle(title.trim()); // 鑻ュ凡瀛樺湪鍒欎笉瀛樺叆鏁版嵁搴� if (labels == null || labels.size() == 0) { Label label = new Label(); @@ -225,7 +230,7 @@ label.setUpdatetime(nowTime); label.setCreateUser(admin); - labelService.insertSelective(label); + insertSelective(label); } } @@ -265,7 +270,7 @@ label.setPicture(uploadFilePath); label.setUpdatetime(nowTime); - result = labelService.updateByPrimaryKeySelective(label); + result = updateByPrimaryKeySelective(label); } } @@ -294,7 +299,7 @@ label.setPicture(null); label.setUpdatetime(nowTime); // 鏇存柊鏁版嵁搴� - result = labelService.updateByPrimaryKey(label); + result = updateByPrimaryKey(label); } } @@ -353,5 +358,40 @@ return labelMapper.getByGoodsId(goodsId); } + @Override + public List<Label> addBatchByNames(String lableNames, AdminUser admin) throws LabelException{ + if (lableNames == null || lableNames.trim().length() == 0) { + return null; + } + + List<Label> listLabs = new ArrayList<Label>(); + // 绌烘牸闅斿紑 + String[] arrtitles = lableNames.split("\\s+"); + + for (String title : arrtitles) { + /* 閬嶅巻鏍囩鍚嶇О锛氭煡璇㈡暟鎹簱涓槸鍚﹀凡瀛樺湪 */ + List<Label> labels = selectByTitle(title.trim()); + if (labels != null && labels.size() > 0) { + Label label = labels.get(0); + listLabs.add(label); + } else { + // 鏂板 + Label label = new Label(); + label.setTitle(title);// 鍚嶇О + label.setEntrymode(Label.MODE_SYSTEM); // 鎵归噺褰曞叆 + label.setCreatetime(new Date()); + label.setUpdatetime(new Date()); + label.setCreateUser(admin); + label.setIosClick(0l); + label.setAndroidClick(0l); + insertSelective(label); + + listLabs.add(label); + } + } + + return listLabs; + } + } -- Gitblit v1.8.0