From 1222ce7dfd00e7336beaebdfb0199ec3597aeec2 Mon Sep 17 00:00:00 2001
From: buhuazhen <hua100783@gmail.com>
Date: 星期二, 02 六月 2026 15:02:01 +0800
Subject: [PATCH] fix: 对销售台账产品进行发货,点击发货按钮后,发货状态直接变更为已发货,

---
 src/main/resources/mapper/quality/QualityTestStandardMapper.xml |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/main/resources/mapper/quality/QualityTestStandardMapper.xml b/src/main/resources/mapper/quality/QualityTestStandardMapper.xml
index 5c20733..53eef84 100644
--- a/src/main/resources/mapper/quality/QualityTestStandardMapper.xml
+++ b/src/main/resources/mapper/quality/QualityTestStandardMapper.xml
@@ -19,16 +19,17 @@
         <if test="c.inspectType != null ">
             AND inspect_type =#{c.inspectType}
         </if>
+        order by create_time desc
     </select>
     <select id="getQualityTestStandardByProductId" resultType="com.ruoyi.quality.pojo.QualityTestStandard">
         SELECT qts.*
         FROM quality_test_standard qts
                  left join quality_test_standard_binding qtsb on qtsb.test_standard_id = qts.id
-                 left join product_process pp on qts.process_id = pp.id
+                 left join technology_operation toper on qts.process_id = toper.id
         WHERE qtsb.product_id = #{productId}
           AND qts.inspect_type = #{inspectType}
         <if test="process!='' and process!=null">
-            and pp.name = #{process}
+            and toper.name = #{process}
         </if>
         order by qts.id desc
     </select>

--
Gitblit v1.9.3