|
@@ -4,4 +4,195 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
<mapper namespace="com.warewms.ams.ndc.mapper.BaseLocationInfoMapper">
|
|
|
|
|
|
+ <resultMap type="BaseLocationInfo" id="BaseLocationInfoResult">
|
|
|
+ <result property="id" column="id" />
|
|
|
+ <result property="warehouseId" column="warehouse_id" />
|
|
|
+ <result property="zoneId" column="zone_id" />
|
|
|
+ <result property="locationNo" column="location_no" />
|
|
|
+ <result property="rowNo" column="row_no" />
|
|
|
+ <result property="rowIndex" column="row_index" />
|
|
|
+ <result property="colNo" column="col_no" />
|
|
|
+ <result property="colIndex" column="col_index" />
|
|
|
+ <result property="shiftNo" column="shift_no" />
|
|
|
+ <result property="shiftIndex" column="shift_index" />
|
|
|
+ <result property="stockStatus" column="stock_status" />
|
|
|
+ <result property="isEmpty" column="is_empty" />
|
|
|
+ <result property="bindSku" column="bind_sku" />
|
|
|
+ <result property="locationType" column="location_type" />
|
|
|
+ <result property="rackId" column="rack_id" />
|
|
|
+ <result property="agvStation" column="agv_station" />
|
|
|
+ <result property="foldedTag" column="folded_tag" />
|
|
|
+ <result property="heightLimit" column="height_limit" />
|
|
|
+ <result property="weightLimit" column="weight_limit" />
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <sql id="selectBaseLocationInfoVo">
|
|
|
+ select id, warehouse_id, zone_id, location_no, location_barcode, row_no, row_index, col_no, col_index, shift_no, shift_index, stock_status, is_empty, bind_sku, location_type, rack_id, agv_station, folded_tag, folded_count,height_limit,weight_limit, userdefine1, userdefine2, userdefine3, userdefine4, userdefine5, userdefine6, userdefine7, userdefine8, userdefine9, userdefine10, create_by, create_time, update_by, update_time, remark from base_location_info
|
|
|
+ </sql>
|
|
|
+
|
|
|
+ <select id="selectBaseLocationInfoList" parameterType="BaseLocationInfo" resultMap="BaseLocationInfoResult">
|
|
|
+ select t1.*,t2.zone_name
|
|
|
+ from base_location_info t1
|
|
|
+ left join base_location_zone t2 on t2.zone_id=t1.zone_id
|
|
|
+ <where>
|
|
|
+ <if test="id != null "> and id like concat('%', #{id}, '%')</if>
|
|
|
+ <if test="warehouseId != null "> and t1.warehouse_id = #{warehouseId}</if>
|
|
|
+ <if test="zoneId != null "> and t1.zone_id = #{zoneId}</if>
|
|
|
+ <if test="zoneName != null "> and zone_name = #{zoneName}</if>
|
|
|
+ <if test="locationNo != null and locationNo != ''"> and location_no like concat('%', #{locationNo}, '%')</if>
|
|
|
+ <if test="agvStation != null and agvStation != ''"> and agv_station like concat('%', #{agvStation}, '%')</if>
|
|
|
+ <if test="stockStatus != null and stockStatus != ''"> and stock_status = #{stockStatus}</if>
|
|
|
+ <if test="isEmpty != null and isEmpty != ''"> and is_empty = #{isEmpty}</if>
|
|
|
+ <if test="locationType != null and locationType != ''"> and location_type = #{locationType}</if>
|
|
|
+ </where>
|
|
|
+ order by location_no
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select id="selectBaseLocationInfoById" parameterType="Long" resultMap="BaseLocationInfoResult">
|
|
|
+ <include refid="selectBaseLocationInfoVo"/>
|
|
|
+ where id = #{id}
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <insert id="insertBaseLocationInfo" parameterType="BaseLocationInfo" useGeneratedKeys="true" keyProperty="id">
|
|
|
+ insert into base_location_info
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="warehouseId != null">warehouse_id,</if>
|
|
|
+ <if test="zoneId != null">zone_id,</if>
|
|
|
+ <if test="locationNo != null">location_no,</if>
|
|
|
+ <if test="locationBarcode != null">location_barcode,</if>
|
|
|
+ <if test="rowNo != null">row_no,</if>
|
|
|
+ <if test="rowIndex != null">row_index,</if>
|
|
|
+ <if test="colNo != null">col_no,</if>
|
|
|
+ <if test="colIndex != null">col_index,</if>
|
|
|
+ <if test="shiftNo != null">shift_no,</if>
|
|
|
+ <if test="shiftIndex != null">shift_index,</if>
|
|
|
+ <if test="stockStatus != null">stock_status,</if>
|
|
|
+ <if test="isEmpty != null">is_empty,</if>
|
|
|
+ <if test="bindSku != null">bind_sku,</if>
|
|
|
+ <if test="locationType != null">location_type,</if>
|
|
|
+ <if test="rackId != null">rack_id,</if>
|
|
|
+ <if test="agvStation != null">agv_station,</if>
|
|
|
+ <if test="foldedTag != null">folded_tag,</if>
|
|
|
+ <if test="foldedCount != null">folded_count,</if>
|
|
|
+ <if test="heightLimit != null">height_limit,</if>
|
|
|
+ <if test="weightLimit != null">weight_limit,</if>
|
|
|
+ <if test="userdefine1 != null">userdefine1,</if>
|
|
|
+ <if test="userdefine2 != null">userdefine2,</if>
|
|
|
+ <if test="userdefine3 != null">userdefine3,</if>
|
|
|
+ <if test="userdefine4 != null">userdefine4,</if>
|
|
|
+ <if test="userdefine5 != null">userdefine5,</if>
|
|
|
+ <if test="userdefine6 != null">userdefine6,</if>
|
|
|
+ <if test="userdefine7 != null">userdefine7,</if>
|
|
|
+ <if test="userdefine8 != null">userdefine8,</if>
|
|
|
+ <if test="userdefine9 != null">userdefine9,</if>
|
|
|
+ <if test="userdefine10 != null">userdefine10,</if>
|
|
|
+ <if test="createBy != null">create_by,</if>
|
|
|
+ <if test="createTime != null">create_time,</if>
|
|
|
+ <if test="updateBy != null">update_by,</if>
|
|
|
+ <if test="updateTime != null">update_time,</if>
|
|
|
+ <if test="remark != null">remark,</if>
|
|
|
+ </trim>
|
|
|
+ <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="warehouseId != null">#{warehouseId},</if>
|
|
|
+ <if test="zoneId != null">#{zoneId},</if>
|
|
|
+ <if test="locationNo != null">#{locationNo},</if>
|
|
|
+ <if test="locationBarcode != null">#{locationBarcode},</if>
|
|
|
+ <if test="rowNo != null">#{rowNo},</if>
|
|
|
+ <if test="rowIndex != null">#{rowIndex},</if>
|
|
|
+ <if test="colNo != null">#{colNo},</if>
|
|
|
+ <if test="colIndex != null">#{colIndex},</if>
|
|
|
+ <if test="shiftNo != null">#{shiftNo},</if>
|
|
|
+ <if test="shiftIndex != null">#{shiftIndex},</if>
|
|
|
+ <if test="stockStatus != null">#{stockStatus},</if>
|
|
|
+ <if test="isEmpty != null">#{isEmpty},</if>
|
|
|
+ <if test="bindSku != null">#{bindSku},</if>
|
|
|
+ <if test="locationType != null">#{locationType},</if>
|
|
|
+ <if test="rackId != null">#{rackId},</if>
|
|
|
+ <if test="agvStation != null">#{agvStation},</if>
|
|
|
+ <if test="foldedTag != null">#{foldedTag},</if>
|
|
|
+ <if test="foldedCount != null">#{foldedCount},</if>
|
|
|
+ <if test="heightLimit != null">#{heightLimit},</if>
|
|
|
+ <if test="weightLimit != null">#{weightLimit},</if>
|
|
|
+ <if test="userdefine1 != null">#{userdefine1},</if>
|
|
|
+ <if test="userdefine2 != null">#{userdefine2},</if>
|
|
|
+ <if test="userdefine3 != null">#{userdefine3},</if>
|
|
|
+ <if test="userdefine4 != null">#{userdefine4},</if>
|
|
|
+ <if test="userdefine5 != null">#{userdefine5},</if>
|
|
|
+ <if test="userdefine6 != null">#{userdefine6},</if>
|
|
|
+ <if test="userdefine7 != null">#{userdefine7},</if>
|
|
|
+ <if test="userdefine8 != null">#{userdefine8},</if>
|
|
|
+ <if test="userdefine9 != null">#{userdefine9},</if>
|
|
|
+ <if test="userdefine10 != null">#{userdefine10},</if>
|
|
|
+ <if test="createBy != null">#{createBy},</if>
|
|
|
+ <if test="createTime != null">#{createTime},</if>
|
|
|
+ <if test="updateBy != null">#{updateBy},</if>
|
|
|
+ <if test="updateTime != null">#{updateTime},</if>
|
|
|
+ <if test="remark != null">#{remark},</if>
|
|
|
+ </trim>
|
|
|
+ </insert>
|
|
|
+
|
|
|
+ <update id="updateBaseLocationInfo" parameterType="BaseLocationInfo">
|
|
|
+ update base_location_info
|
|
|
+ <trim prefix="SET" suffixOverrides=",">
|
|
|
+ <if test="warehouseId != null">warehouse_id = #{warehouseId},</if>
|
|
|
+ <if test="zoneId != null">zone_id = #{zoneId},</if>
|
|
|
+ <if test="locationNo != null">location_no = #{locationNo},</if>
|
|
|
+ <if test="locationBarcode != null">location_barcode = #{locationBarcode},</if>
|
|
|
+ <if test="rowNo != null">row_no = #{rowNo},</if>
|
|
|
+ <if test="rowIndex != null">row_index = #{rowIndex},</if>
|
|
|
+ <if test="colNo != null">col_no = #{colNo},</if>
|
|
|
+ <if test="colIndex != null">col_index = #{colIndex},</if>
|
|
|
+ <if test="shiftNo != null">shift_no = #{shiftNo},</if>
|
|
|
+ <if test="shiftIndex != null">shift_index = #{shiftIndex},</if>
|
|
|
+ <if test="stockStatus != null">stock_status = #{stockStatus},</if>
|
|
|
+ <if test="isEmpty != null">is_empty = #{isEmpty},</if>
|
|
|
+ <if test="bindSku != null">bind_sku = #{bindSku},</if>
|
|
|
+ <if test="locationType != null">location_type = #{locationType},</if>
|
|
|
+ <if test="rackId != null">rack_id = #{rackId},</if>
|
|
|
+ <if test="agvStation != null">agv_station = #{agvStation},</if>
|
|
|
+ <if test="foldedTag != null">folded_tag = #{foldedTag},</if>
|
|
|
+ <if test="foldedCount != null">folded_count = #{foldedCount},</if>
|
|
|
+ <if test="heightLimit != null">height_limit = #{heightLimit},</if>
|
|
|
+ <if test="weightLimit != null">weight_limit = #{weightLimit},</if>
|
|
|
+ <if test="userdefine1 != null">userdefine1 = #{userdefine1},</if>
|
|
|
+ <if test="userdefine2 != null">userdefine2 = #{userdefine2},</if>
|
|
|
+ <if test="userdefine3 != null">userdefine3 = #{userdefine3},</if>
|
|
|
+ <if test="userdefine4 != null">userdefine4 = #{userdefine4},</if>
|
|
|
+ <if test="userdefine5 != null">userdefine5 = #{userdefine5},</if>
|
|
|
+ <if test="userdefine6 != null">userdefine6 = #{userdefine6},</if>
|
|
|
+ <if test="userdefine7 != null">userdefine7 = #{userdefine7},</if>
|
|
|
+ <if test="userdefine8 != null">userdefine8 = #{userdefine8},</if>
|
|
|
+ <if test="userdefine9 != null">userdefine9 = #{userdefine9},</if>
|
|
|
+ <if test="userdefine10 != null">userdefine10 = #{userdefine10},</if>
|
|
|
+ <if test="createBy != null">create_by = #{createBy},</if>
|
|
|
+ <if test="createTime != null">create_time = #{createTime},</if>
|
|
|
+ <if test="updateBy != null">update_by = #{updateBy},</if>
|
|
|
+ <if test="updateTime != null">update_time = #{updateTime},</if>
|
|
|
+ <if test="remark != null">remark = #{remark},</if>
|
|
|
+ </trim>
|
|
|
+ where id = #{id}
|
|
|
+ </update>
|
|
|
+
|
|
|
+ <delete id="deleteBaseLocationInfoById" parameterType="Long">
|
|
|
+ delete from base_location_info where id = #{id}
|
|
|
+ </delete>
|
|
|
+
|
|
|
+ <delete id="deleteBaseLocationInfoByIds" parameterType="String">
|
|
|
+ delete from base_location_info where id in
|
|
|
+ <foreach item="id" collection="array" open="(" separator="," close=")">
|
|
|
+ #{id}
|
|
|
+ </foreach>
|
|
|
+ </delete>
|
|
|
+
|
|
|
+ <select id="selectSortedLocationListByZoneId" parameterType="BaseLocationInfo" resultMap="BaseLocationInfoResult">
|
|
|
+ <include refid="selectBaseLocationInfoVo"/>
|
|
|
+ where warehouse_id = #{warehouseId} and zone_id = #{zoneId}
|
|
|
+ <if test="orderByClause != null and orderByClause != ''" >
|
|
|
+ order by ${orderByClause}
|
|
|
+ </if>
|
|
|
+ <if test="orderByClause == null or orderByClause == ''">
|
|
|
+ order by shift_no + 0,shift_index
|
|
|
+ </if>
|
|
|
+ </select>
|
|
|
+
|
|
|
</mapper>
|