From f8a5192aa2797e83f5000ff9035f149b0a1b00a1 Mon Sep 17 00:00:00 2001
From: whycq <913841844@qq.com>
Date: 星期一, 28 十月 2024 15:42:58 +0800
Subject: [PATCH] #更新接口

---
 zy-asrs-common/src/main/resources/mapper/wms/LocDetlMapper.xml |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/zy-asrs-common/src/main/resources/mapper/wms/LocDetlMapper.xml b/zy-asrs-common/src/main/resources/mapper/wms/LocDetlMapper.xml
index c8584e7..36b1b7d 100644
--- a/zy-asrs-common/src/main/resources/mapper/wms/LocDetlMapper.xml
+++ b/zy-asrs-common/src/main/resources/mapper/wms/LocDetlMapper.xml
@@ -23,11 +23,17 @@
         <if test="map.maktx!=null and map.maktx!='' ">
             and a.maktx like '%' + #{map.maktx} + '%'
         </if>
+        <if test="map.zpallet!=null and map.zpallet!='' ">
+            and a.zpallet like '%' + #{map.zpallet} + '%'
+        </if>
         <if test="map.batch!=null and map.batch!='' ">
             and a.batch like '%' + #{map.batch} + '%'
         </if>
         <if test="map.anfme!=null and map.anfme!='' ">
             and a.anfme like '%' + #{map.anfme} + '%'
+        </if>
+        <if test="map.owner!=null and map.owner!='' ">
+            and a.owner like '%' + #{map.owner} + '%'
         </if>
         <if test="map.startTime!=null and map.endTime!=null">
             and a.modi_time between #{map.startTime} and #{map.endTime}
@@ -142,4 +148,14 @@
         ORDER BY lm.modi_time ASC
     </select>
 
+    <select id="getStockStatisExcel" resultType="com.zy.asrs.common.wms.entity.LocDetl">
+        select
+            ROW_NUMBER() over (order by sum(a.anfme) desc) as row
+        , a.matnr
+             , sum(a.anfme) as anfme
+        from wms_loc_detl a
+        where 1=1
+        group by a.matnr
+    </select>
+
 </mapper>

--
Gitblit v1.9.1