You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

508 lines
25 KiB
XML

<?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.foreverwin.mesnac.dispatch.mapper.SurplusInventoryMapper">
<!-- 通用查询映射结果 -->
<resultMap id="BaseResultMap" type="com.foreverwin.mesnac.dispatch.model.SurplusInventory">
<id column="HANDLE" property="handle"/>
<result column="SITE" property="site"/>
<result column="PARENT_INVENTORY" property="parentInventory"/>
<result column="INVENTORY" property="inventory"/>
<result column="ITEM_BO" property="itemBo"/>
<result column="LENGHT" property="lenght"/>
<result column="WIDTH" property="width"/>
<result column="QTY" property="qty"/>
<result column="CREATE_USER" property="createUser"/>
<result column="CREATED_DATE_TIME" property="createdDateTime"/>
<result column="MODIFY_USER" property="modifyUser"/>
<result column="MODIFIED_DATE_TIME" property="modifiedDateTime"/>
</resultMap>
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
HANDLE, SITE, PARENT_INVENTORY, INVENTORY, ITEM_BO, LENGHT, WIDTH, QTY, CREATE_USER, CREATED_DATE_TIME,
MODIFY_USER, MODIFIED_DATE_TIME
</sql>
<!-- BaseMapper标准查询/修改/删除 -->
<select id="selectById" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include> FROM Z_SURPLUS_INVENTORY WHERE HANDLE=#{handle}
</select>
<select id="selectByMap" resultMap="BaseResultMap">
SELECT
<include refid="Base_Column_List"></include>
FROM Z_SURPLUS_INVENTORY
<if test="cm!=null and !cm.isEmpty">
<where>
<foreach collection="cm.keys" item="k" separator="AND">
<if test="cm[k] != null">
${k} = #{cm[${k}]}
</if>
</foreach>
</where>
</if>
</select>
<select id="selectBatchIds" resultMap="BaseResultMap">
SELECT
<include refid="Base_Column_List"></include>
FROM Z_SURPLUS_INVENTORY WHERE HANDLE IN (
<foreach item="item" index="index" collection="coll" separator=",">#{item}
</foreach>)
</select>
<select id="selectOne" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include> FROM Z_SURPLUS_INVENTORY
<where>
<if test="ew.entity.handle!=null">
HANDLE=#{ew.handle}
</if>
<if test="ew.entity.site!=null">AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.parentInventory!=null">AND PARENT_INVENTORY=#{ew.entity.parentInventory}</if>
<if test="ew.entity.inventory!=null">AND INVENTORY=#{ew.entity.inventory}</if>
<if test="ew.entity.itemBo!=null">AND ITEM_BO=#{ew.entity.itemBo}</if>
<if test="ew.entity.lenght!=null">AND LENGHT=#{ew.entity.lenght}</if>
<if test="ew.entity.width!=null">AND WIDTH=#{ew.entity.width}</if>
<if test="ew.entity.qty!=null">AND QTY=#{ew.entity.qty}</if>
<if test="ew.entity.createUser!=null">AND CREATE_USER=#{ew.entity.createUser}</if>
<if test="ew.entity.createdDateTime!=null">AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifyUser!=null">AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null">AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}</if>
</where>
</select>
<select id="selectCount" resultType="Integer">
SELECT COUNT(1) FROM Z_SURPLUS_INVENTORY
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.site!=null">AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.parentInventory!=null">AND PARENT_INVENTORY=#{ew.entity.parentInventory}</if>
<if test="ew.entity.inventory!=null">AND INVENTORY=#{ew.entity.inventory}</if>
<if test="ew.entity.itemBo!=null">AND ITEM_BO=#{ew.entity.itemBo}</if>
<if test="ew.entity.lenght!=null">AND LENGHT=#{ew.entity.lenght}</if>
<if test="ew.entity.width!=null">AND WIDTH=#{ew.entity.width}</if>
<if test="ew.entity.qty!=null">AND QTY=#{ew.entity.qty}</if>
<if test="ew.entity.createUser!=null">AND CREATE_USER=#{ew.entity.createUser}</if>
<if test="ew.entity.createdDateTime!=null">AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifyUser!=null">AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null">AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}
</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectList" resultMap="BaseResultMap">
SELECT
<choose>
<when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when>
<otherwise>
<include refid="Base_Column_List"></include>
</otherwise>
</choose>
FROM Z_SURPLUS_INVENTORY
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.site!=null">AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.parentInventory!=null">AND PARENT_INVENTORY=#{ew.entity.parentInventory}</if>
<if test="ew.entity.inventory!=null">AND INVENTORY=#{ew.entity.inventory}</if>
<if test="ew.entity.itemBo!=null">AND ITEM_BO=#{ew.entity.itemBo}</if>
<if test="ew.entity.lenght!=null">AND LENGHT=#{ew.entity.lenght}</if>
<if test="ew.entity.width!=null">AND WIDTH=#{ew.entity.width}</if>
<if test="ew.entity.qty!=null">AND QTY=#{ew.entity.qty}</if>
<if test="ew.entity.createUser!=null">AND CREATE_USER=#{ew.entity.createUser}</if>
<if test="ew.entity.createdDateTime!=null">AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifyUser!=null">AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null">AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}
</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectMaps" resultType="HashMap">
SELECT
<choose>
<when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when>
<otherwise>
<include refid="Base_Column_List"></include>
</otherwise>
</choose>
FROM Z_SURPLUS_INVENTORY
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.site!=null">AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.parentInventory!=null">AND PARENT_INVENTORY=#{ew.entity.parentInventory}</if>
<if test="ew.entity.inventory!=null">AND INVENTORY=#{ew.entity.inventory}</if>
<if test="ew.entity.itemBo!=null">AND ITEM_BO=#{ew.entity.itemBo}</if>
<if test="ew.entity.lenght!=null">AND LENGHT=#{ew.entity.lenght}</if>
<if test="ew.entity.width!=null">AND WIDTH=#{ew.entity.width}</if>
<if test="ew.entity.qty!=null">AND QTY=#{ew.entity.qty}</if>
<if test="ew.entity.createUser!=null">AND CREATE_USER=#{ew.entity.createUser}</if>
<if test="ew.entity.createdDateTime!=null">AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifyUser!=null">AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null">AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}
</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectObjs" resultType="Object">
SELECT
<choose>
<when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when>
<otherwise>
<include refid="Base_Column_List"></include>
</otherwise>
</choose>
FROM Z_SURPLUS_INVENTORY
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.site!=null">AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.parentInventory!=null">AND PARENT_INVENTORY=#{ew.entity.parentInventory}</if>
<if test="ew.entity.inventory!=null">AND INVENTORY=#{ew.entity.inventory}</if>
<if test="ew.entity.itemBo!=null">AND ITEM_BO=#{ew.entity.itemBo}</if>
<if test="ew.entity.lenght!=null">AND LENGHT=#{ew.entity.lenght}</if>
<if test="ew.entity.width!=null">AND WIDTH=#{ew.entity.width}</if>
<if test="ew.entity.qty!=null">AND QTY=#{ew.entity.qty}</if>
<if test="ew.entity.createUser!=null">AND CREATE_USER=#{ew.entity.createUser}</if>
<if test="ew.entity.createdDateTime!=null">AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifyUser!=null">AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null">AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}
</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectPage" resultMap="BaseResultMap">
SELECT
<choose>
<when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when>
<otherwise>
<include refid="Base_Column_List"></include>
</otherwise>
</choose>
FROM Z_SURPLUS_INVENTORY
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.site!=null">AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.parentInventory!=null">AND PARENT_INVENTORY=#{ew.entity.parentInventory}</if>
<if test="ew.entity.inventory!=null">AND INVENTORY=#{ew.entity.inventory}</if>
<if test="ew.entity.itemBo!=null">AND ITEM_BO=#{ew.entity.itemBo}</if>
<if test="ew.entity.lenght!=null">AND LENGHT=#{ew.entity.lenght}</if>
<if test="ew.entity.width!=null">AND WIDTH=#{ew.entity.width}</if>
<if test="ew.entity.qty!=null">AND QTY=#{ew.entity.qty}</if>
<if test="ew.entity.createUser!=null">AND CREATE_USER=#{ew.entity.createUser}</if>
<if test="ew.entity.createdDateTime!=null">AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifyUser!=null">AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null">AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}
</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<select id="selectMapsPage" resultType="HashMap">
SELECT
<choose>
<when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when>
<otherwise>
<include refid="Base_Column_List"></include>
</otherwise>
</choose>
FROM Z_SURPLUS_INVENTORY
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.site!=null">AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.parentInventory!=null">AND PARENT_INVENTORY=#{ew.entity.parentInventory}</if>
<if test="ew.entity.inventory!=null">AND INVENTORY=#{ew.entity.inventory}</if>
<if test="ew.entity.itemBo!=null">AND ITEM_BO=#{ew.entity.itemBo}</if>
<if test="ew.entity.lenght!=null">AND LENGHT=#{ew.entity.lenght}</if>
<if test="ew.entity.width!=null">AND WIDTH=#{ew.entity.width}</if>
<if test="ew.entity.qty!=null">AND QTY=#{ew.entity.qty}</if>
<if test="ew.entity.createUser!=null">AND CREATE_USER=#{ew.entity.createUser}</if>
<if test="ew.entity.createdDateTime!=null">AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifyUser!=null">AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null">AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}
</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<insert id="insert" parameterType="com.foreverwin.mesnac.dispatch.model.SurplusInventory">
INSERT INTO Z_SURPLUS_INVENTORY
<trim prefix="(" suffix=")" suffixOverrides=",">
HANDLE,
<if test="site!=null">SITE,</if>
<if test="parentInventory!=null">PARENT_INVENTORY,</if>
<if test="inventory!=null">INVENTORY,</if>
<if test="itemBo!=null">ITEM_BO,</if>
<if test="lenght!=null">LENGHT,</if>
<if test="width!=null">WIDTH,</if>
<if test="qty!=null">QTY,</if>
<if test="createUser!=null">CREATE_USER,</if>
<if test="createdDateTime!=null">CREATED_DATE_TIME,</if>
<if test="modifyUser!=null">MODIFY_USER,</if>
<if test="modifiedDateTime!=null">MODIFIED_DATE_TIME,</if>
</trim>
VALUES
<trim prefix="(" suffix=")" suffixOverrides=",">
#{handle},
<if test="site!=null">#{site},</if>
<if test="parentInventory!=null">#{parentInventory},</if>
<if test="inventory!=null">#{inventory},</if>
<if test="itemBo!=null">#{itemBo},</if>
<if test="lenght!=null">#{lenght},</if>
<if test="width!=null">#{width},</if>
<if test="qty!=null">#{qty},</if>
<if test="createUser!=null">#{createUser},</if>
<if test="createdDateTime!=null">#{createdDateTime},</if>
<if test="modifyUser!=null">#{modifyUser},</if>
<if test="modifiedDateTime!=null">#{modifiedDateTime},</if>
</trim>
</insert>
<insert id="insertAllColumn" parameterType="com.foreverwin.mesnac.dispatch.model.SurplusInventory">
INSERT INTO Z_SURPLUS_INVENTORY
<trim prefix="(" suffix=")" suffixOverrides=",">
<include refid="Base_Column_List"></include>
</trim>
VALUES
<trim prefix="(" suffix=")" suffixOverrides=",">
#{handle},
#{site},
#{parentInventory},
#{inventory},
#{itemBo},
#{lenght},
#{width},
#{qty},
#{createUser},
#{createdDateTime},
#{modifyUser},
#{modifiedDateTime},
</trim>
</insert>
<update id="updateById">
UPDATE Z_SURPLUS_INVENTORY
<trim prefix="SET" suffixOverrides=",">
<if test="et.site!=null">SITE=#{et.site},</if>
<if test="et.parentInventory!=null">PARENT_INVENTORY=#{et.parentInventory},</if>
<if test="et.inventory!=null">INVENTORY=#{et.inventory},</if>
<if test="et.itemBo!=null">ITEM_BO=#{et.itemBo},</if>
<if test="et.lenght!=null">LENGHT=#{et.lenght},</if>
<if test="et.width!=null">WIDTH=#{et.width},</if>
<if test="et.qty!=null">QTY=#{et.qty},</if>
<if test="et.createUser!=null">CREATE_USER=#{et.createUser},</if>
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</if>
<if test="et.modifyUser!=null">MODIFY_USER=#{et.modifyUser},</if>
<if test="et.modifiedDateTime!=null">MODIFIED_DATE_TIME=#{et.modifiedDateTime},</if>
</trim>
WHERE HANDLE=#{et.handle}
<if test="et instanceof java.util.Map">
<if test="et.MP_OPTLOCK_VERSION_ORIGINAL!=null">and
${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL}
</if>
</if>
</update>
<update id="updateAllColumnById">
UPDATE Z_SURPLUS_INVENTORY <trim prefix="SET" suffixOverrides=",">
SITE=#{et.site},
PARENT_INVENTORY=#{et.parentInventory},
INVENTORY=#{et.inventory},
ITEM_BO=#{et.itemBo},
LENGHT=#{et.lenght},
WIDTH=#{et.width},
QTY=#{et.qty},
CREATE_USER=#{et.createUser},
CREATED_DATE_TIME=#{et.createdDateTime},
MODIFY_USER=#{et.modifyUser},
MODIFIED_DATE_TIME=#{et.modifiedDateTime},
</trim> WHERE HANDLE=#{et.handle}
<if test="et instanceof java.util.Map">
<if test="et.MP_OPTLOCK_VERSION_ORIGINAL!=null">and
${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL}
</if>
</if>
</update>
<update id="update">
UPDATE Z_SURPLUS_INVENTORY
<trim prefix="SET" suffixOverrides=",">
<if test="et.site!=null">SITE=#{et.site},</if>
<if test="et.parentInventory!=null">PARENT_INVENTORY=#{et.parentInventory},</if>
<if test="et.inventory!=null">INVENTORY=#{et.inventory},</if>
<if test="et.itemBo!=null">ITEM_BO=#{et.itemBo},</if>
<if test="et.lenght!=null">LENGHT=#{et.lenght},</if>
<if test="et.width!=null">WIDTH=#{et.width},</if>
<if test="et.qty!=null">QTY=#{et.qty},</if>
<if test="et.createUser!=null">CREATE_USER=#{et.createUser},</if>
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</if>
<if test="et.modifyUser!=null">MODIFY_USER=#{et.modifyUser},</if>
<if test="et.modifiedDateTime!=null">MODIFIED_DATE_TIME=#{et.modifiedDateTime},</if>
</trim>
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
HANDLE=#{ew.entity.handle}
<if test="ew.entity.site!=null">AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.parentInventory!=null">AND PARENT_INVENTORY=#{ew.entity.parentInventory}</if>
<if test="ew.entity.inventory!=null">AND INVENTORY=#{ew.entity.inventory}</if>
<if test="ew.entity.itemBo!=null">AND ITEM_BO=#{ew.entity.itemBo}</if>
<if test="ew.entity.lenght!=null">AND LENGHT=#{ew.entity.lenght}</if>
<if test="ew.entity.width!=null">AND WIDTH=#{ew.entity.width}</if>
<if test="ew.entity.qty!=null">AND QTY=#{ew.entity.qty}</if>
<if test="ew.entity.createUser!=null">AND CREATE_USER=#{ew.entity.createUser}</if>
<if test="ew.entity.createdDateTime!=null">AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifyUser!=null">AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null">AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}
</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</update>
<delete id="deleteById">
DELETE FROM Z_SURPLUS_INVENTORY WHERE HANDLE=#{handle}
</delete>
<delete id="deleteByMap">
DELETE FROM Z_SURPLUS_INVENTORY
<if test="cm!=null and !cm.isEmpty">
<where>
<foreach collection="cm.keys" item="k" separator="AND">
<if test="cm[k] != null">
${k} = #{cm[${k}]}
</if>
</foreach>
</where>
</if>
</delete>
<delete id="delete">
DELETE FROM Z_SURPLUS_INVENTORY
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.site!=null">AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.parentInventory!=null">AND PARENT_INVENTORY=#{ew.entity.parentInventory}</if>
<if test="ew.entity.inventory!=null">AND INVENTORY=#{ew.entity.inventory}</if>
<if test="ew.entity.itemBo!=null">AND ITEM_BO=#{ew.entity.itemBo}</if>
<if test="ew.entity.lenght!=null">AND LENGHT=#{ew.entity.lenght}</if>
<if test="ew.entity.width!=null">AND WIDTH=#{ew.entity.width}</if>
<if test="ew.entity.qty!=null">AND QTY=#{ew.entity.qty}</if>
<if test="ew.entity.createUser!=null">AND CREATE_USER=#{ew.entity.createUser}</if>
<if test="ew.entity.createdDateTime!=null">AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifyUser!=null">AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null">AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}
</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</delete>
<delete id="deleteBatchIds">
DELETE FROM Z_SURPLUS_INVENTORY WHERE HANDLE IN (
<foreach item="item" index="index" collection="coll" separator=",">#{item}
</foreach>)
</delete>
<!-- BaseMapper标准查询/修改/删除 -->
<select id="selectSurplusLWList" resultMap="BaseResultMap">
SELECT L.SITE, L.PARENT_INVENTORY, L.ITEM_BO, L.LENGHT, WIDTH
FROM Z_SURPLUS_INVENTORY L
LEFT JOIN (
SELECT SITE, ITEM, INVENTORY, SUM(QTY) ISSUE_QTY
FROM Z_ISSUE_ITEM
GROUP BY SITE, ITEM, INVENTORY
) F ON L.SITE = F.SITE AND L.INVENTORY = F.INVENTORY
WHERE L.SITE = #{site} AND L.PARENT_INVENTORY = #{inventory}
AND (F.ISSUE_QTY IS NULL OR L.QTY-F.ISSUE_QTY > 0 )
GROUP BY L.SITE, L.PARENT_INVENTORY, L.ITEM_BO, L.LENGHT, L.WIDTH
</select>
</mapper>