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.
125 lines
4.2 KiB
XML
125 lines
4.2 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.glxp.api.admin.dao.inventory.InvSubWarehouseDao">
|
|
|
|
<select id="filterInvSubWarehouse" parameterType="com.glxp.api.admin.req.inventory.FilterInvSubWarehouseRequest"
|
|
resultType="com.glxp.api.admin.entity.inventory.InvSubWarehouseEntity">
|
|
select *
|
|
FROM inv_warehouse_sub a
|
|
<where>
|
|
<if test="id != '' and id != null">
|
|
AND a.id = #{id}
|
|
</if>
|
|
<if test="code != '' and code != null">
|
|
AND a.code = #{code}
|
|
</if>
|
|
<if test="name != '' and name != null">
|
|
AND a.name like concat('%',#{name},'%')
|
|
</if>
|
|
<if test="parentId != '' and parentId != null">
|
|
AND a.parentId = #{parentId}
|
|
</if>
|
|
<if test="defaultInv != '' and defaultInv != null">
|
|
AND a.defaultInv = #{defaultInv}
|
|
</if>
|
|
|
|
</where>
|
|
|
|
</select>
|
|
|
|
<select id="filterGroupInvSub" parameterType="com.glxp.api.admin.req.inventory.FilterInvWarehouseRequest"
|
|
resultType="com.glxp.api.admin.entity.inventory.InvSubWarehouseEntity">
|
|
select inv_warehouse_sub.* from inv_warehouse_sub INNER JOIN inv_warehouse
|
|
on inv_warehouse_sub.parentId = inv_warehouse.code
|
|
INNER JOIN inv_warehouse_user on inv_warehouse_sub.code = inv_warehouse_user.code
|
|
<where>
|
|
<if test="userId != '' and userId != null">
|
|
AND inv_warehouse_user.userId = #{userId}
|
|
</if>
|
|
<if test="pcode != '' and pcode != null">
|
|
AND inv_warehouse.code = #{pcode}
|
|
</if>
|
|
</where>
|
|
group by inv_warehouse_sub.id
|
|
|
|
</select>
|
|
|
|
|
|
<select id="selectMaxCode" parameterType="com.glxp.api.admin.req.inventory.FilterInvSubWarehouseRequest"
|
|
resultType="com.glxp.api.admin.entity.inventory.InvSubWarehouseEntity">
|
|
select max(code) as code from inv_warehouse_sub
|
|
<where>
|
|
<if test="id != '' and id != null">
|
|
AND id = #{id}
|
|
</if>
|
|
<if test="code != '' and code != null">
|
|
AND code = #{code}
|
|
</if>
|
|
<if test="name != '' and name != null">
|
|
AND name = #{name}
|
|
</if>
|
|
<if test="parentId != '' and parentId != null">
|
|
AND parentId = #{parentId}
|
|
</if>
|
|
</where>
|
|
|
|
</select>
|
|
|
|
|
|
<insert id="insertInvSubWarehouse" keyProperty="id"
|
|
parameterType="com.glxp.api.admin.entity.inventory.InvSubWarehouseEntity">
|
|
replace
|
|
INTO inv_warehouse_sub
|
|
(id, code, `name`, parentId, remark,defaultInv)
|
|
values (
|
|
#{id},
|
|
#{code},
|
|
#{name},
|
|
#{parentId},
|
|
#{remark},
|
|
#{defaultInv}
|
|
)
|
|
</insert>
|
|
|
|
|
|
<delete id="deleteById" parameterType="Map">
|
|
DELETE
|
|
FROM inv_warehouse_sub
|
|
WHERE id = #{id}
|
|
</delete>
|
|
|
|
|
|
<delete id="deleteByParentCode" parameterType="Map">
|
|
DELETE
|
|
FROM inv_warehouse_sub
|
|
WHERE parentId = #{code}
|
|
</delete>
|
|
|
|
<update id="updateInvSubWarehouse" parameterType="com.glxp.api.admin.entity.inventory.InvSubWarehouseEntity">
|
|
UPDATE inv_warehouse_sub
|
|
<trim prefix="set" suffixOverrides=",">
|
|
<if test="name != null">name=#{name},</if>
|
|
<if test="code != null">code=#{code},</if>
|
|
<if test="parentId != null">parentId=#{parentId},</if>
|
|
<if test="remark != null">remark=#{remark},</if>
|
|
<if test="defaultInv != null">defaultInv=#{defaultInv},</if>
|
|
</trim>
|
|
WHERE id = #{id}
|
|
</update>
|
|
|
|
<insert id="importInvSubWarehouse" parameterType="java.util.List">
|
|
replace into inv_warehouse_sub
|
|
(id, code, `name`, parentId, remark,defaultInv)
|
|
values
|
|
<foreach collection="invWarehouseEntities" item="item" index="index" separator=",">
|
|
(
|
|
#{item.id},
|
|
#{item.code},
|
|
#{item.name},
|
|
#{item.parentId},
|
|
#{item.remark},#{item.defaultInv})
|
|
</foreach>
|
|
</insert>
|
|
|
|
</mapper> |