From f086664481f69eda8a5dd30747b3ed7cb496b9ba Mon Sep 17 00:00:00 2001
From: Calvin <2440603509@qq.com>
Date: 星期三, 31 七月 2024 09:53:48 +0800
Subject: [PATCH] Merge branch 'master' of http://114.132.189.42:9002/r/center-lims-after

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

diff --git a/inspect-server/src/main/resources/mapper/InsProductMapper.xml b/inspect-server/src/main/resources/mapper/InsProductMapper.xml
index e3b2e1e..d1e6308 100644
--- a/inspect-server/src/main/resources/mapper/InsProductMapper.xml
+++ b/inspect-server/src/main/resources/mapper/InsProductMapper.xml
@@ -74,7 +74,7 @@
                ip.inspection_item_subclass,
                ip.laboratory,
                ip.unit,
-               ipr.equip_value,
+               ipr.equip_name equipValue,
                io.entrust_code,
                ipr.update_time,
                ip.ins_result,
@@ -86,5 +86,17 @@
                  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="selectFiberInsProduct" resultType="com.yuanchu.mom.pojo.InsProduct">
+        select * from ins_product
+        where state = 1
+        and (ins_fibers_id is not null or ins_fiber_id is not null)
+        and ins_result is null
+        and son_laboratory = #{laboratory}
+        and ins_sample_id in
+        <foreach collection="ids" index="index" item="item" open="(" separator="," close=")">
+            #{item}
+        </foreach>
     </select>
 </mapper>

--
Gitblit v1.9.3