123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459 |
- <?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.steerinfo.dil.mapper.WmspInboundDistributeMapper">
- <resultMap id="BaseResultMap" type="com.steerinfo.dil.model.WmspInboundDistribute">
- <id column="DISTRIBUTE_ID" jdbcType="DECIMAL" property="distributeId" />
- <result column="INBOUND_GROUP_ID" jdbcType="DECIMAL" property="inboundGroupId" />
- <result column="PERSONNEL_WORKSHOPID" jdbcType="DECIMAL" property="personnelWorkshopid" />
- <result column="RESULT_STATUS" jdbcType="DECIMAL" property="resultStatus" />
- <result column="BATCH" jdbcType="DECIMAL" property="batch" />
- <result column="DRIVING_ID" jdbcType="DECIMAL" property="drivingId" />
- <result column="INSERT_USERNAME" jdbcType="VARCHAR" property="insertUsername" />
- <result column="INSERT_TIME" jdbcType="TIMESTAMP" property="insertTime" />
- <result column="UPDATE_USERNAME" jdbcType="VARCHAR" property="updateUsername" />
- <result column="UPDATE_TIME" jdbcType="TIMESTAMP" property="updateTime" />
- <result column="INSERT_UPDATE_REMARK" jdbcType="VARCHAR" property="insertUpdateRemark" />
-
- </resultMap>
- <sql id="columns">
- DISTRIBUTE_ID, INBOUND_GROUP_ID,PERSONNEL_WORKSHOPID, RESULT_STATUS, BATCH, DRIVING_ID, INSERT_USERNAME,
- INSERT_TIME, UPDATE_USERNAME, UPDATE_TIME, INSERT_UPDATE_REMARK
- </sql>
- <sql id="columns_alias">
- t.DISTRIBUTE_ID, t.INBOUND_GROUP_ID,PERSONNEL_WORKSHOPID, t.RESULT_STATUS, t.BATCH, t.DRIVING_ID, t.INSERT_USERNAME,
- t.INSERT_TIME, t.UPDATE_USERNAME, t.UPDATE_TIME, t.INSERT_UPDATE_REMARK
- </sql>
- <sql id="select">
- SELECT <include refid="columns"/> FROM WMSP_INBOUND_DISTRIBUTE
- </sql>
- <sql id="select_alias">
- SELECT <include refid="columns_alias"/> FROM WMSP_INBOUND_DISTRIBUTE t
- </sql>
- <sql id="where">
- <where>
- <if test="distributeId != null">
- and DISTRIBUTE_ID = #{distributeId}
- </if>
-
- <if test="inboundGroupId != null">
- and INBOUND_GROUP_ID = #{inboundGroupId}
- </if>
- <if test="personnelWorkshopid != null">
- and PERSONNEL_WORKSHOPID = #{personnelWorkshopid}
- </if>
- <if test="resultStatus != null">
- and RESULT_STATUS = #{resultStatus}
- </if>
- <if test="batch != null">
- and BATCH = #{batch}
- </if>
- <if test="drivingId != null">
- and DRIVING_ID = #{drivingId}
- </if>
- <if test="insertUsername != null and insertUsername != ''">
- and INSERT_USERNAME = #{insertUsername}
- </if>
- <if test="insertTime != null">
- and TO_CHAR(INSERT_TIME,'yyyy-MM-dd') = #{insertTime}
- </if>
- <if test="updateUsername != null and updateUsername != ''">
- and UPDATE_USERNAME = #{updateUsername}
- </if>
- <if test="updateTime != null">
- and TO_CHAR(UPDATE_TIME,'yyyy-MM-dd') = #{updateTime}
- </if>
- <if test="insertUpdateRemark != null and insertUpdateRemark != ''">
- and INSERT_UPDATE_REMARK = #{insertUpdateRemark}
- </if>
- </where>
- </sql>
- <sql id="whereLike">
- <where>
- <if test="distributeId != null">
- and DISTRIBUTE_ID = #{distributeId}
- </if>
-
- <if test="inboundGroupId != null">
- and INBOUND_GROUP_ID = #{inboundGroupId}
- </if>
- <if test="personnelWorkshopid != null">
- and PERSONNEL_WORKSHOPID = #{personnelWorkshopid}
- </if>
- <if test="resultStatus != null">
- and RESULT_STATUS = #{resultStatus}
- </if>
- <if test="batch != null">
- and BATCH = #{batch}
- </if>
- <if test="drivingId != null">
- and DRIVING_ID = #{drivingId}
- </if>
- <if test="insertUsername != null and insertUsername != ''">
- and INSERT_USERNAME LIKE '%${insertUsername}%'
- </if>
- <if test="insertTime != null">
- and TO_CHAR(INSERT_TIME,'yyyy-MM-dd') = #{insertTime}
- </if>
- <if test="updateUsername != null and updateUsername != ''">
- and UPDATE_USERNAME LIKE '%${updateUsername}%'
- </if>
- <if test="updateTime != null">
- and TO_CHAR(UPDATE_TIME,'yyyy-MM-dd') = #{updateTime}
- </if>
- <if test="insertUpdateRemark != null and insertUpdateRemark != ''">
- and INSERT_UPDATE_REMARK LIKE '%${insertUpdateRemark}%'
- </if>
- </where>
- </sql>
- <delete id="deleteByPrimaryKey" parameterType="java.math.BigDecimal">
- delete from WMSP_INBOUND_DISTRIBUTE
- where DISTRIBUTE_ID = #{distributeId,jdbcType=DECIMAL}
- </delete>
- <delete id="deleteBySelectiveElement" parameterType="java.util.HashMap">
- delete from WMSP_INBOUND_DISTRIBUTE
- where 1!=1
-
- <if test="inboundGroupId != null">
- or INBOUND_GROUP_ID = #{inboundGroupId}
- </if>
- <if test="personnelWorkshopid != null">
- or PERSONNEL_WORKSHOPID = #{personnelWorkshopid}
- </if>
- <if test="resultStatus != null">
- or RESULT_STATUS = #{resultStatus}
- </if>
- <if test="batch != null">
- or BATCH = #{batch}
- </if>
- <if test="drivingId != null">
- or DRIVING_ID = #{drivingId}
- </if>
- <if test="insertUsername != null and insertUsername != ''">
- or INSERT_USERNAME = #{insertUsername}
- </if>
- <if test="insertTime != null">
- or TO_CHAR(INSERT_TIME,'yyyy-MM-dd') = '#{insertTime}'
- </if>
- <if test="updateUsername != null and updateUsername != ''">
- or UPDATE_USERNAME = #{updateUsername}
- </if>
- <if test="updateTime != null">
- or TO_CHAR(UPDATE_TIME,'yyyy-MM-dd') = '#{updateTime}'
- </if>
- <if test="insertUpdateRemark != null and insertUpdateRemark != ''">
- or INSERT_UPDATE_REMARK = #{insertUpdateRemark}
- </if>
- </delete>
- <insert id="insert" parameterType="com.steerinfo.dil.model.WmspInboundDistribute">
- insert into WMSP_INBOUND_DISTRIBUTE (DISTRIBUTE_ID, INBOUND_GROUP_ID,PERSONNEL_WORKSHOPID, RESULT_STATUS,
- BATCH, DRIVING_ID, INSERT_USERNAME,
- INSERT_TIME, UPDATE_USERNAME, UPDATE_TIME,
- INSERT_UPDATE_REMARK)
- values (#{distributeId,jdbcType=DECIMAL}, #{inboundGroupId,jdbcType=DECIMAL}, #{personnelWorkshopid,jdbcType=DECIMAL}, #{resultStatus,jdbcType=DECIMAL},
- #{batch,jdbcType=DECIMAL}, #{drivingId,jdbcType=DECIMAL}, #{insertUsername,jdbcType=VARCHAR},
- #{insertTime,jdbcType=TIMESTAMP}, #{updateUsername,jdbcType=VARCHAR}, #{updateTime,jdbcType=TIMESTAMP},
- #{insertUpdateRemark,jdbcType=VARCHAR})
- </insert>
- <insert id="insertSelective" parameterType="com.steerinfo.dil.model.WmspInboundDistribute">
- insert into WMSP_INBOUND_DISTRIBUTE
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="distributeId != null">
- DISTRIBUTE_ID,
- </if>
-
- <if test="inboundGroupId != null">
- INBOUND_GROUP_ID,
- </if>
- <if test="personnelWorkshopid != null">
- PERSONNEL_WORKSHOPID,
- </if>
- <if test="resultStatus != null">
- RESULT_STATUS,
- </if>
- <if test="batch != null">
- BATCH,
- </if>
- <if test="drivingId != null">
- DRIVING_ID,
- </if>
- <if test="insertUsername != null">
- INSERT_USERNAME,
- </if>
- <if test="insertTime != null">
- INSERT_TIME,
- </if>
- <if test="updateUsername != null">
- UPDATE_USERNAME,
- </if>
- <if test="updateTime != null">
- UPDATE_TIME,
- </if>
- <if test="insertUpdateRemark != null">
- INSERT_UPDATE_REMARK,
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="distributeId != null">
- #{distributeId,jdbcType=DECIMAL},
- </if>
- <if test="inboundGroupId != null">
- #{inboundGroupId,jdbcType=DECIMAL},
- </if>
- <if test="personnelWorkshopid != null">
- #{personnelWorkshopid,jdbcType=DECIMAL},
- </if>
-
- <if test="resultStatus != null">
- #{resultStatus,jdbcType=DECIMAL},
- </if>
- <if test="batch != null">
- #{batch,jdbcType=DECIMAL},
- </if>
- <if test="drivingId != null">
- #{drivingId,jdbcType=DECIMAL},
- </if>
- <if test="insertUsername != null">
- #{insertUsername,jdbcType=VARCHAR},
- </if>
- <if test="insertTime != null">
- #{insertTime,jdbcType=TIMESTAMP},
- </if>
- <if test="updateUsername != null">
- #{updateUsername,jdbcType=VARCHAR},
- </if>
- <if test="updateTime != null">
- #{updateTime,jdbcType=TIMESTAMP},
- </if>
- <if test="insertUpdateRemark != null">
- #{insertUpdateRemark,jdbcType=VARCHAR},
- </if>
- </trim>
- </insert>
-
- <update id="updateByPrimaryKey" parameterType="com.steerinfo.dil.model.WmspInboundDistribute">
- update WMSP_INBOUND_DISTRIBUTE
- set INBOUND_GROUP_ID = #{inboundGroupId,jdbcType=DECIMAL},
- PERSONNEL_WORKSHOPID = #{personnelWorkshopid,jdbcType=DECIMAL},
- RESULT_STATUS = #{resultStatus,jdbcType=DECIMAL},
- BATCH = #{batch,jdbcType=DECIMAL},
- DRIVING_ID = #{drivingId,jdbcType=DECIMAL},
- INSERT_USERNAME = #{insertUsername,jdbcType=VARCHAR},
- INSERT_TIME = #{insertTime,jdbcType=TIMESTAMP},
- UPDATE_USERNAME = #{updateUsername,jdbcType=VARCHAR},
- UPDATE_TIME = #{updateTime,jdbcType=TIMESTAMP},
- INSERT_UPDATE_REMARK = #{insertUpdateRemark,jdbcType=VARCHAR}
- where DISTRIBUTE_ID = #{distributeId,jdbcType=DECIMAL}
- </update>
- <update id="updateByPrimaryKeySelective" parameterType="com.steerinfo.dil.model.WmspInboundDistribute">
- update WMSP_INBOUND_DISTRIBUTE
- <set>
-
- <if test="inboundGroupId != null">
- INBOUND_GROUP_ID = #{inboundGroupId,jdbcType=DECIMAL},
- </if>
- <if test="personnelWorkshopid != null">
- PERSONNEL_WORKSHOPID = #{personnelWorkshopid,jdbcType=DECIMAL},
- </if>
- <if test="resultStatus != null">
- RESULT_STATUS = #{resultStatus,jdbcType=DECIMAL},
- </if>
- <if test="batch != null">
- BATCH = #{batch,jdbcType=DECIMAL},
- </if>
- <if test="drivingId != null">
- DRIVING_ID = #{drivingId,jdbcType=DECIMAL},
- </if>
- <if test="insertUsername != null">
- INSERT_USERNAME = #{insertUsername,jdbcType=VARCHAR},
- </if>
- <if test="insertTime != null">
- INSERT_TIME = #{insertTime,jdbcType=TIMESTAMP},
- </if>
- <if test="updateUsername != null">
- UPDATE_USERNAME = #{updateUsername,jdbcType=VARCHAR},
- </if>
- <if test="updateTime != null">
- UPDATE_TIME = #{updateTime,jdbcType=TIMESTAMP},
- </if>
- <if test="insertUpdateRemark != null">
- INSERT_UPDATE_REMARK = #{insertUpdateRemark,jdbcType=VARCHAR},
- </if>
- </set>
- where DISTRIBUTE_ID = #{distributeId,jdbcType=DECIMAL}
- </update>
- <select id="selectByPrimaryKey" parameterType="java.math.BigDecimal" resultMap="BaseResultMap">
- <include refid="select"/>
- where DISTRIBUTE_ID = #{distributeId,jdbcType=DECIMAL}
- </select>
- <select id="selectByParameters" parameterType="java.util.HashMap" resultMap="BaseResultMap">
- <include refid="select"/>
- <include refid="where"/>
- </select>
- <select id="selectLikeByParameters" parameterType="java.util.HashMap" resultMap="BaseResultMap">
- <include refid="select"/>
- <include refid="whereLike"/>
- </select>
-
- <insert id="batchInsert" parameterType="java.util.List">
- insert into
- (DISTRIBUTE_ID,
- INBOUND_GROUP_ID,PERSONNEL_WORKSHOPID,WMSP_INBOUND_DISTRIBUTE, RESULT_STATUS,
- BATCH, DRIVING_ID, INSERT_USERNAME,
- INSERT_TIME, UPDATE_USERNAME,
- UPDATE_TIME, INSERT_UPDATE_REMARK
- )
- ( <foreach collection="list" item="item" separator="union all">
- select
- #{item.distributeId,jdbcType=DECIMAL},
- #{item.inboundGroupId,jdbcType=DECIMAL},#{item.personnelWorkshopid,jdbcType=DECIMAL}, #{item.resultStatus,jdbcType=DECIMAL},
- #{item.batch,jdbcType=DECIMAL}, #{item.drivingId,jdbcType=DECIMAL}, #{item.insertUsername,jdbcType=VARCHAR},
- #{item.insertTime,jdbcType=TIMESTAMP}, #{item.updateUsername,jdbcType=VARCHAR},
- #{item.updateTime,jdbcType=TIMESTAMP}, #{item.insertUpdateRemark,jdbcType=VARCHAR}
- from dual
- </foreach> )
- </insert>
- <update id="batchUpdate" parameterType="java.util.List">
- update WMSP_INBOUND_DISTRIBUTE
- set
- DISTRIBUTE_ID=
- <foreach collection="list" item="item" index="index" separator=" " open="case DISTRIBUTE_ID" close="end">
- when #{item.distributeId,jdbcType=DECIMAL} then #{item.distributeId,jdbcType=DECIMAL}
- </foreach>
-
- ,WMSP_INBOUND_DISTRIBUTE=
- <foreach collection="list" item="item" index="index" separator=" " open="case DISTRIBUTE_ID" close="end">
- when #{item.distributeId,jdbcType=DECIMAL} then #{item.inboundGroupId,jdbcType=DECIMAL}
- </foreach>
- ,INBOUND_GROUP_ID=
- <foreach collection="list" item="item" index="index" separator=" " open="case DISTRIBUTE_ID" close="end">
- when #{item.distributeId,jdbcType=DECIMAL} then #{item.inboundGroupId,jdbcType=DECIMAL}
- </foreach>
- ,PERSONNEL_WORKSHOPID=
- <foreach collection="list" item="item" index="index" separator=" " open="case DISTRIBUTE_ID" close="end">
- when #{item.distributeId,jdbcType=DECIMAL} then #{item.personnelWorkshopid,jdbcType=DECIMAL}
- </foreach>
- ,WMSP_INBOUND_DISTRIBUTE=
- <foreach collection="list" item="item" index="index" separator=" " open="case DISTRIBUTE_ID" close="end">
- when #{item.distributeId,jdbcType=DECIMAL} then #{item.inboundGroupId,jdbcType=DECIMAL}
- </foreach>
-
- ,RESULT_STATUS=
- <foreach collection="list" item="item" index="index" separator=" " open="case DISTRIBUTE_ID" close="end">
- when #{item.distributeId,jdbcType=DECIMAL} then #{item.resultStatus,jdbcType=DECIMAL}
- </foreach>
- ,BATCH=
- <foreach collection="list" item="item" index="index" separator=" " open="case DISTRIBUTE_ID" close="end">
- when #{item.distributeId,jdbcType=DECIMAL} then #{item.batch,jdbcType=DECIMAL}
- </foreach>
- ,DRIVING_ID=
- <foreach collection="list" item="item" index="index" separator=" " open="case DISTRIBUTE_ID" close="end">
- when #{item.distributeId,jdbcType=DECIMAL} then #{item.drivingId,jdbcType=DECIMAL}
- </foreach>
- ,INSERT_USERNAME=
- <foreach collection="list" item="item" index="index" separator=" " open="case DISTRIBUTE_ID" close="end">
- when #{item.distributeId,jdbcType=DECIMAL} then #{item.insertUsername,jdbcType=VARCHAR}
- </foreach>
- ,INSERT_TIME=
- <foreach collection="list" item="item" index="index" separator=" " open="case DISTRIBUTE_ID" close="end">
- when #{item.distributeId,jdbcType=DECIMAL} then #{item.insertTime,jdbcType=TIMESTAMP}
- </foreach>
- ,UPDATE_USERNAME=
- <foreach collection="list" item="item" index="index" separator=" " open="case DISTRIBUTE_ID" close="end">
- when #{item.distributeId,jdbcType=DECIMAL} then #{item.updateUsername,jdbcType=VARCHAR}
- </foreach>
- ,UPDATE_TIME=
- <foreach collection="list" item="item" index="index" separator=" " open="case DISTRIBUTE_ID" close="end">
- when #{item.distributeId,jdbcType=DECIMAL} then #{item.updateTime,jdbcType=TIMESTAMP}
- </foreach>
- ,INSERT_UPDATE_REMARK=
- <foreach collection="list" item="item" index="index" separator=" " open="case DISTRIBUTE_ID" close="end">
- when #{item.distributeId,jdbcType=DECIMAL} then #{item.insertUpdateRemark,jdbcType=VARCHAR}
- </foreach>
- where DISTRIBUTE_ID in
- <foreach collection="list" index="index" item="item" separator="," open="(" close=")">
- #{item.distributeId,jdbcType=DECIMAL}
- </foreach>
- </update>
-
- <delete id="batchDelete" parameterType="java.util.List">
- delete from WMSP_INBOUND_DISTRIBUTE
- where DISTRIBUTE_ID in
- <foreach collection="list" item="id" open="(" close=")" separator=",">
- #{id}
- </foreach>
- </delete>
- <!-- 友情提示!!!-->
- <!-- 请将自己写的代码放在此标签之下,方便以后粘贴复制。-->
- <select id="getNewDistribute" resultType="java.util.Map">
- select distinct
- -- 批次ID
- wir.inbound_distribute_id "distributeId",
- -- 扫码数
- wir.result_number "resultNumber",
- -- 仓库名称
- rw.WAREHOUSE_NAME "warehouseName",
- -- 仓库主键
- rw.WAREHOUSE_ID "warehouseId",
- -- 月台ID
- rpg.PLATFORM_ID "platformId",
- -- 垛位ID
- rpg.STACKING_ID "stackingId",
- -- 垛位位置
- rs.STACKING_ARRIVAL "stackingArrival",
- -- 垛位编号
- rs.STACKING_NO "stackingNo",
- -- 层次号
- rpg.GRID_GRADATION_NUMBER "gridGradationNumber",
- -- 层序号
- rpg.GRID_SEQUENCE_NUMBER "gridSequenceNumber",
- -- 物资类型ID
- rm.MATERIAL_TYPE_ID "materialTypeId",
- -- 计量单位ID
- rm.UNIT_OF_MEASURE_ID "unitOfMeasureId",
- -- 物资编码
- rm.MATERIAL_CODE "materialCode",
- -- 物资名称
- rm.MATERIAL_NAME "materialName",
- -- 规格
- rm.MATERIAL_SPECIFICATION "materialSpecification",
- -- 型号
- rm.MATERIAL_MODEL "materialMode",
- -- 长度
- rm.MATERIAL_LENGTH "materialLength"
- -- 入库作业实绩表
- from WMSP_INBOUND_RESULT wir
- -- 仓储网格表
- left join RMS_PWAREHOUSE_GRID rpg
- on rpg.GRID_ID=wir.GRID_ID
- -- 仓库表
- left join RMS_WAREHOUSE rw
- on rpg.WAREHOUSE_ID=rw.WAREHOUSE_ID
- -- 垛位表
- left join RMS_STACKING rs
- on rs.STACKING_ID=rpg.STACKING_ID
- -- 物资钢材表
- left join rms_material_steel rms
- on rms.MATERIAL_STEEL_ID=wir.material_Id
- -- 物资表
- left join rms_material rm
- on rm.material_Id=rms.material_Id
- where wir.INBOUND_DISTRIBUTE_ID
- in(
- select * from(
- select DISTRIBUTE_ID
- from WMSP_INBOUND_DISTRIBUTE
- -- 入库状态为2
- where RESULT_STATUS=2 and PERSONNEL_WORKSHOPID=#{personnelWorkshopid} order by insert_time asc
- ) where rownum=1)
- </select>
- <select id="getDistributeStatus" resultType="java.lang.Integer">
- select RESULT_STATUS from WMSP_INBOUND_DISTRIBUTE where DISTRIBUTE_ID=#{distributeId}
- </select>
- <update id="grabDistribute">
- update WMSP_INBOUND_DISTRIBUTE set DRIVING_ID=#{drivingId} , RESULT_STATUS='3' where DISTRIBUTE_ID=#{distributeId}
- </update>
- <update id="updateDistributeStatus">
- update WMSP_INBOUND_DISTRIBUTE
- set RESULT_STATUS=2 where DISTRIBUTE_ID=#{distributeId}
- </update>
- </mapper>
|