From 0d2203b4027ae3bf524d63da67202e778648e4cf Mon Sep 17 00:00:00 2001 From: jinlin <jinlin> Date: 星期五, 02 八月 2024 09:59:20 +0800 Subject: [PATCH] 修改 --- modules/mainPart/src/main/java/com/zt/life/modules/mainPart/basicInfo/service/XhProductModelService.java | 184 ++++++++++++++++++++++++++++------------------ 1 files changed, 112 insertions(+), 72 deletions(-) diff --git a/modules/mainPart/src/main/java/com/zt/life/modules/mainPart/basicInfo/service/XhProductModelService.java b/modules/mainPart/src/main/java/com/zt/life/modules/mainPart/basicInfo/service/XhProductModelService.java index af6fbf1..590b0c6 100644 --- a/modules/mainPart/src/main/java/com/zt/life/modules/mainPart/basicInfo/service/XhProductModelService.java +++ b/modules/mainPart/src/main/java/com/zt/life/modules/mainPart/basicInfo/service/XhProductModelService.java @@ -8,15 +8,12 @@ import com.zt.common.utils.TreeUtils; import com.zt.common.utils.UUIDUtil; import com.zt.core.shiro.ImportUtil; -import com.zt.life.core.model.ZtProduct; import com.zt.life.modules.mainPart.basicInfo.dao.XhProductModelDao; import com.zt.life.modules.mainPart.basicInfo.model.ParamData; import com.zt.life.modules.mainPart.basicInfo.model.ProductImg; import com.zt.life.modules.mainPart.basicInfo.model.XhProductModel; import com.zt.life.modules.mainPart.sysPictureBase.service.SysPictureBaseService; import com.zt.modules.sys.dto.DictTypeDto; -import com.zt.modules.sys.model.SysDictData; -import com.zt.modules.sys.model.SysDictType; import org.apache.commons.lang3.StringUtils; import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.ss.usermodel.Row; @@ -28,11 +25,7 @@ import com.zt.common.db.query.QueryFilter; import org.springframework.web.multipart.MultipartFile; -import java.text.DateFormat; -import java.text.SimpleDateFormat; import java.util.*; -import java.util.regex.Pattern; -import java.util.stream.Collectors; /** @@ -68,23 +61,43 @@ super.deleteLogic(ids); } - public List<XhProductModel> getAllTree(Boolean showXdy, Integer ztShow) { + public List<XhProductModel> getAllTree(Boolean showXdy, Integer ztShow, Long productId) { List<XhProductModel> productList = null; if (showXdy) { - productList = baseDao.selectList(new QueryWrapper<XhProductModel>().eq(Constant.TableColumn.IS_DELETE, - Constant.Bool.NO).lt("product_type", 5).orderByAsc(Constant.TableColumn.SORT)); - } else { - if (ztShow == 1) { + if (productId != null) { productList = baseDao.selectList(new QueryWrapper<XhProductModel>().eq(Constant.TableColumn.IS_DELETE, - Constant.Bool.NO).lt("product_type", 5).ne("product_type", 10).orderByAsc(Constant.TableColumn.SORT)); - } else if (ztShow == 2) { + Constant.Bool.NO).ne("product_type", 5).and(wrapper -> wrapper.eq("ship_id", productId).or().eq("id", productId)).orderByAsc(Constant.TableColumn.SORT)); + } else { productList = baseDao.selectList(new QueryWrapper<XhProductModel>().eq(Constant.TableColumn.IS_DELETE, - Constant.Bool.NO).lt("product_type", 4).ne("product_type", 10).orderByAsc(Constant.TableColumn.SORT)); - } else if (ztShow == 3) { - productList = baseDao.selectList(new QueryWrapper<XhProductModel>().eq(Constant.TableColumn.IS_DELETE, - Constant.Bool.NO).lt("product_type", 3).ne("product_type", 10).orderByAsc(Constant.TableColumn.SORT)); + Constant.Bool.NO).ne("product_type", 5).orderByAsc(Constant.TableColumn.SORT)); } - + } else { + if (productId == null) { + if (ztShow == 1) { + productList = baseDao.selectList(new QueryWrapper<XhProductModel>().eq(Constant.TableColumn.IS_DELETE, + Constant.Bool.NO).lt("product_type", 5).ne("product_type", 10).orderByAsc(Constant.TableColumn.SORT)); + } else if (ztShow == 2) { + productList = baseDao.selectList(new QueryWrapper<XhProductModel>().eq(Constant.TableColumn.IS_DELETE, + Constant.Bool.NO).lt("product_type", 4).ne("product_type", 10).orderByAsc(Constant.TableColumn.SORT)); + } else if (ztShow == 3) { + productList = baseDao.selectList(new QueryWrapper<XhProductModel>().eq(Constant.TableColumn.IS_DELETE, + Constant.Bool.NO).lt("product_type", 3).ne("product_type", 10).orderByAsc(Constant.TableColumn.SORT)); + } else if (ztShow == 4) { + productList = baseDao.selectList(new QueryWrapper<XhProductModel>().eq(Constant.TableColumn.IS_DELETE, + Constant.Bool.NO).lt("product_type", 5).ne("product_type", 1).orderByAsc(Constant.TableColumn.SORT)); + } else if (ztShow == 5) { + productList = baseDao.selectList(new QueryWrapper<XhProductModel>().eq(Constant.TableColumn.IS_DELETE, + Constant.Bool.NO).gt("product_type", 1).orderByAsc(Constant.TableColumn.SORT)); + } + } else { + if (ztShow == 4) { + productList = baseDao.selectList(new QueryWrapper<XhProductModel>().eq(Constant.TableColumn.IS_DELETE, + Constant.Bool.NO).lt("product_type", 5).ne("product_type", 1).and(wrapper -> wrapper.eq("ship_id", productId).or().eq("id", productId)).orderByAsc(Constant.TableColumn.SORT)); + } else if (ztShow == 5) { + productList = baseDao.selectList(new QueryWrapper<XhProductModel>().eq(Constant.TableColumn.IS_DELETE, + Constant.Bool.NO).gt("product_type", 1).and(wrapper -> wrapper.eq("ship_id", productId).or().eq("id", productId)).orderByAsc(Constant.TableColumn.SORT)); + } + } } return TreeUtils.build(productList); } @@ -129,8 +142,19 @@ repairType.put("鎸囨暟鍒嗗竷", 1); repairType.put("濞佸竷灏斿垎甯�", 2); Map<String, Integer> isOrNot = new HashMap<>(); - isOrNot.put("鏄�", 0); - isOrNot.put("鍚�", 1); + isOrNot.put("鏄�", 1); + isOrNot.put("鍚�", 0); + + //鑾峰彇鏄惁鏈夋暟鎹紝濡傛灉鏈夊垯鍒犻櫎鏁版嵁 + List<XhProductModel> productList = this.getByShipId(shipId); + List<ParamData> dataList = paramDataService.getByShipId(shipId); + if (productList.size() > 0) { + this.deleteByShipId(shipId); + } + if (dataList.size() > 0) { + paramDataService.deleteByShipId(shipId); + } + try { // 鑾峰彇瀵煎叆鏂囦欢鐨勫悗缂�鍚� String fileName = mutFile.getOriginalFilename(); @@ -150,8 +174,10 @@ Long xtId = null; Long fxtId = null; + //瀵煎叆棰勮鍙傛暟 ParamData itemEntity1 = new ParamData(); + itemEntity1.setShipId(shipId); itemEntity1.setProductId(shipId); itemEntity1.setPageCode("expect"); paramDataService.insert(itemEntity1); @@ -163,7 +189,6 @@ for (int j = 1; j <= num; j++) { CacheUtils.put(progressId, "speed", CommonUtils.getPercent(j, num)); CacheUtils.put(progressId, "msg", "鍏�" + num + "琛岋紝宸插畬鎴愮" + j + "琛�"); - DictTypeDto lifeManagement = new DictTypeDto(); boolean isToggleXt = false; boolean isToggleFxt = false; row1 = j + 1; @@ -194,54 +219,29 @@ } String sb = com.zt.core.shiro.ImportUtil.getCellValue(row, 3, pattern); //璁惧 - String reliabDistribType = com.zt.core.shiro.ImportUtil.getCellValue(row, 4, pattern); //鍙潬鎬у垎甯冪被鍨� - String basicJoinCompute = com.zt.core.shiro.ImportUtil.getCellValue(row, 5, pattern); //鍙傚姞璁$畻 - String basicMtbfRegulate = com.zt.core.shiro.ImportUtil.getCellValue(row, 6, pattern); //mtbf - String basicMtbfRegulSuccRate = com.zt.core.shiro.ImportUtil.getCellValue(row, 7, pattern); //鎴愬姛鐜� - String basicMtbfOperatingRatio = com.zt.core.shiro.ImportUtil.getCellValue(row, 8, pattern); //杩愯姣� - String taskMtbcfRegulate = com.zt.core.shiro.ImportUtil.getCellValue(row, 9, pattern); //mtbcf - String taskMtbcfOtherParams2 = com.zt.core.shiro.ImportUtil.getCellValue(row, 10, pattern); //mtbcf鍏朵粬鍙傛暟2 - String taskMtbcfOtherParams3 = com.zt.core.shiro.ImportUtil.getCellValue(row, 11, pattern); //mtbcf鍏朵粬鍙傛暟3 - String taskMtbcfRegulSuccRate = com.zt.core.shiro.ImportUtil.getCellValue(row, 12, pattern); //mtbcf鎴愬姛鐜� - String taskMtbcfOperatingRatio = com.zt.core.shiro.ImportUtil.getCellValue(row, 13, pattern); //mtbcf杩愯姣� - String repairable = com.zt.core.shiro.ImportUtil.getCellValue(row, 14, pattern); //鏄惁鍙淮淇� - String repairDistribType = com.zt.core.shiro.ImportUtil.getCellValue(row, 15, pattern); //缁翠慨鍙戝竷绫诲瀷 - String repairMttcr = com.zt.core.shiro.ImportUtil.getCellValue(row, 16, pattern); //mttcr - String repairMttcrOtherParams2 = com.zt.core.shiro.ImportUtil.getCellValue(row, 17, pattern); //mttcr鍏朵粬鍙傛暟2 - String repairMttcrOtherParams3 = com.zt.core.shiro.ImportUtil.getCellValue(row, 18, pattern); //mttcr鍏朵粬鍙傛暟3 + String equipType = com.zt.core.shiro.ImportUtil.getCellValue(row, 4, pattern); //璁惧绫诲瀷 + String reliabDistribType = com.zt.core.shiro.ImportUtil.getCellValue(row, 5, pattern); //鍙潬鎬у垎甯冪被鍨� + String basicJoinCompute = com.zt.core.shiro.ImportUtil.getCellValue(row, 6, pattern); //鍙傚姞璁$畻 + String basicMtbfRegulate = com.zt.core.shiro.ImportUtil.getCellValue(row, 7, pattern); //mtbf + String basicMtbfRegulSuccRate = com.zt.core.shiro.ImportUtil.getCellValue(row, 8, pattern); //鎴愬姛鐜� + String basicMtbfOperatingRatio = com.zt.core.shiro.ImportUtil.getCellValue(row, 9, pattern); //杩愯姣� + String taskMtbcfRegulate = com.zt.core.shiro.ImportUtil.getCellValue(row, 10, pattern); //mtbcf + String taskMtbcfOtherParams2 = com.zt.core.shiro.ImportUtil.getCellValue(row, 11, pattern); //mtbcf鍏朵粬鍙傛暟2 + String taskMtbcfOtherParams3 = com.zt.core.shiro.ImportUtil.getCellValue(row, 12, pattern); //mtbcf鍏朵粬鍙傛暟3 + String taskMtbcfRegulSuccRate = com.zt.core.shiro.ImportUtil.getCellValue(row, 13, pattern); //mtbcf鎴愬姛鐜� + String taskMtbcfOperatingRatio = com.zt.core.shiro.ImportUtil.getCellValue(row, 14, pattern); //mtbcf杩愯姣� + String repairable = com.zt.core.shiro.ImportUtil.getCellValue(row, 15, pattern); //鏄惁鍙淮淇� + String repairDistribType = com.zt.core.shiro.ImportUtil.getCellValue(row, 16, pattern); //缁翠慨鍙戝竷绫诲瀷 + String repairMttcr = com.zt.core.shiro.ImportUtil.getCellValue(row, 17, pattern); //mttcr + String repairMttcrOtherParams2 = com.zt.core.shiro.ImportUtil.getCellValue(row, 18, pattern); //mttcr鍏朵粬鍙傛暟2 + String repairMttcrOtherParams3 = com.zt.core.shiro.ImportUtil.getCellValue(row, 19, pattern); //mttcr鍏朵粬鍙傛暟3 if (StringUtils.isEmpty(sb)) { com.zt.life.util.ImportUtil.updateErrMap(errMap, "娌℃湁濉啓璁惧鍚嶇О", sheetName, row1); continue; } - if (StringUtils.isEmpty(reliabDistribType)) { - com.zt.life.util.ImportUtil.updateErrMap(errMap, "娌℃湁濉啓鍙潬鎬у垎甯冪被鍨�", sheetName, row1); - continue; - } - if (StringUtils.isEmpty(basicJoinCompute)) { - com.zt.life.util.ImportUtil.updateErrMap(errMap, "娌℃湁濉啓鏄惁鍙傚姞璁$畻", sheetName, row1); - continue; - } - if (StringUtils.isEmpty(basicMtbfRegulate)) { - com.zt.life.util.ImportUtil.updateErrMap(errMap, "娌℃湁濉啓mtbf", sheetName, row1); - continue; - } - if (StringUtils.isEmpty(taskMtbcfRegulate)) { - com.zt.life.util.ImportUtil.updateErrMap(errMap, "娌℃湁濉啓mtbcf", sheetName, row1); - continue; - } - if (StringUtils.isEmpty(repairable)) { - com.zt.life.util.ImportUtil.updateErrMap(errMap, "娌℃湁濉啓鏄惁鍙淮淇�", sheetName, row1); - continue; - } - if (StringUtils.isNotBlank(repairable) && StringUtils.isEmpty(repairDistribType)) { - com.zt.life.util.ImportUtil.updateErrMap(errMap, "鏈夋湭濉啓鐨勭淮淇垎甯冪被鍨�", sheetName, row1); - continue; - } - //瀵煎叆鍨嬪彿浜у搧缁撴灉搴� XhProductModel xhProductModel = new XhProductModel(); - Long defultImg = null; xhProductModel.setShipId(shipId); @@ -259,6 +259,7 @@ //瀵煎叆棰勮鍙傛暟 ParamData itemEntity = new ParamData(); + itemEntity.setShipId(shipId); itemEntity.setProductId(xtId); itemEntity.setPageCode("expect"); paramDataService.insert(itemEntity); @@ -277,6 +278,7 @@ //瀵煎叆棰勮鍙傛暟 ParamData itemEntity = new ParamData(); + itemEntity.setShipId(shipId); itemEntity.setProductId(fxtId); itemEntity.setPageCode("expect"); paramDataService.insert(itemEntity); @@ -290,6 +292,7 @@ } xhProductModel.setId(sbId); xhProductModel.setName(sb); + xhProductModel.setEquipType(equipType); xhProductModel.setProductType("5"); xhProductModel.setSort(Integer.valueOf(sort)); defultImg = sysPictureBaseService.getDefaultImg(5).getId(); @@ -299,21 +302,50 @@ //瀵煎叆棰勮鍙傛暟 ParamData itemEntity = new ParamData(); //缁戝畾璁惧ID + itemEntity.setShipId(shipId); itemEntity.setProductId(sbId); itemEntity.setPageCode("expect"); itemEntity.setReliabDistribType(reliabType.get(reliabDistribType)); itemEntity.setBasicJoinCompute(isOrNot.get(basicJoinCompute)); - itemEntity.setBasicMtbfRegulate(basicMtbfRegulate); - itemEntity.setBasicMtbfRegulSuccRate(basicMtbfRegulSuccRate); - itemEntity.setBasicMtbfOperatingRatio(basicMtbfOperatingRatio); - itemEntity.setTaskMtbcfRegulate(taskMtbcfRegulate); - itemEntity.setTaskMtbcfOtherParams(taskMtbcfOtherParams2 + "," + taskMtbcfOtherParams3); - itemEntity.setTaskMtbcfRegulSuccRate(taskMtbcfRegulSuccRate); - itemEntity.setTaskMtbcfOperatingRatio(taskMtbcfOperatingRatio); + if (StringUtils.isNotBlank(basicMtbfRegulate)) { + itemEntity.setBasicMtbfRegulate(Double.valueOf(basicMtbfRegulate)); + } + if (StringUtils.isNotBlank(basicMtbfRegulSuccRate)) { + itemEntity.setBasicMtbfRegulSuccRate(Double.valueOf(basicMtbfRegulSuccRate)); + } + if (StringUtils.isNotBlank(basicMtbfOperatingRatio)) { + itemEntity.setBasicMtbfOperatingRatio(Double.valueOf(basicMtbfOperatingRatio)); + } else { + itemEntity.setBasicMtbfOperatingRatio(1.0); + } + if (StringUtils.isNotBlank(taskMtbcfRegulate)) { + itemEntity.setTaskMtbcfRegulate(Double.valueOf(taskMtbcfRegulate)); + } + if (StringUtils.isNotBlank(taskMtbcfOtherParams2)) { + itemEntity.setTaskMtbcfOtherParams2(Double.valueOf(taskMtbcfOtherParams2)); + } + if (StringUtils.isNotBlank(taskMtbcfOtherParams3)) { + itemEntity.setTaskMtbcfOtherParams3(Double.valueOf(taskMtbcfOtherParams3)); + } + if (StringUtils.isNotBlank(taskMtbcfRegulSuccRate)) { + itemEntity.setTaskMtbcfRegulSuccRate(Double.valueOf(taskMtbcfRegulSuccRate)); + } + if (StringUtils.isNotBlank(taskMtbcfOperatingRatio)) { + itemEntity.setTaskMtbcfOperatingRatio(Double.valueOf(taskMtbcfOperatingRatio)); + } else { + itemEntity.setTaskMtbcfOperatingRatio(1.0); + } itemEntity.setRepairable(isOrNot.get(repairable)); itemEntity.setRepairDistribType(repairType.get(repairDistribType)); - itemEntity.setRepairMttcr(repairMttcr); - itemEntity.setRepairMttcrOtherParams(repairMttcrOtherParams2 + "," + repairMttcrOtherParams3); + if (StringUtils.isNotBlank(repairMttcr)) { + itemEntity.setRepairMttcr(Double.valueOf(repairMttcr)); + } + if (StringUtils.isNotBlank(repairMttcrOtherParams2)) { + itemEntity.setRepairMttcrOtherParams2(Double.valueOf(repairMttcrOtherParams2)); + } + if (StringUtils.isNotBlank(repairMttcrOtherParams3)) { + itemEntity.setRepairMttcrOtherParams3(Double.valueOf(repairMttcrOtherParams3)); + } paramDataService.insert(itemEntity); } } @@ -342,4 +374,12 @@ list.add(errMap); return list; } + + private void deleteByShipId(Long shipId) { + baseDao.deleteByShipId(shipId); + } + + private List<XhProductModel> getByShipId(Long shipId) { + return baseDao.getByShipId(shipId); + } } -- Gitblit v1.9.1