From 29bd10e6981aa5cfcd087dd9695f3d926925f847 Mon Sep 17 00:00:00 2001
From: zhang <zc857179121@qq.com>
Date: 星期四, 23 十月 2025 16:44:31 +0800
Subject: [PATCH] 13

---
 src/main/resources/mapper/MatMapper.xml |   25 +++++++++----------------
 1 files changed, 9 insertions(+), 16 deletions(-)

diff --git a/src/main/resources/mapper/MatMapper.xml b/src/main/resources/mapper/MatMapper.xml
index 09a8d0a..ffd3de7 100644
--- a/src/main/resources/mapper/MatMapper.xml
+++ b/src/main/resources/mapper/MatMapper.xml
@@ -48,17 +48,10 @@
 
     <select id="listByPage" resultMap="BaseResultMap">
         SELECT
-        isnull(mld.amount,0) as stock,
         mm.*
         FROM man_mat mm
         LEFT JOIN man_tag mt ON mm.tag_id = mt.id
-        LEFT JOIN (
-            select
-            matnr,
-            sum(anfme) as amount
-            from man_loc_detl
-            group by matnr
-        ) as mld on mld.matnr = mm.matnr
+
         WHERE 1=1
         and (mm.memo is null or mm.memo != '鎵撳寘涓婄嚎')
         AND (CHARINDEX(','+#{tagId}+',', ','+mt.path+',') > 0 OR mt.id = #{tagId})
@@ -73,17 +66,10 @@
 
     <select id="listByPage2" resultMap="BaseResultMap">
         SELECT
-        isnull(mld.amount,0) as stock,
         mm.*
         FROM man_mat mm
         LEFT JOIN man_tag mt ON mm.tag_id = mt.id
-        LEFT JOIN (
-        select
-        matnr,
-        sum(anfme) as amount
-        from man_loc_detl
-        group by matnr
-        ) as mld on mld.matnr = mm.matnr
+
         WHERE 1=1
         and (mm.memo is null or mm.memo != '鎵撳寘涓婄嚎')
         AND (CHARINDEX(','+#{tagId}+',', ','+mt.path+',') > 0 OR mt.id = #{tagId})
@@ -111,6 +97,13 @@
         </if>
     </select>
 
+    <select id="selectNewUpdateTime" resultMap="BaseResultMap">
+        select top 1 * from man_mat
+        where 1=1
+        ORDER BY create_time ASC
+--         ORDER BY update_time DESC
+    </select>
+
     <select id="getMatTurnPage" resultMap="BaseResultMap">
         select * from
         (

--
Gitblit v1.9.1