From 9f19d3a24f8474bf6f9eb9401888c44b34b381e6 Mon Sep 17 00:00:00 2001
From: zss <zss@example.com>
Date: 星期四, 21 十一月 2024 14:29:50 +0800
Subject: [PATCH] 第一次改动(检验任务与样品关联,附件与样品关联,报告与样品关联)

---
 inspect-server/src/main/resources/mapper/InsProductMapper.xml |   31 +++++++++++++++++++++++++------
 1 files changed, 25 insertions(+), 6 deletions(-)

diff --git a/inspect-server/src/main/resources/mapper/InsProductMapper.xml b/inspect-server/src/main/resources/mapper/InsProductMapper.xml
index e3b2e1e..ec40d61 100644
--- a/inspect-server/src/main/resources/mapper/InsProductMapper.xml
+++ b/inspect-server/src/main/resources/mapper/InsProductMapper.xml
@@ -3,11 +3,10 @@
         PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
 <mapper namespace="com.yuanchu.mom.mapper.InsProductMapper">
-
     <resultMap id="BaseResultMap" type="com.yuanchu.mom.pojo.InsProduct">
         <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="inspectionItemClass" column="inspection_item_class" jdbcType="VARCHAR"/>
         <result property="inspectionItemSubclass" column="inspection_item_subclass" jdbcType="VARCHAR"/>
         <result property="factory" column="factory" jdbcType="VARCHAR"/>
         <result property="laboratory" column="laboratory" jdbcType="VARCHAR"/>
@@ -72,19 +71,39 @@
         select ip.id,
                ip.inspection_item,
                ip.inspection_item_subclass,
-               ip.laboratory,
+               ip.son_laboratory,
                ip.unit,
-               ipr.equip_value,
+               ipr.equip_name equipValue,
                io.entrust_code,
                ipr.update_time,
+               ip.`last_value`,
                ip.ins_result,
-               u.name updateUserName
+               u.name         updateUserName
         from ins_product ip
                  left join ins_product_result ipr on ip.id = ipr.ins_product_id
                  left join ins_sample isa on isa.id = ip.ins_sample_id
                  left join ins_order io on io.id = isa.ins_order_id
                  left join user u on u.id = ipr.update_user
         where ip.ins_sample_id = #{sampleId}
-          and ip.ins_result is not null
+
+          and template_id is not null
+    </select>
+    <select id="selectNoProducts" resultType="com.yuanchu.mom.pojo.InsProduct">
+        select *
+        from (select ip.*, sample_code
+              from ins_product ip
+                       left join ins_sample is2 on ip.ins_sample_id = is2.id
+              where ip.ins_result is null
+                and state = 1
+                and is2.ins_order_id = #{orderId}) A
+    </select>
+
+    <select id="selectInsProductCountByOrderId" resultType="int">
+        select COUNT(1)
+        from ins_product ip
+                 left join ins_sample isa on ip.ins_sample_id = isa.id
+        where isa.id = #{sampleId}
+          and (ip.ins_result is null or ip.ins_result = 2)
+          and ip.state = 1
     </select>
 </mapper>

--
Gitblit v1.9.3