From ac4341ea6b66ae02427d39d35f41d42d78b2eb2e Mon Sep 17 00:00:00 2001
From: Junjie <fallin.jie@qq.com>
Date: 星期五, 14 二月 2025 10:08:32 +0800
Subject: [PATCH] #
---
zy-asrs-wms/src/main/resources/mapper/asrs/ViewLocDetlMapper.xml | 28 +++++++++++++++++++++++++++-
1 files changed, 27 insertions(+), 1 deletions(-)
diff --git a/zy-asrs-wms/src/main/resources/mapper/asrs/ViewLocDetlMapper.xml b/zy-asrs-wms/src/main/resources/mapper/asrs/ViewLocDetlMapper.xml
index 505c629..bcdab29 100644
--- a/zy-asrs-wms/src/main/resources/mapper/asrs/ViewLocDetlMapper.xml
+++ b/zy-asrs-wms/src/main/resources/mapper/asrs/ViewLocDetlMapper.xml
@@ -2,6 +2,27 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.zy.asrs.wms.asrs.mapper.ViewLocDetlMapper">
+ <select id="queryStock" resultType="map">
+ select * from view_man_loc_detl ld
+ where matnr = #{matnr}
+ and freeze = 0
+ <if test="batch!=null">
+ and batch = #{batch}
+ </if>
+ <if test="param!=null and param.size()>0">
+ <foreach item="item" collection="param" index="index">
+ <if test="item.value!=null">
+ and ${item.name} = #{item.value}
+ </if>
+ </foreach>
+ </if>
+ <if test="sortParam!=null and sortParam.size()>0">
+ <foreach collection="sortParam" item="item" open="order by " separator="," close=" ">
+ ${item.name} ${item.value}
+ </foreach>
+ </if>
+ </select>
+
<select id="getList" resultType="map">
select * from view_man_loc_detl ld
where matnr = #{matnr}
@@ -13,6 +34,11 @@
<if test="item.value!=null">
and ${item.name} = #{item.value}
</if>
+ </foreach>
+ </if>
+ <if test="sortParam!=null and sortParam.size()>0">
+ <foreach collection="sortParam" item="item" open="order by " separator="," close=" ">
+ ${item.name} ${item.value}
</foreach>
</if>
</select>
@@ -38,7 +64,7 @@
- <select id="getSuitableMat" resultType="map">
+ <select id="listSuitableMat" resultType="map">
select * from view_man_loc_detl ld
where 1=1
<if test="param!=null and param.size()>0">
--
Gitblit v1.9.1