From c635d78b479510ebe2556a420948effcd30a0731 Mon Sep 17 00:00:00 2001 From: skyouc Date: 星期六, 21 十二月 2024 18:40:43 +0800 Subject: [PATCH] 新建德森项目分支 --- zy-asrs-wms/src/main/resources/mapper/asrs/ViewLocDetlMapper.xml | 162 +++++++++++++++++++++++++++--------------------------- 1 files changed, 81 insertions(+), 81 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 bcdab29..05e8e9e 100644 --- a/zy-asrs-wms/src/main/resources/mapper/asrs/ViewLocDetlMapper.xml +++ b/zy-asrs-wms/src/main/resources/mapper/asrs/ViewLocDetlMapper.xml @@ -1,81 +1,81 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!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} - <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="getListLike" resultType="map"> - select * from view_man_loc_detl ld - where matnr = #{matnr} - <if test="batch!=null"> - and batch = #{batch} - </if> - <if test="param!=null and param.size()>0"> - <foreach item="item" collection="param" index="index"> - and ${item.name} like CONCAT('%',#{item.value},'%') - </foreach> - </if> - </select> - - <select id="getById" resultType="map"> - select * - from view_man_loc_detl - where id = #{id} - </select> - - - - <select id="listSuitableMat" resultType="map"> - select * from view_man_loc_detl ld - where 1=1 - <if test="param!=null and param.size()>0"> - <foreach item="item" collection="param" index="index"> - and ${item.name} ${type} #{item.value} - </foreach> - </if> - <if test="sortParam!=null and sortParam.size()>0"> - <foreach collection="sortParam" item="order" open="order by " separator="," close=" "> - ${item.name} #{item.value} - </foreach> - </if> - </select> -</mapper> +<?xml version="1.0" encoding="UTF-8"?> +<!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} + <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="getListLike" resultType="map"> + select * from view_man_loc_detl ld + where matnr = #{matnr} + <if test="batch!=null"> + and batch = #{batch} + </if> + <if test="param!=null and param.size()>0"> + <foreach item="item" collection="param" index="index"> + and ${item.name} like CONCAT('%',#{item.value},'%') + </foreach> + </if> + </select> + + <select id="getById" resultType="map"> + select * + from view_man_loc_detl + where id = #{id} + </select> + + + + <select id="listSuitableMat" resultType="map"> + select * from view_man_loc_detl ld + where 1=1 + <if test="param!=null and param.size()>0"> + <foreach item="item" collection="param" index="index"> + and ${item.name} ${type} #{item.value} + </foreach> + </if> + <if test="sortParam!=null and sortParam.size()>0"> + <foreach collection="sortParam" item="order" open="order by " separator="," close=" "> + ${item.name} #{item.value} + </foreach> + </if> + </select> +</mapper> -- Gitblit v1.9.1