From 1d27648989e69042db607d14c474d9ea90f86d7b Mon Sep 17 00:00:00 2001
From: Fancy <Fancy.fx@outlook.com>
Date: 星期五, 19 七月 2024 14:39:33 +0800
Subject: [PATCH] lineName change

---
 pms-parent/pms-global/src/main/resources/mapper/StaDeviceProductionLogMapper.xml |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/pms-parent/pms-global/src/main/resources/mapper/StaDeviceProductionLogMapper.xml b/pms-parent/pms-global/src/main/resources/mapper/StaDeviceProductionLogMapper.xml
index f815c1e..6bf8a26 100644
--- a/pms-parent/pms-global/src/main/resources/mapper/StaDeviceProductionLogMapper.xml
+++ b/pms-parent/pms-global/src/main/resources/mapper/StaDeviceProductionLogMapper.xml
@@ -51,11 +51,13 @@
         select
             t.* ,p.`name` plan_name,s.`name` station_name,u.`name` update_user_name
         FROM
-            sta_device_production_log t
+            (
+                select * from sta_device_production_log_past where  device_no = #{deviceNo,jdbcType=VARCHAR} union
+                select * from sta_device_production_log where device_no = #{deviceNo,jdbcType=VARCHAR}
+            ) t
                 left join pr_assembly_plan p on t.plan_id=p.id
                 left join plt_station s on s.id = t.station_id
                 left JOIN ba_user u on u.id=t.updated_by
-        where  t.device_no = #{deviceNo,jdbcType=VARCHAR}
         ORDER BY t.id DESC
     </select>
 

--
Gitblit v1.8.0