From b6fc07bc9d9af60511d171c2147b806bb7dd6983 Mon Sep 17 00:00:00 2001
From: 1 <1>
Date: 星期一, 08 十二月 2025 08:43:50 +0800
Subject: [PATCH] #

---
 src/main/resources/mapper/WrkMastStaMapper.xml |   98 +++++++++++++++++++++++++++++++++++++++++-------
 1 files changed, 83 insertions(+), 15 deletions(-)

diff --git a/src/main/resources/mapper/WrkMastStaMapper.xml b/src/main/resources/mapper/WrkMastStaMapper.xml
index 4218dc7..ebc1221 100644
--- a/src/main/resources/mapper/WrkMastStaMapper.xml
+++ b/src/main/resources/mapper/WrkMastStaMapper.xml
@@ -19,6 +19,7 @@
         <result column="bign_time" property="bignTime" />
         <result column="work_sta" property="workSta"/>
         <result column="rgv_no" property="rgvNo"/>
+        <result column="mk" property="mk"/>
 
     </resultMap>
 
@@ -38,24 +39,31 @@
         and wrk_no = #{workNo}
     </select>
 
-    <select id="selectNoInterfere" resultMap="BaseResultMap">
+    <select id="selectByWrkNoPut" resultMap="BaseResultMap">
         select top 1 * from asr_wrk_mast_sta
         where 1=1
-        and (sta_start in
-        <foreach item="item" collection="staStarts" index="index" separator="," open="(" close=")">
-            #{item}
-        </foreach>
-        or sta_start = 0
-        )
-        and (sta_end in
-        <foreach item="item" collection="staEnds" index="index" separator="," open="(" close=")">
-            #{item}
-        </foreach>
-        or sta_end = 0
-        )
-        and wrk_sts=0
-        order by line_number,id
+          and wrk_no = #{workNo}
+          and wrk_sts = 1
     </select>
+
+<!--    <select id="selectNoInterfere" resultMap="BaseResultMap">-->
+<!--        select top 1 * from asr_wrk_mast_sta-->
+<!--        where 1=1-->
+<!--        and (sta_start in-->
+<!--        <foreach item="item" collection="staStarts" index="index" separator="," open="(" close=")">-->
+<!--            #{item}-->
+<!--        </foreach>-->
+<!--        or sta_start = 0-->
+<!--        )-->
+<!--        and (sta_end in-->
+<!--        <foreach item="item" collection="staEnds" index="index" separator="," open="(" close=")">-->
+<!--            #{item}-->
+<!--        </foreach>-->
+<!--        or sta_end = 0-->
+<!--        )-->
+<!--        and wrk_sts=0-->
+<!--        order by line_number,id-->
+<!--    </select>-->
 
     <select id="selectNoInterfereList" resultMap="BaseResultMap">
         select * from asr_wrk_mast_sta
@@ -95,6 +103,46 @@
         and wrk_no = #{workNo}
         order by line_number,id
     </select>
+    <select id="selectNoInterfereCrn" resultMap="BaseResultMap">
+        select * from asr_wrk_mast_sta
+        where 1=1
+        and (sta_start in
+        <foreach item="item" collection="staStarts" index="index" separator="," open="(" close=")">
+            #{item}
+        </foreach>
+        or sta_start = 0
+        )
+        and (sta_end in
+        <foreach item="item" collection="staEnds" index="index" separator="," open="(" close=")">
+            #{item}
+        </foreach>
+        or sta_end = 0
+        )
+        and wrk_sts=0
+        and sta_end in (2006.2012,2018,2024,2030,1004,1014,1018,1028,1035)
+        and wrk_no = #{workNo}
+        order by
+        case when mk = 1 then 0 else 1 end,
+        line_number,
+        id
+    </select>
+
+    <select id="selectNoInterfereToCrn" resultMap="BaseResultMap">
+        select * from asr_wrk_mast_sta
+        where 1=1
+        and (sta_start in
+        <foreach item="item" collection="staStarts" index="index" separator="," open="(" close=")">
+            #{item}
+        </foreach>
+        or sta_start = 0
+        )
+        or sta_end = 0
+        )
+        and sta_end in (2018,1018)
+        and wrk_sts=0
+        and wrk_no = #{workNo}
+        order by line_number,id
+    </select>
     <select id="selectByWorkSta" resultMap="BaseResultMap">
         select top 1 * from asr_wrk_mast_sta
         where work_sta = #{workSta}
@@ -126,7 +174,27 @@
             and wrk_sts = #{wrkSts}
         </if>
     </select>
+    <select id="selectLockWrk" resultMap="BaseResultMap">
+        select * from asr_wrk_mast_sta
+        where wrk_sts > 0
+        and sta_end &lt; 2000
+    </select>
+    <select id="selectLockWrkT" resultMap="BaseResultMap">
+        select * from asr_wrk_mast_sta
+        where wrk_sts > 0
+        and sta_end &gt; 2000
+    </select>
+    <select id="selectPakingWrk" resultMap="BaseResultMap">
+        select * from asr_wrk_mast_sta
+        where mk = 1
+        and sta_start = #{staStart}
+    </select>
 
+    <select id="selectPakingWrkNum" resultMap="BaseResultMap">
+        select * from asr_wrk_mast_sta
+        where mk = 1
+        and rgv_no = #{rgvNo}
+    </select>
 
 
 

--
Gitblit v1.9.1