From cb8b63f271980ccf5dfb1bfcb3a77ec14a26fd5b Mon Sep 17 00:00:00 2001 From: 李林 <z1292839451@163.com> Date: 星期三, 10 四月 2024 09:46:43 +0800 Subject: [PATCH] 删除多余文件 --- inspect-server/src/main/java/com/yuanchu/mom/service/impl/InsOrderPlanServiceImpl.java | 209 ++++++++++++++++++++++++++++++++++++++++----------- 1 files changed, 162 insertions(+), 47 deletions(-) diff --git a/inspect-server/src/main/java/com/yuanchu/mom/service/impl/InsOrderPlanServiceImpl.java b/inspect-server/src/main/java/com/yuanchu/mom/service/impl/InsOrderPlanServiceImpl.java index b370cb7..b04240e 100644 --- a/inspect-server/src/main/java/com/yuanchu/mom/service/impl/InsOrderPlanServiceImpl.java +++ b/inspect-server/src/main/java/com/yuanchu/mom/service/impl/InsOrderPlanServiceImpl.java @@ -13,13 +13,17 @@ import com.deepoove.poi.XWPFTemplate; import com.deepoove.poi.config.Configure; import com.deepoove.poi.config.ConfigureBuilder; +import com.deepoove.poi.data.*; +import com.deepoove.poi.data.style.TableStyle; +import com.deepoove.poi.render.Render; +import com.spire.doc.Table; import com.yuanchu.mom.common.GetLook; import com.yuanchu.mom.common.PrintChina; import com.yuanchu.mom.dto.InsOrderPlanDTO; import com.yuanchu.mom.dto.SampleProductDto; -import com.yuanchu.mom.exception.ErrorException; import com.yuanchu.mom.mapper.*; import com.yuanchu.mom.pojo.*; +import com.yuanchu.mom.exception.ErrorException; import com.yuanchu.mom.service.InsOrderPlanService; import com.yuanchu.mom.service.InsOrderService; import com.yuanchu.mom.service.StandardTemplateService; @@ -36,10 +40,14 @@ import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Paths; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; import java.util.*; import java.util.stream.Collectors; +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.atomic.AtomicInteger; /** * 妫�楠屼换鍔�-涓氬姟瀹炵幇灞� @@ -73,6 +81,9 @@ @Resource private InsReportMapper insReportMapper; + + @Resource + private InsProductResultMapper insProductResultMapper; @Override public Map<String, Object> selectInsOrderPlanList(Page page, InsOrderPlanDTO insOrderPlanDTO) { @@ -116,53 +127,83 @@ List<SampleProductDto> list = JSON.parseArray(JSON.toJSONString(map.get("sampleProduct")), SampleProductDto.class); for (SampleProductDto samples : list) { if (BeanUtil.isEmpty(samples.getInsProduct())) continue; - for (InsProduct product : samples.getInsProduct()) { - if (product.getTemplateId() == null) { - product.setTemplate(new ArrayList<>()); - continue; - } - if (set.add(product.getTemplateId())) { - map2.put(product.getTemplateId(), standardTemplateService.getStandTempThingById(product.getTemplateId()) + ""); - } - String thing = map2.get(product.getTemplateId()); - if (StrUtil.isNotEmpty(thing)) { - JSONObject sheet = JSON.parseObject(JSON.toJSONString(JSON.parseArray(JSON.toJSONString(JSON.parseObject(thing).get("data"))).get(0))); - JSONObject config = JSON.parseObject(JSON.toJSONString(sheet.get("config"))); - List<JSONObject> cellData = JSON.parseArray(JSON.toJSONString(sheet.get("celldata")), JSONObject.class); - List<JSONObject> tableData = new ArrayList<>(); - Map<String, Object> style = new HashMap<>(); -// style.put("borderInfo", config.get("borderInfo")); - style.put("rowlen", config.get("rowlen")); - style.put("columnlen", config.get("columnlen")); - int r = -1; - if (BeanUtil.isNotEmpty(cellData)) { - for (JSONObject o : cellData) { - JSONObject v = JSON.parseObject(JSON.toJSONString(o.get("v"))); - if (BeanUtil.isNotEmpty(v.get("ps"))) { - JSONObject ps = JSON.parseObject(JSON.toJSONString(v.get("ps"))); - if (ps.get("value").equals("妫�楠岄」") && v.get("v").equals(product.getInspectionItem())) { - tableData.add(o); - r = Integer.parseInt(o.get("r") + ""); - continue; - } - } - if (tableData.size() > 0) { - if (Integer.parseInt(o.get("r") + "") == r + 1 || Integer.parseInt(o.get("r") + "") == r) { - r = Integer.parseInt(o.get("r") + ""); - tableData.add(o); - } else { - break; - } - } - } - } - product.setTemplate(tableData); - product.setStyle(style); - } - } + getTemplateThing(set, map2, samples); } map.put("sampleProduct", list); return map; + } + + @Override + @Transactional(rollbackFor = Exception.class) + public void saveInsContext(Map<String, Object> insContext) { + Integer userId = getLook.selectPowerByMethodAndUserId(null).get("userId"); + CompletableFuture.supplyAsync(() -> { + AtomicInteger count = new AtomicInteger(); + insContext.forEach((k, v) -> { + JSONObject jo = JSON.parseObject(JSON.toJSONString(v)); + InsProduct insProduct = new InsProduct(); + insProduct.setId(Integer.parseInt(k)); + InsProductResult result = insProductResultMapper.selectOne(Wrappers.<InsProductResult>lambdaQuery().eq(InsProductResult::getInsProductId, insProduct.getId())); + if (BeanUtil.isEmpty(result)) { + result = new InsProductResult(); + } + result.setInsProductId(Integer.parseInt(k)); + JSONArray jsonArray = JSON.parseArray(JSON.toJSONString(jo.get("insValue"))); + List<Map<String, Object>> iv = new ArrayList<>(); + for (Object o : jsonArray) { + JSONObject insValue = JSON.parseObject(JSON.toJSONString(o)); + Map<String, Object> map = new HashMap<>(); + map.put("v", JSON.parseObject(JSON.toJSONString(insValue.get("v"))).get("v")); + if ((insValue.get("u") == null || insValue.get("u").equals("")) && StrUtil.isNotEmpty(JSON.parseObject(JSON.toJSONString(insValue.get("v"))).get("v").toString())) { + map.put("u", userId); + }else { + map.put("u", insValue.get("u")); + } + iv.add(map); + } + result.setInsValue(JSON.toJSONString(iv)); + JSONArray jsonArray2 = JSON.parseArray(JSON.toJSONString(jo.get("comValue"))); + List<Map<String, Object>> cv = new ArrayList<>(); + for (Object o : jsonArray2) { + JSONObject comValue = JSON.parseObject(JSON.toJSONString(o)); + Map<String, Object> map = new HashMap<>(); + map.put("v", JSON.parseObject(JSON.toJSONString(comValue.get("v"))).get("v")); + cv.add(map); + } + result.setComValue(JSON.toJSONString(cv)); + JSONObject resValue = JSON.parseObject(JSON.toJSONString(jo.get("resValue"))); + insProduct.setLastValue(JSON.parseObject(JSON.toJSONString(resValue.get("v"))).get("v") + ""); + JSONObject equipValue = JSON.parseObject(JSON.toJSONString(jo.get("equipValue"))); + try { + result.setEquipValue(JSON.parseObject(JSON.toJSONString(equipValue.get("v"))).get("v") + ""); + }catch (Exception ignored){ + result.setEquipValue(null); + } + JSONObject insResult = JSON.parseObject(JSON.toJSONString(jo.get("insResult"))); + insProduct.setInsResult(Integer.parseInt(JSON.parseObject(JSON.toJSONString(insResult.get("v"))).get("v") + "")); + if (BeanUtil.isEmpty(result.getId())) { + result.setCreateUser(userId); + result.setUpdateUser(userId); + insProductResultMapper.insert(result); + } else { + result.setUpdateUser(userId); + result.setUpdateTime(LocalDateTime.now()); + insProductResultMapper.updateById(result); + } + insProduct.setUpdateUser(userId); + insProductMapper.updateById(insProduct); + if(count.get() == 0){ + InsSample insSample = insSampleMapper.selectById(insProductMapper.selectById(insProduct.getId()).getInsSampleId()); + insSample.setInsState(1); + count.addAndGet(1); + } + }); + return null; + }).thenAccept(res -> { + }).exceptionally(e -> { + e.printStackTrace(); + return null; + }); } @Override @@ -185,7 +226,35 @@ InsOrder insOrder = insOrderMapper.selectById(orderId); Map<String, String> user = insProductMapper.selectUserById(insOrder.getUserId()); List<SampleProductDto> samples = insSampleMapper.selectSampleProductListByOrderId(orderId); - samples.forEach(System.out::println); + Set<Integer> set = new HashSet<>(); + Map<Integer, String> map2 = new HashMap<>(); + samples.forEach(a->{ + getTemplateThing(set, map2, a); + TableRenderData tableRenderData = new TableRenderData(); + TableStyle tableStyle = new TableStyle(); + tableStyle.setWidth("14.63"); + tableRenderData.setTableStyle(tableStyle); + a.getInsProduct().forEach(b->{ + System.out.println(b.getTemplate()); + System.out.println(b.getStyle()); + RowRenderData rowRenderData = new RowRenderData(); + CellRenderData cellRenderData = new CellRenderData(); + for (JSONObject jo1 : b.getTemplate()) { + ParagraphRenderData paragraphRenderData = new ParagraphRenderData(); + List<RenderData> contents = new ArrayList<>(); + /*if(Integer.parseInt(jo1.get("r")+"") == r){ + if(Integer.parseInt(jo1.get("r")+"") == c){ + JSONObject jo2 = JSONObject.parseObject(JSONObject.toJSONString(jo1.get("v"))); + TextRenderData textRenderData = new TextRenderData(); + textRenderData.setText(jo2.get("v")+""); + contents.add(textRenderData); + paragraphRenderData.setContents(contents); + } + }else if (Integer.parseInt(jo1.get("r")+"") > r){ + }*/ + } + }); + }); InsReport insReport = new InsReport(); insReport.setCode(giveCode.giveCode("JCZX/TX-", "ins_report", "-", "yyMMdd")); insReport.setInsOrderId(orderId); @@ -205,7 +274,7 @@ }}); try { String name = LocalDateTime.now().format(DateTimeFormatter.ofPattern("yy_MM_dd_HH_mm_ss")) + ".docx"; - template.writeAndClose(new FileOutputStream(wordUrl + "/" + name)); + template.writeAndClose(Files.newOutputStream(Paths.get(wordUrl + "/" + name))); insReport.setUrl("/word/"+ name); insReportMapper.insert(insReport); } catch (IOException e) { @@ -215,6 +284,52 @@ return 1; } + private void getTemplateThing(Set<Integer> set, Map<Integer, String> map2, SampleProductDto a) { + for (InsProduct product : a.getInsProduct()) { + if (product.getTemplateId() == null) { + product.setTemplate(new ArrayList<>()); + continue; + } + if (set.add(product.getTemplateId())) { + map2.put(product.getTemplateId(), standardTemplateService.getStandTempThingById(product.getTemplateId()) + ""); + } + String thing = map2.get(product.getTemplateId()); + if (StrUtil.isNotEmpty(thing)) { + JSONObject sheet = JSON.parseObject(JSON.toJSONString(JSON.parseArray(JSON.toJSONString(JSON.parseObject(thing).get("data"))).get(0))); + JSONObject config = JSON.parseObject(JSON.toJSONString(sheet.get("config"))); + List<JSONObject> cellData = JSON.parseArray(JSON.toJSONString(sheet.get("celldata")), JSONObject.class); + List<JSONObject> tableData = new ArrayList<>(); + Map<String, Object> style = new HashMap<>(); + style.put("rowlen", config.get("rowlen")); + style.put("columnlen", config.get("columnlen")); + int r = -1; + if (BeanUtil.isNotEmpty(cellData)) { + for (JSONObject o : cellData) { + JSONObject v = JSON.parseObject(JSON.toJSONString(o.get("v"))); + if (BeanUtil.isNotEmpty(v.get("ps"))) { + JSONObject ps = JSON.parseObject(JSON.toJSONString(v.get("ps"))); + if (ps.get("value").equals("妫�楠岄」") && v.get("v").equals(product.getInspectionItem())) { + tableData.add(o); + r = Integer.parseInt(o.get("r") + ""); + continue; + } + } + if (tableData.size() > 0) { + if ((Integer.parseInt(o.get("r") + "") == r + 1 || Integer.parseInt(o.get("r") + "") == r) && !(o.get("v") + "").equals("{\"ht\":\"0\"}")) { + r = Integer.parseInt(o.get("r") + ""); + tableData.add(o); + } else { + break; + } + } + } + } + product.setTemplate(tableData); + product.setStyle(style); + } + } + } + @Override public int submitPlan(Integer orderId, String laboratory) { List<InsSample> insSamples = insSampleMapper.selectList(Wrappers.<InsSample>lambdaQuery().eq(InsSample::getInsOrderId, orderId).select(InsSample::getId)); -- Gitblit v1.9.3