From 6e2533f366a28e5f0147f8c8b62a1593acc2a61c Mon Sep 17 00:00:00 2001
From: huangjiayang <5265313@qq.com>
Date: 星期五, 09 五月 2025 13:25:24 +0800
Subject: [PATCH] 【UPDATE】补充刷新BOM数据任务

---
 aps-modules/aps-core/src/main/resources/mapper/core/ApsStandardProcessRouteLineMapper.xml |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/aps-modules/aps-core/src/main/resources/mapper/core/ApsStandardProcessRouteLineMapper.xml b/aps-modules/aps-core/src/main/resources/mapper/core/ApsStandardProcessRouteLineMapper.xml
index 3b6e3b8..9f94cbf 100644
--- a/aps-modules/aps-core/src/main/resources/mapper/core/ApsStandardProcessRouteLineMapper.xml
+++ b/aps-modules/aps-core/src/main/resources/mapper/core/ApsStandardProcessRouteLineMapper.xml
@@ -23,7 +23,10 @@
     </resultMap>
 
     <sql id="selectApsStandardProcessRouteLineVo">
-        select id, route_id, route_num, route_name, start_date, end_date, create_time, org_code, shop_code, productivity_model, design_capacity, del_flag, create_by, update_by, update_time from aps_standard_process_route_line
+        select id, route_id, route_num, route_name, start_date, end_date, create_time, org_code,
+               shop_code, productivity_model, design_capacity, del_flag, create_by, update_by,
+               update_time
+        from aps_standard_process_route_line
     </sql>
 
     <select id="selectApsStandardProcessRouteLineList" parameterType="ApsStandardProcessRouteLine" resultMap="ApsStandardProcessRouteLineResult">
@@ -38,6 +41,7 @@
             <if test="shopCode != null  and shopCode != ''"> and shop_code = #{shopCode}</if>
             <if test="productivityModel != null  and productivityModel != ''"> and productivity_model = #{productivityModel}</if>
             <if test="designCapacity != null  and designCapacity != ''"> and design_capacity = #{designCapacity}</if>
+            and del_flag = '0'
         </where>
     </select>
     

--
Gitblit v1.9.3