From d98ca6e960a7ea69fd4385fbd34887a4c86dc317 Mon Sep 17 00:00:00 2001
From: zss <zss@example.com>
Date: 星期五, 21 六月 2024 09:01:29 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 inspect-server/src/main/java/com/yuanchu/mom/mapper/StandardTreeMapper.java                   |    3 +
 inspect-server/src/main/java/com/yuanchu/mom/service/impl/StandardTreeServiceImpl.java        |    2 
 inspect-server/src/main/java/com/yuanchu/mom/service/impl/StandardProductListServiceImpl.java |   60 ++++++++++++++++++-----------
 inspect-server/src/main/java/com/yuanchu/mom/dto/ProductDto.java                              |   10 +++++
 inspect-server/src/main/resources/mapper/StandardProductListMapper.xml                        |   13 +++---
 inspect-server/src/main/resources/mapper/StandardTreeMapper.xml                               |    6 +++
 inspect-server/src/main/java/com/yuanchu/mom/mapper/StandardProductListMapper.java            |    2 
 7 files changed, 65 insertions(+), 31 deletions(-)

diff --git a/inspect-server/src/main/java/com/yuanchu/mom/dto/ProductDto.java b/inspect-server/src/main/java/com/yuanchu/mom/dto/ProductDto.java
new file mode 100644
index 0000000..2a82f1c
--- /dev/null
+++ b/inspect-server/src/main/java/com/yuanchu/mom/dto/ProductDto.java
@@ -0,0 +1,10 @@
+package com.yuanchu.mom.dto;
+
+import lombok.Data;
+
+@Data
+public class ProductDto {
+
+    private String name;
+
+}
diff --git a/inspect-server/src/main/java/com/yuanchu/mom/mapper/StandardProductListMapper.java b/inspect-server/src/main/java/com/yuanchu/mom/mapper/StandardProductListMapper.java
index 5a43899..95b38a9 100644
--- a/inspect-server/src/main/java/com/yuanchu/mom/mapper/StandardProductListMapper.java
+++ b/inspect-server/src/main/java/com/yuanchu/mom/mapper/StandardProductListMapper.java
@@ -15,7 +15,7 @@
 */
 public interface StandardProductListMapper extends BaseMapper<StandardProductList> {
 
-    IPage<StandardProductList> standardProductListIPage(Integer id, String tree, IPage<StandardProductList> iPage, String laboratory, String item, String items);
+    IPage<StandardProductList> standardProductListIPage(Integer id, String tree, IPage<StandardProductList> page, String laboratory, String insItem, String insItems);
 
     StandardProductList getOne(Integer standardMethodListId, String inspectionItem, String sample, String inspectionItemSubclass, String model);
 
diff --git a/inspect-server/src/main/java/com/yuanchu/mom/mapper/StandardTreeMapper.java b/inspect-server/src/main/java/com/yuanchu/mom/mapper/StandardTreeMapper.java
index 43cec1d..0666f69 100644
--- a/inspect-server/src/main/java/com/yuanchu/mom/mapper/StandardTreeMapper.java
+++ b/inspect-server/src/main/java/com/yuanchu/mom/mapper/StandardTreeMapper.java
@@ -2,6 +2,7 @@
 
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 import com.yuanchu.mom.dto.FactoryDto;
+import com.yuanchu.mom.dto.ProductDto;
 import com.yuanchu.mom.dto.SampleDto;
 import com.yuanchu.mom.dto.SampleTypeDto;
 import com.yuanchu.mom.pojo.StandardMethodList;
@@ -41,6 +42,8 @@
     String getLaboratory(String str);
 
     Integer getStructureItemParameterId(String sampleType, String item, String itemChild);
+
+    List<ProductDto> selectPList(String name);
 }
 
 
diff --git a/inspect-server/src/main/java/com/yuanchu/mom/service/impl/StandardProductListServiceImpl.java b/inspect-server/src/main/java/com/yuanchu/mom/service/impl/StandardProductListServiceImpl.java
index c740528..491465c 100644
--- a/inspect-server/src/main/java/com/yuanchu/mom/service/impl/StandardProductListServiceImpl.java
+++ b/inspect-server/src/main/java/com/yuanchu/mom/service/impl/StandardProductListServiceImpl.java
@@ -8,6 +8,7 @@
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 import com.yuanchu.mom.common.GetLook;
+import com.yuanchu.mom.dto.ProductDto;
 import com.yuanchu.mom.mapper.StandardProductListMapper;
 import com.yuanchu.mom.mapper.StandardTreeMapper;
 import com.yuanchu.mom.pojo.InsSample;
@@ -56,23 +57,17 @@
     @Override
     public List<StandardProductList> selectStandardProductList(InsSample insSample) {
         String[] models = insSample.getModel().split("-(?=[^-]*$)");//鎷嗗垎鏈�鍚庝竴涓��-銆�
-        List<StandardProductList> list = standardProductListMapper.selectDetail(insSample.getStandardMethodListId(), 1, models[0]);
-       /* List<StandardProductList> list = standardProductListMapper.selectList(Wrappers.<StandardProductList>lambdaQuery()
-                .eq(StandardProductList::getStandardMethodListId, insSample.getStandardMethodListId())
-                .eq(StandardProductList::getState, 1)
-                .eq(StandardProductList::getModel, models[0])
-                .apply("ORDER BY case when man_hour_group is NULL then 1 else 0 end, CAST(man_hour_group as UNSIGNED), man_hour_group REGEXP '^[0-9]', id asc "));*/
+        String[] factorys = insSample.getFactory().split(" - ");
+        List<StandardProductList> list = standardProductListMapper.selectList(Wrappers.<StandardProductList>lambdaQuery().eq(StandardProductList::getStandardMethodListId, insSample.getStandardMethodListId()).eq(StandardProductList::getState, 1).eq(StandardProductList::getModel, models[0]).eq(StandardProductList::getSampleType, factorys[2]));
         if (list.size() == 0) {
             if (Objects.equals(insSample.getFactory(), "") || insSample.getFactory() == null) {
                 return null;
             }
             String[] split = insSample.getFactory().split(" - ");
-            list = standardProductListMapper.selectDetail2(insSample.getStandardMethodListId(), 1, split[0] + " - " + split[1] + " - " + split[2] + " - " + split[3]);
-            /*list = standardProductListMapper.selectList(Wrappers.<StandardProductList>lambdaQuery()
+            list = standardProductListMapper.selectList(Wrappers.<StandardProductList>lambdaQuery()
                     .eq(StandardProductList::getStandardMethodListId, insSample.getStandardMethodListId())
                     .eq(StandardProductList::getState, 1)
-                    .like(StandardProductList::getTree, split[0] + " - " + split[1] + " - " + split[2] + " - " + split[3])
-                    .apply("ORDER BY case when man_hour_group is NULL then 1 else 0 end, CAST(man_hour_group as UNSIGNED), man_hour_group REGEXP '^[0-9]', id asc "));*/
+                    .like(StandardProductList::getTree, split[0] + " - " + split[1] + " - " + split[2] + " - " + split[3]));
         }
         list = list.stream().filter(a -> {
             try {
@@ -143,17 +138,35 @@
         String[] trees = tree.split(" - ");
         List<StandardProductList> list = new ArrayList<>();
         if (trees.length == 3) {
-            List<StandardTree> treeList = standardTreeMapper.selectList(Wrappers.<StandardTree>lambdaQuery().eq(StandardTree::getLaboratory, trees[1]).eq(StandardTree::getSampleType, trees[2]));
-            if (treeList.size() == 0) {
-                StandardTree standardTree = new StandardTree();
-                standardTree.setFactory(trees[0]);
-                standardTree.setLaboratory(trees[1]);
-                standardTree.setSampleType(trees[2]);
-                treeList.add(standardTree);
+            List<StandardTree> treeList = new ArrayList<>();
+            StandardTree standardTree = new StandardTree();
+            standardTree.setFactory(trees[0]);
+            standardTree.setLaboratory(trees[1]);
+            standardTree.setSampleType(trees[2]);
+            List<ProductDto> pList = standardTreeMapper.selectPList(trees[2]);
+            if (pList.size() == 0||pList.get(0)==null) {
+                List<StandardTree> treeList1 = standardTreeMapper.selectList(Wrappers.<StandardTree>lambdaQuery().eq(StandardTree::getLaboratory, trees[1]).eq(StandardTree::getSampleType, trees[2]));
+                if (treeList1.size() == 0) {
+                    treeList.add(standardTree);
+                } else {
+                    treeList.addAll(treeList1);
+                }
+            } else {
+                for (ProductDto p : pList) {
+                    standardTree.setSample(p.getName());
+                    List<StandardTree> treeList1 = standardTreeMapper.selectList(Wrappers.<StandardTree>lambdaQuery().eq(StandardTree::getLaboratory, trees[1]).eq(StandardTree::getSampleType, trees[2]).eq(StandardTree::getSample, p.getName()));
+                    if (treeList1.size() == 0) {
+                        treeList.add(JSON.parseObject(JSON.toJSONString(standardTree), StandardTree.class));
+                    } else {
+                        treeList.addAll(treeList1);
+                    }
+                }
             }
-            for (StandardTree standardTree : treeList) {
-                String str = tree + " - " + standardTree.getSample() + " - " + standardTree.getModel();
-                list.addAll(standardTreeMapper.selectStandardProductListByTree3("\"" + trees[2] + "\"", standardTree.getSample(), standardTree.getModel(), str));
+            for (StandardTree standardTree2 : treeList) {
+//                String str = tree + " - " + standardTree2.getSample() + " - " + standardTree2.getModel();
+//                list.addAll(standardTreeMapper.selectStandardProductListByTree3("\"" + trees[2] + "\"", standardTree2.getSample(), standardTree2.getModel(), str));
+                list.addAll(standardTreeMapper.selectStandardProductListByTree("\"" + trees[2] + "\"", standardTree2.getSample(), standardTree2.getModel(), tree));
+                list.addAll(standardTreeMapper.selectStandardProductListByTree2("\"" + trees[2] + "\",\"" + standardTree2.getSample() + "\"", standardTree2.getSample(), standardTree2.getModel(), tree));
             }
         } else if (trees.length == 4) {
             List<StandardTree> treeList = standardTreeMapper.selectList(Wrappers.<StandardTree>lambdaQuery().eq(StandardTree::getLaboratory, trees[1]).eq(StandardTree::getSampleType, trees[2]).eq(StandardTree::getSample, trees[3]));
@@ -162,7 +175,7 @@
                 standardTree.setFactory(trees[0]);
                 standardTree.setLaboratory(trees[1]);
                 standardTree.setSampleType(trees[2]);
-                standardTree.setSample(trees[2]);
+                standardTree.setSample(trees[3]);
                 treeList.add(standardTree);
             }
             for (StandardTree standardTree : treeList) {
@@ -171,8 +184,8 @@
                 list.addAll(standardTreeMapper.selectStandardProductListByTree2("\"" + trees[2] + "\",\"" + trees[3] + "\"", standardTree.getSample(), standardTree.getModel(), str));
             }
         } else {
-            list.addAll(standardTreeMapper.selectStandardProductListByTree("\"" + trees[2] + "\"", trees[3], trees[4], tree));
-            list.addAll(standardTreeMapper.selectStandardProductListByTree2("\"" + trees[2] + "\",\"" + trees[3] + "\"", trees[3], trees[4], tree));
+            list.addAll(standardTreeMapper.selectStandardProductListByTree("\"" + trees[2] + "\"", trees[3].equals("null")?null:trees[3], trees[4], tree));
+            list.addAll(standardTreeMapper.selectStandardProductListByTree2("\"" + trees[2] + "\",\"" + trees[3] + "\"", trees[3].equals("null")?null:trees[3], trees[4], tree));
         }
         for (StandardProductList productList : list) {
             productList.setId(IdWorker.getId());
@@ -182,6 +195,7 @@
             for (StandardProductList pl : list) {
                 if (Objects.equals(sp.getInspectionItem(), pl.getInspectionItem())
                         && Objects.equals((sp.getInspectionItemSubclass() == null) ? "" : sp.getInspectionItemSubclass(), pl.getInspectionItemSubclass() == null ? "" : pl.getInspectionItemSubclass())
+                        && Objects.equals(sp.getSample(), pl.getSample())
                         && Objects.equals(sp.getModel(), pl.getModel())
                         && Objects.equals(sp.getStructureItemParameterId(), pl.getStructureItemParameterId())) {
                     pl.setId(sp.getId());
diff --git a/inspect-server/src/main/java/com/yuanchu/mom/service/impl/StandardTreeServiceImpl.java b/inspect-server/src/main/java/com/yuanchu/mom/service/impl/StandardTreeServiceImpl.java
index d06dd7d..c0339db 100644
--- a/inspect-server/src/main/java/com/yuanchu/mom/service/impl/StandardTreeServiceImpl.java
+++ b/inspect-server/src/main/java/com/yuanchu/mom/service/impl/StandardTreeServiceImpl.java
@@ -251,7 +251,7 @@
                 str.setFactory("涓ぉ绉戞妧妫�娴嬩腑蹇�");
                 str.setLaboratory(laboratory.get());
                 str.setState(1);
-                str.setTree(str.getFactory() + " - " + str.getLaboratory() + " - " + str.getSampleType() + " - " + (str.getSample() == null?"":str.getSample()) + " - " + (str.getModel() == null?"":str.getModel()));
+                str.setTree(str.getFactory() + " - " + str.getLaboratory() + " - " + str.getSampleType() + " - " + str.getSample() + " - " + (str.getModel() == null?"":str.getModel()));
                 str.setStructureItemParameterId(standardTreeMapper.getStructureItemParameterId("\""+str.getSampleType()+"\"", str.getInspectionItem(), str.getInspectionItemSubclass()));
                 if(str.getStructureItemParameterId() == null){
                     throw new ErrorException("妫�楠岄」鐩笉瀛樺湪锛�" + str.getInspectionItem() + " " + str.getInspectionItemSubclass());
diff --git a/inspect-server/src/main/resources/mapper/StandardProductListMapper.xml b/inspect-server/src/main/resources/mapper/StandardProductListMapper.xml
index a9102ca..7393188 100644
--- a/inspect-server/src/main/resources/mapper/StandardProductListMapper.xml
+++ b/inspect-server/src/main/resources/mapper/StandardProductListMapper.xml
@@ -7,7 +7,6 @@
     <resultMap id="BaseResultMap" type="com.yuanchu.mom.pojo.StandardProductList">
             <id property="id" column="id" jdbcType="INTEGER"/>
             <result property="inspectionItem" column="inspection_item" jdbcType="VARCHAR"/>
-            <result property="inspectionItemClassify" column="inspection_item_classify" jdbcType="VARCHAR"/>
             <result property="inspectionItemSubclass" column="inspection_item_subclass" jdbcType="VARCHAR"/>
             <result property="laboratory" column="laboratory" jdbcType="VARCHAR"/>
             <result property="unit" column="unit" jdbcType="VARCHAR"/>
@@ -30,18 +29,20 @@
     </resultMap>
 
     <select id="standardProductListIPage" resultType="com.yuanchu.mom.pojo.StandardProductList">
-        select * from `center-lims`.standard_product_list
+        select spl.* from `center-lims`.standard_product_list spl
+        left join product p on spl.sample = p.name
         where standard_method_list_id = #{id}
         and tree like concat('%',#{tree},'%')
         <if test="laboratory != ''">
             and son_laboratory = #{laboratory}
         </if>
-        <if test="item != ''">
-            and inspection_item = #{item}
+        <if test="insItem != ''">
+            and inspection_item = #{insItem}
         </if>
-        <if test="items != ''">
-            and inspection_item_subclass = #{items}
+        <if test="insItems != ''">
+            and inspection_item_subclass = #{insItems}
         </if>
+        order by p.id
     </select>
     <select id="getOne" resultType="com.yuanchu.mom.pojo.StandardProductList">
         select * from standard_product_list
diff --git a/inspect-server/src/main/resources/mapper/StandardTreeMapper.xml b/inspect-server/src/main/resources/mapper/StandardTreeMapper.xml
index f735849..b461dc1 100644
--- a/inspect-server/src/main/resources/mapper/StandardTreeMapper.xml
+++ b/inspect-server/src/main/resources/mapper/StandardTreeMapper.xml
@@ -279,4 +279,10 @@
             and (inspection_item_subclass is null or inspection_item_subclass = '')
         </if>
     </select>
+    <select id="selectPList" resultType="com.yuanchu.mom.dto.ProductDto">
+        select p.name from structure_test_object sto
+        left join product p on p.object_id = sto.id
+        where sto.specimen_name = #{name}
+        order by p.id
+    </select>
 </mapper>

--
Gitblit v1.9.3