From 20ad0e6c5ae8553c3a1af2b9ba92f6358f1e408b Mon Sep 17 00:00:00 2001
From: yuan <123@>
Date: 星期六, 08 八月 2026 16:16:33 +0800
Subject: [PATCH] 质量检测查询修改排序

---
 src/main/resources/mapper/production/ProductWorkOrderMapper.xml |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/main/resources/mapper/production/ProductWorkOrderMapper.xml b/src/main/resources/mapper/production/ProductWorkOrderMapper.xml
index 86d7512..6b07502 100644
--- a/src/main/resources/mapper/production/ProductWorkOrderMapper.xml
+++ b/src/main/resources/mapper/production/ProductWorkOrderMapper.xml
@@ -46,6 +46,9 @@
         LEFT JOIN product_model pm ON pm.id = ppri.product_model_id
         LEFT JOIN product p ON p.id = pm.product_id
         where 1=1
+        <if test="c.currentUserId != null">
+            and (pwo.worker_id = #{c.currentUserId} or pwo.handover_user_id = #{c.currentUserId})
+        </if>
         <if test="c.workOrderNo != null and c.workOrderNo != ''">
             and pwo.work_order_no like concat('%',#{c.workOrderNo},'%')
         </if>
@@ -58,6 +61,7 @@
         <if test="c.productOrderId != null and c.productOrderId != ''">
             and pwo.product_order_id = #{c.productOrderId}
         </if>
+        order by po.nps_no desc, pwo.work_order_no desc
     </select>
 
     <select id="getProductWorkOrderFlowCard" resultType="com.ruoyi.production.dto.ProductWorkOrderDto">

--
Gitblit v1.9.3