From 7ff5e9edadf446d0d033574a7b0ae802f5ac2233 Mon Sep 17 00:00:00 2001 From: cl <418351270@qq.com> Date: 星期六, 17 二月 2024 15:36:20 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- jcdm-main/src/main/java/com/jcdm/main/bs/formulaChild/controller/BsFormulaChildInfoController.java | 37 ++++++++++++++++++++++++++++++++++--- 1 files changed, 34 insertions(+), 3 deletions(-) diff --git a/jcdm-main/src/main/java/com/jcdm/main/bs/formulaChild/controller/BsFormulaChildInfoController.java b/jcdm-main/src/main/java/com/jcdm/main/bs/formulaChild/controller/BsFormulaChildInfoController.java index ba5c4d2..ec79b6f 100644 --- a/jcdm-main/src/main/java/com/jcdm/main/bs/formulaChild/controller/BsFormulaChildInfoController.java +++ b/jcdm-main/src/main/java/com/jcdm/main/bs/formulaChild/controller/BsFormulaChildInfoController.java @@ -15,7 +15,9 @@ import org.springframework.web.bind.annotation.*; import javax.servlet.http.HttpServletResponse; +import java.util.Comparator; import java.util.List; +import java.util.stream.Collectors; /** * 閰嶆柟閰嶇疆瀛愪俊鎭疌ontroller @@ -33,6 +35,8 @@ @Autowired private ProductProcessService productProcessService; + private static final String ZERO = "0"; + /** * 鏌ヨ閰嶆柟閰嶇疆瀛愪俊鎭垪琛� */ @@ -47,18 +51,45 @@ formulaChildInfo.setAddress(formulaChildInfo.getTechRequirement()); formulaChildInfo.setImg(formulaChildInfo.getPicture()); } + return getDataTable(list); } /** * 鏌ヨ宸ヨ壓娴佺▼ - * @param productProcessQuery query + * @param bsFormulaChildInfo query * @return list */ @PostMapping("/getProductProcess") - public TableDataInfo getProductProcess(@RequestBody ProductProcessQuery productProcessQuery) + public TableDataInfo getProductProcess(@RequestBody BsFormulaChildInfo bsFormulaChildInfo) { - List<BsFormulaChildInfo> list = productProcessService.getProductProcess(productProcessQuery); + List<BsFormulaChildInfo> list = bsFormulaChildInfoService.selectBsFormulaChildInfoList(bsFormulaChildInfo); + for (BsFormulaChildInfo formulaChildInfo : list) { + formulaChildInfo.setSort(formulaChildInfo.getStepSort()); + formulaChildInfo.setAddress(formulaChildInfo.getTechRequirement()); + formulaChildInfo.setImg(formulaChildInfo.getPicture()); + } + list = list.stream() + .filter(x -> !ZERO.equals(x.getSort())).sorted(Comparator.comparing(BsFormulaChildInfo::getSort)).collect(Collectors.toList()); + return getDataTable(list); + } + + /** + * 鏌ヨ宸ヨ壓鏂囦欢 + * @param bsFormulaChildInfo query + * @return list + */ + @PostMapping("/getMainProductProcess") + public TableDataInfo getMainProductProcess(@RequestBody BsFormulaChildInfo bsFormulaChildInfo) + { + List<BsFormulaChildInfo> list = bsFormulaChildInfoService.selectBsFormulaChildInfoList(bsFormulaChildInfo); + for (BsFormulaChildInfo formulaChildInfo : list) { + formulaChildInfo.setSort(formulaChildInfo.getStepSort()); + formulaChildInfo.setAddress(formulaChildInfo.getTechRequirement()); + formulaChildInfo.setImg(formulaChildInfo.getPicture()); + } + list = list.stream() + .filter(x -> ZERO.equals(x.getSort())).sorted(Comparator.comparing(BsFormulaChildInfo::getSort)).collect(Collectors.toList()); return getDataTable(list); } -- Gitblit v1.9.3