From 7e68f7b8bf6c67be60faeac758511650c61c6f6d Mon Sep 17 00:00:00 2001
From: Junjie <540245094@qq.com>
Date: 星期五, 29 十二月 2023 15:30:56 +0800
Subject: [PATCH] #
---
zy-asrs-common/src/main/resources/mapper/wms/LocDetlMapper.xml | 122 ++++++++++++++++++++++++++++++++++++++++
1 files changed, 120 insertions(+), 2 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 a137f77..cfb52d4 100644
--- a/zy-asrs-common/src/main/resources/mapper/wms/LocDetlMapper.xml
+++ b/zy-asrs-common/src/main/resources/mapper/wms/LocDetlMapper.xml
@@ -2,6 +2,17 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.zy.asrs.common.wms.mapper.LocDetlMapper">
+ <sql id="batchSeq">
+ <choose>
+ <when test="batch != null and batch != ''">
+ and batch = #{batch}
+ </when>
+ <otherwise>
+ and (batch IS NULL OR batch = '')
+ </otherwise>
+ </choose>
+ </sql>
+
<sql id="stockOutCondition">
<if test="map.loc_no!=null and map.loc_no!='' ">
and a.loc_no like '%' + #{map.loc_no} + '%'
@@ -34,14 +45,121 @@
select
a.matnr
, sum(a.anfme) as anfme
- from asr_loc_detl a
+ from wms_loc_detl a
where 1=1
<include refid="stockOutCondition"></include>
group by a.matnr
</select>
<select id="sum" resultType="java.lang.Integer">
- SELECT SUM(anfme) FROM asr_loc_detl
+ SELECT SUM(anfme) FROM wms_loc_detl
</select>
+ <select id="queryStock" resultType="com.zy.asrs.common.wms.entity.LocDetl">
+ select
+ a.*
+ from wms_loc_detl a
+ left join wms_loc_mast b on a.loc_no = b.loc_no
+ where 1=1
+ <if test="no!=null and no == 1">
+ and b.row1 >= 31
+ and b.row1 <= 32
+ </if>
+ <if test="no!=null and no == 2">
+ and b.row1 >= 2
+ and b.row1 <= 17
+ </if>
+ <if test="no!=null and no == 3">
+ and b.row1 >= 18
+ and b.row1 <= 30
+ </if>
+ and a.matnr = #{matnr}
+ and b.bay1 = #{bay}
+ and b.loc_sts = 'F'
+ order by b.row1
+ <if test="orderBy != null and orderBy != '' and orderBy == 'false'">
+ desc
+ </if>
+ </select>
+
+ <select id="queryStockPre" resultType="com.zy.asrs.common.domain.dto.QueryStockPreDo">
+ select
+ *
+ from
+ (
+ select
+ no = 1,
+ orderBy = 'true',
+ b.bay1 as bay,
+ sum(anfme) as count
+ from wms_loc_detl a
+ left join wms_loc_mast b on a.loc_no = b.loc_no
+ where 1=1
+ and b.loc_sts = 'F'
+ and a.matnr = #{matnr}
+ and b.row1 >= 31
+ and b.row1 <= 32
+ group by b.bay1
+ union
+ select
+ no = 2,
+ orderBy = 'true',
+ b.bay1 as bay,
+ sum(anfme) as count
+ from wms_loc_detl a
+ left join wms_loc_mast b on a.loc_no = b.loc_no
+ where 1=1
+ and b.loc_sts = 'F'
+ and a.matnr = #{matnr}
+ and b.row1 >= 2
+ and b.row1 <= 17
+ group by b.bay1
+ union
+ select
+ no = 3,
+ orderBy = 'false',
+ b.bay1 as bay,
+ sum(anfme) as count
+ from wms_loc_detl a
+ left join wms_loc_mast b on a.loc_no = b.loc_no
+ where 1=1
+ and b.loc_sts = 'F'
+ and a.matnr = #{matnr}
+ and b.row1 >= 18
+ and b.row1 <= 30
+ group by b.bay1
+ ) a
+ order by no, count desc
+ </select>
+
+ <select id="selectItem" resultType="com.zy.asrs.common.wms.entity.LocDetl">
+ select top 1 *
+ from wms_loc_detl
+ where 1=1
+ and loc_no = #{locNo}
+ and matnr = #{matnr}
+ and host_id = #{hostId}
+ <include refid="batchSeq"></include>
+ </select>
+
+ <delete id="deleteItem">
+ delete from wms_loc_detl
+ where 1=1
+ and loc_no = #{locNo}
+ and matnr = #{matnr}
+ and host_id = #{hostId}
+ <include refid="batchSeq"></include>
+ </delete>
+
+ <update id="updateAnfme">
+ update wms_loc_detl
+ set anfme = #{anfme}
+ , modi_time = getdate()
+ where 1=1
+ and loc_no = #{locNo}
+ and matnr = #{matnr}
+ and host_id = #{hostId}
+ <include refid="batchSeq"></include>
+ </update>
+
</mapper>
--
Gitblit v1.9.1