流转卡相关功能
This commit is contained in:
169
ktg-mes/src/main/resources/mapper/pro/ProCardMapper.xml
Normal file
169
ktg-mes/src/main/resources/mapper/pro/ProCardMapper.xml
Normal file
@@ -0,0 +1,169 @@
|
||||
<?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.ktg.mes.pro.mapper.ProCardMapper">
|
||||
|
||||
<resultMap type="ProCard" id="ProCardResult">
|
||||
<result property="cardId" column="card_id" />
|
||||
<result property="cardCode" column="card_code" />
|
||||
<result property="workorderId" column="workorder_id" />
|
||||
<result property="workorderCode" column="workorder_code" />
|
||||
<result property="workorderName" column="workorder_name" />
|
||||
<result property="batchCode" column="batch_code" />
|
||||
<result property="itemId" column="item_id" />
|
||||
<result property="itemCode" column="item_code" />
|
||||
<result property="itemName" column="item_name" />
|
||||
<result property="specification" column="specification" />
|
||||
<result property="unitOfMeasure" column="unit_of_measure" />
|
||||
<result property="barcodeUrl" column="barcode_url" />
|
||||
<result property="quantityTransfered" column="quantity_transfered" />
|
||||
<result property="status" column="status" />
|
||||
<result property="remark" column="remark" />
|
||||
<result property="attr1" column="attr1" />
|
||||
<result property="attr2" column="attr2" />
|
||||
<result property="attr3" column="attr3" />
|
||||
<result property="attr4" column="attr4" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="inputTime" column="input_time" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectProCardVo">
|
||||
select card_id, card_code, workorder_id, workorder_code, workorder_name, batch_code, item_id, item_code, item_name, specification, unit_of_measure, barcode_url, quantity_transfered, status, remark, attr1, attr2, attr3, attr4, create_by, create_time, update_by, update_time from pro_card
|
||||
</sql>
|
||||
|
||||
<select id="selectProCardList" parameterType="ProCard" resultMap="ProCardResult">
|
||||
<include refid="selectProCardVo"/>
|
||||
<where>
|
||||
<if test="cardCode != null and cardCode != ''"> and card_code = #{cardCode}</if>
|
||||
<if test="workorderId != null "> and workorder_id = #{workorderId}</if>
|
||||
<if test="workorderCode != null and workorderCode != ''"> and workorder_code = #{workorderCode}</if>
|
||||
<if test="workorderName != null and workorderName != ''"> and workorder_name like concat('%', #{workorderName}, '%')</if>
|
||||
<if test="batchCode != null and batchCode != ''"> and batch_code = #{batchCode}</if>
|
||||
<if test="itemId != null "> and item_id = #{itemId}</if>
|
||||
<if test="itemCode != null and itemCode != ''"> and item_code = #{itemCode}</if>
|
||||
<if test="itemName != null and itemName != ''"> and item_name like concat('%', #{itemName}, '%')</if>
|
||||
<if test="specification != null and specification != ''"> and specification = #{specification}</if>
|
||||
<if test="unitOfMeasure != null and unitOfMeasure != ''"> and unit_of_measure = #{unitOfMeasure}</if>
|
||||
<if test="barcodeUrl != null and barcodeUrl != ''"> and barcode_url = #{barcodeUrl}</if>
|
||||
<if test="quantityTransfered != null "> and quantity_transfered = #{quantityTransfered}</if>
|
||||
<if test="status != null and status != ''"> and status = #{status}</if>
|
||||
<if test="attr1 != null and attr1 != ''"> and attr1 = #{attr1}</if>
|
||||
<if test="attr2 != null and attr2 != ''"> and attr2 = #{attr2}</if>
|
||||
<if test="attr3 != null "> and attr3 = #{attr3}</if>
|
||||
<if test="attr4 != null "> and attr4 = #{attr4}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectProCardByCardId" parameterType="Long" resultMap="ProCardResult">
|
||||
<include refid="selectProCardVo"/>
|
||||
where card_id = #{cardId}
|
||||
</select>
|
||||
|
||||
<select id="getStationList" parameterType="ProCard" resultMap="ProCardResult">
|
||||
select pc.card_id,pc.card_code,pc.workorder_id,pc.workorder_code,pc.workorder_name,pc.item_id,pc.item_code,pc.item_name,pc.specification, pc.unit_of_measure,pc.quantity_transfered,
|
||||
pcp.record_id,pcp.workstation_id,pcp.input_time
|
||||
from pro_card pc
|
||||
left join pro_card_process pcp
|
||||
on pc.card_id = pcp.card_id
|
||||
where pc.workorder_id = #{workOrderId}
|
||||
and pc.workstation_id = #{workStationId}
|
||||
order by pcp.input_time desc
|
||||
</select>
|
||||
|
||||
|
||||
<insert id="insertProCard" parameterType="ProCard" useGeneratedKeys="true" keyProperty="cardId">
|
||||
insert into pro_card
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="cardCode != null">card_code,</if>
|
||||
<if test="workorderId != null">workorder_id,</if>
|
||||
<if test="workorderCode != null">workorder_code,</if>
|
||||
<if test="workorderName != null">workorder_name,</if>
|
||||
<if test="batchCode != null">batch_code,</if>
|
||||
<if test="itemId != null">item_id,</if>
|
||||
<if test="itemCode != null and itemCode != ''">item_code,</if>
|
||||
<if test="itemName != null and itemName != ''">item_name,</if>
|
||||
<if test="specification != null">specification,</if>
|
||||
<if test="unitOfMeasure != null and unitOfMeasure != ''">unit_of_measure,</if>
|
||||
<if test="barcodeUrl != null">barcode_url,</if>
|
||||
<if test="quantityTransfered != null">quantity_transfered,</if>
|
||||
<if test="status != null">status,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
<if test="attr1 != null">attr1,</if>
|
||||
<if test="attr2 != null">attr2,</if>
|
||||
<if test="attr3 != null">attr3,</if>
|
||||
<if test="attr4 != null">attr4,</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>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="cardCode != null">#{cardCode},</if>
|
||||
<if test="workorderId != null">#{workorderId},</if>
|
||||
<if test="workorderCode != null">#{workorderCode},</if>
|
||||
<if test="workorderName != null">#{workorderName},</if>
|
||||
<if test="batchCode != null">#{batchCode},</if>
|
||||
<if test="itemId != null">#{itemId},</if>
|
||||
<if test="itemCode != null and itemCode != ''">#{itemCode},</if>
|
||||
<if test="itemName != null and itemName != ''">#{itemName},</if>
|
||||
<if test="specification != null">#{specification},</if>
|
||||
<if test="unitOfMeasure != null and unitOfMeasure != ''">#{unitOfMeasure},</if>
|
||||
<if test="barcodeUrl != null">#{barcodeUrl},</if>
|
||||
<if test="quantityTransfered != null">#{quantityTransfered},</if>
|
||||
<if test="status != null">#{status},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
<if test="attr1 != null">#{attr1},</if>
|
||||
<if test="attr2 != null">#{attr2},</if>
|
||||
<if test="attr3 != null">#{attr3},</if>
|
||||
<if test="attr4 != null">#{attr4},</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>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateProCard" parameterType="ProCard">
|
||||
update pro_card
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="cardCode != null">card_code = #{cardCode},</if>
|
||||
<if test="workorderId != null">workorder_id = #{workorderId},</if>
|
||||
<if test="workorderCode != null">workorder_code = #{workorderCode},</if>
|
||||
<if test="workorderName != null">workorder_name = #{workorderName},</if>
|
||||
<if test="batchCode != null">batch_code = #{batchCode},</if>
|
||||
<if test="itemId != null">item_id = #{itemId},</if>
|
||||
<if test="itemCode != null and itemCode != ''">item_code = #{itemCode},</if>
|
||||
<if test="itemName != null and itemName != ''">item_name = #{itemName},</if>
|
||||
<if test="specification != null">specification = #{specification},</if>
|
||||
<if test="unitOfMeasure != null and unitOfMeasure != ''">unit_of_measure = #{unitOfMeasure},</if>
|
||||
<if test="barcodeUrl != null">barcode_url = #{barcodeUrl},</if>
|
||||
<if test="quantityTransfered != null">quantity_transfered = #{quantityTransfered},</if>
|
||||
<if test="status != null">status = #{status},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="attr1 != null">attr1 = #{attr1},</if>
|
||||
<if test="attr2 != null">attr2 = #{attr2},</if>
|
||||
<if test="attr3 != null">attr3 = #{attr3},</if>
|
||||
<if test="attr4 != null">attr4 = #{attr4},</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>
|
||||
</trim>
|
||||
where card_id = #{cardId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteProCardByCardId" parameterType="Long">
|
||||
delete from pro_card where card_id = #{cardId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteProCardByCardIds" parameterType="String">
|
||||
delete from pro_card where card_id in
|
||||
<foreach item="cardId" collection="array" open="(" separator="," close=")">
|
||||
#{cardId}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
||||
181
ktg-mes/src/main/resources/mapper/pro/ProCardProcessMapper.xml
Normal file
181
ktg-mes/src/main/resources/mapper/pro/ProCardProcessMapper.xml
Normal file
@@ -0,0 +1,181 @@
|
||||
<?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.ktg.mes.pro.mapper.ProCardProcessMapper">
|
||||
|
||||
<resultMap type="ProCardProcess" id="ProCardProcessResult">
|
||||
<result property="recordId" column="record_id" />
|
||||
<result property="cardId" column="card_id" />
|
||||
<result property="cardCode" column="card_code" />
|
||||
<result property="seqNum" column="seq_num" />
|
||||
<result property="processId" column="process_id" />
|
||||
<result property="processCode" column="process_code" />
|
||||
<result property="processName" column="process_name" />
|
||||
<result property="inputTime" column="input_time" />
|
||||
<result property="outputTime" column="output_time" />
|
||||
<result property="quantityInput" column="quantity_input" />
|
||||
<result property="quantityOutput" column="quantity_output" />
|
||||
<result property="quantityUnquanlify" column="quantity_unquanlify" />
|
||||
<result property="workstationId" column="workstation_id" />
|
||||
<result property="workstationCode" column="workstation_code" />
|
||||
<result property="workstationName" column="workstation_name" />
|
||||
<result property="userId" column="user_id" />
|
||||
<result property="userName" column="user_name" />
|
||||
<result property="nickName" column="nick_name" />
|
||||
<result property="ipqcId" column="ipqc_id" />
|
||||
<result property="remark" column="remark" />
|
||||
<result property="attr1" column="attr1" />
|
||||
<result property="attr2" column="attr2" />
|
||||
<result property="attr3" column="attr3" />
|
||||
<result property="attr4" column="attr4" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectProCardProcessVo">
|
||||
select record_id, card_id, card_code, seq_num, process_id, process_code, process_name, input_time, output_time, quantity_input, quantity_output, quantity_unquanlify, workstation_id, workstation_code, workstation_name, user_id, user_name, nick_name, ipqc_id, remark, attr1, attr2, attr3, attr4, create_by, create_time, update_by, update_time from pro_card_process
|
||||
</sql>
|
||||
|
||||
<select id="selectProCardProcessList" parameterType="ProCardProcess" resultMap="ProCardProcessResult">
|
||||
<include refid="selectProCardProcessVo"/>
|
||||
<where>
|
||||
<if test="cardId != null "> and card_id = #{cardId}</if>
|
||||
<if test="cardCode != null and cardCode != ''"> and card_code = #{cardCode}</if>
|
||||
<if test="seqNum != null "> and seq_num = #{seqNum}</if>
|
||||
<if test="processId != null "> and process_id = #{processId}</if>
|
||||
<if test="processCode != null and processCode != ''"> and process_code = #{processCode}</if>
|
||||
<if test="processName != null and processName != ''"> and process_name like concat('%', #{processName}, '%')</if>
|
||||
<if test="inputTime != null "> and input_time = #{inputTime}</if>
|
||||
<if test="outputTime != null "> and output_time = #{outputTime}</if>
|
||||
<if test="quantityInput != null "> and quantity_input = #{quantityInput}</if>
|
||||
<if test="quantityOutput != null "> and quantity_output = #{quantityOutput}</if>
|
||||
<if test="quantityUnquanlify != null "> and quantity_unquanlify = #{quantityUnquanlify}</if>
|
||||
<if test="workstationId != null "> and workstation_id = #{workstationId}</if>
|
||||
<if test="workstationCode != null and workstationCode != ''"> and workstation_code = #{workstationCode}</if>
|
||||
<if test="workstationName != null and workstationName != ''"> and workstation_name like concat('%', #{workstationName}, '%')</if>
|
||||
<if test="userId != null "> and user_id = #{userId}</if>
|
||||
<if test="userName != null and userName != ''"> and user_name like concat('%', #{userName}, '%')</if>
|
||||
<if test="nickName != null and nickName != ''"> and nick_name like concat('%', #{nickName}, '%')</if>
|
||||
<if test="ipqcId != null "> and ipqc_id = #{ipqcId}</if>
|
||||
<if test="attr1 != null and attr1 != ''"> and attr1 = #{attr1}</if>
|
||||
<if test="attr2 != null and attr2 != ''"> and attr2 = #{attr2}</if>
|
||||
<if test="attr3 != null "> and attr3 = #{attr3}</if>
|
||||
<if test="attr4 != null "> and attr4 = #{attr4}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectProCardProcessByRecordId" parameterType="Long" resultMap="ProCardProcessResult">
|
||||
<include refid="selectProCardProcessVo"/>
|
||||
where record_id = #{recordId}
|
||||
</select>
|
||||
|
||||
<insert id="insertProCardProcess" parameterType="ProCardProcess" useGeneratedKeys="true" keyProperty="recordId">
|
||||
insert into pro_card_process
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="cardId != null">card_id,</if>
|
||||
<if test="cardCode != null">card_code,</if>
|
||||
<if test="seqNum != null">seq_num,</if>
|
||||
<if test="processId != null">process_id,</if>
|
||||
<if test="processCode != null">process_code,</if>
|
||||
<if test="processName != null">process_name,</if>
|
||||
<if test="inputTime != null">input_time,</if>
|
||||
<if test="outputTime != null">output_time,</if>
|
||||
<if test="quantityInput != null">quantity_input,</if>
|
||||
<if test="quantityOutput != null">quantity_output,</if>
|
||||
<if test="quantityUnquanlify != null">quantity_unquanlify,</if>
|
||||
<if test="workstationId != null">workstation_id,</if>
|
||||
<if test="workstationCode != null">workstation_code,</if>
|
||||
<if test="workstationName != null">workstation_name,</if>
|
||||
<if test="userId != null">user_id,</if>
|
||||
<if test="userName != null">user_name,</if>
|
||||
<if test="nickName != null">nick_name,</if>
|
||||
<if test="ipqcId != null">ipqc_id,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
<if test="attr1 != null">attr1,</if>
|
||||
<if test="attr2 != null">attr2,</if>
|
||||
<if test="attr3 != null">attr3,</if>
|
||||
<if test="attr4 != null">attr4,</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>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="cardId != null">#{cardId},</if>
|
||||
<if test="cardCode != null">#{cardCode},</if>
|
||||
<if test="seqNum != null">#{seqNum},</if>
|
||||
<if test="processId != null">#{processId},</if>
|
||||
<if test="processCode != null">#{processCode},</if>
|
||||
<if test="processName != null">#{processName},</if>
|
||||
<if test="inputTime != null">#{inputTime},</if>
|
||||
<if test="outputTime != null">#{outputTime},</if>
|
||||
<if test="quantityInput != null">#{quantityInput},</if>
|
||||
<if test="quantityOutput != null">#{quantityOutput},</if>
|
||||
<if test="quantityUnquanlify != null">#{quantityUnquanlify},</if>
|
||||
<if test="workstationId != null">#{workstationId},</if>
|
||||
<if test="workstationCode != null">#{workstationCode},</if>
|
||||
<if test="workstationName != null">#{workstationName},</if>
|
||||
<if test="userId != null">#{userId},</if>
|
||||
<if test="userName != null">#{userName},</if>
|
||||
<if test="nickName != null">#{nickName},</if>
|
||||
<if test="ipqcId != null">#{ipqcId},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
<if test="attr1 != null">#{attr1},</if>
|
||||
<if test="attr2 != null">#{attr2},</if>
|
||||
<if test="attr3 != null">#{attr3},</if>
|
||||
<if test="attr4 != null">#{attr4},</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>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateProCardProcess" parameterType="ProCardProcess">
|
||||
update pro_card_process
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="cardId != null">card_id = #{cardId},</if>
|
||||
<if test="cardCode != null">card_code = #{cardCode},</if>
|
||||
<if test="seqNum != null">seq_num = #{seqNum},</if>
|
||||
<if test="processId != null">process_id = #{processId},</if>
|
||||
<if test="processCode != null">process_code = #{processCode},</if>
|
||||
<if test="processName != null">process_name = #{processName},</if>
|
||||
<if test="inputTime != null">input_time = #{inputTime},</if>
|
||||
<if test="outputTime != null">output_time = #{outputTime},</if>
|
||||
<if test="quantityInput != null">quantity_input = #{quantityInput},</if>
|
||||
<if test="quantityOutput != null">quantity_output = #{quantityOutput},</if>
|
||||
<if test="quantityUnquanlify != null">quantity_unquanlify = #{quantityUnquanlify},</if>
|
||||
<if test="workstationId != null">workstation_id = #{workstationId},</if>
|
||||
<if test="workstationCode != null">workstation_code = #{workstationCode},</if>
|
||||
<if test="workstationName != null">workstation_name = #{workstationName},</if>
|
||||
<if test="userId != null">user_id = #{userId},</if>
|
||||
<if test="userName != null">user_name = #{userName},</if>
|
||||
<if test="nickName != null">nick_name = #{nickName},</if>
|
||||
<if test="ipqcId != null">ipqc_id = #{ipqcId},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="attr1 != null">attr1 = #{attr1},</if>
|
||||
<if test="attr2 != null">attr2 = #{attr2},</if>
|
||||
<if test="attr3 != null">attr3 = #{attr3},</if>
|
||||
<if test="attr4 != null">attr4 = #{attr4},</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>
|
||||
</trim>
|
||||
where record_id = #{recordId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteProCardProcessByRecordId" parameterType="Long">
|
||||
delete from pro_card_process where record_id = #{recordId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteProCardProcessByRecordIds" parameterType="String">
|
||||
delete from pro_card_process where record_id in
|
||||
<foreach item="recordId" collection="array" open="(" separator="," close=")">
|
||||
#{recordId}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
||||
177
ktg-mes/src/main/resources/mapper/pro/ProSnProcessMapper.xml
Normal file
177
ktg-mes/src/main/resources/mapper/pro/ProSnProcessMapper.xml
Normal file
@@ -0,0 +1,177 @@
|
||||
<?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.ktg.mes.pro.mapper.ProSnProcessMapper">
|
||||
|
||||
<resultMap type="ProSnProcess" id="ProSnProcessResult">
|
||||
<result property="recordId" column="record_id" />
|
||||
<result property="snId" column="sn_id" />
|
||||
<result property="snCode" column="sn_code" />
|
||||
<result property="seqNum" column="seq_num" />
|
||||
<result property="processId" column="process_id" />
|
||||
<result property="processCode" column="process_code" />
|
||||
<result property="processName" column="process_name" />
|
||||
<result property="inputTime" column="input_time" />
|
||||
<result property="outputTime" column="output_time" />
|
||||
<result property="quantityInput" column="quantity_input" />
|
||||
<result property="quantityOutput" column="quantity_output" />
|
||||
<result property="quantityUnquanlify" column="quantity_unquanlify" />
|
||||
<result property="workstationId" column="workstation_id" />
|
||||
<result property="workstationCode" column="workstation_code" />
|
||||
<result property="workstationName" column="workstation_name" />
|
||||
<result property="userId" column="user_id" />
|
||||
<result property="userName" column="user_name" />
|
||||
<result property="nickName" column="nick_name" />
|
||||
<result property="ipqcId" column="ipqc_id" />
|
||||
<result property="remark" column="remark" />
|
||||
<result property="attr1" column="attr1" />
|
||||
<result property="attr2" column="attr2" />
|
||||
<result property="attr3" column="attr3" />
|
||||
<result property="attr4" column="attr4" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectProSnProcessVo">
|
||||
select record_id, sn_id, sn_code, seq_num, process_id, process_code, process_name, input_time, output_time, quantity_input, quantity_output, quantity_unquanlify, workstation_id, workstation_code, workstation_name, user_id, user_name, nick_name, ipqc_id, remark, attr1, attr2, attr3, attr4, create_by, create_time, update_by, update_time from pro_sn_process
|
||||
</sql>
|
||||
|
||||
<select id="selectProSnProcessList" parameterType="ProSnProcess" resultMap="ProSnProcessResult">
|
||||
<include refid="selectProSnProcessVo"/>
|
||||
<where>
|
||||
<if test="snId != null "> and sn_id = #{snId}</if>
|
||||
<if test="snCode != null and snCode != ''"> and sn_code = #{snCode}</if>
|
||||
<if test="seqNum != null "> and seq_num = #{seqNum}</if>
|
||||
<if test="processId != null "> and process_id = #{processId}</if>
|
||||
<if test="processCode != null and processCode != ''"> and process_code = #{processCode}</if>
|
||||
<if test="processName != null and processName != ''"> and process_name like concat('%', #{processName}, '%')</if>
|
||||
<if test="inputTime != null "> and input_time = #{inputTime}</if>
|
||||
<if test="outputTime != null "> and output_time = #{outputTime}</if>
|
||||
<if test="quantityInput != null "> and quantity_input = #{quantityInput}</if>
|
||||
<if test="quantityOutput != null "> and quantity_output = #{quantityOutput}</if>
|
||||
<if test="quantityUnquanlify != null "> and quantity_unquanlify = #{quantityUnquanlify}</if>
|
||||
<if test="workstationId != null "> and workstation_id = #{workstationId}</if>
|
||||
<if test="workstationCode != null and workstationCode != ''"> and workstation_code = #{workstationCode}</if>
|
||||
<if test="workstationName != null and workstationName != ''"> and workstation_name like concat('%', #{workstationName}, '%')</if>
|
||||
<if test="userId != null "> and user_id = #{userId}</if>
|
||||
<if test="userName != null and userName != ''"> and user_name like concat('%', #{userName}, '%')</if>
|
||||
<if test="nickName != null and nickName != ''"> and nick_name like concat('%', #{nickName}, '%')</if>
|
||||
<if test="ipqcId != null "> and ipqc_id = #{ipqcId}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectProSnProcessByRecordId" parameterType="Long" resultMap="ProSnProcessResult">
|
||||
<include refid="selectProSnProcessVo"/>
|
||||
where record_id = #{recordId}
|
||||
</select>
|
||||
|
||||
<insert id="insertProSnProcess" parameterType="ProSnProcess" useGeneratedKeys="true" keyProperty="recordId">
|
||||
insert into pro_sn_process
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="snId != null">sn_id,</if>
|
||||
<if test="snCode != null">sn_code,</if>
|
||||
<if test="seqNum != null">seq_num,</if>
|
||||
<if test="processId != null">process_id,</if>
|
||||
<if test="processCode != null">process_code,</if>
|
||||
<if test="processName != null">process_name,</if>
|
||||
<if test="inputTime != null">input_time,</if>
|
||||
<if test="outputTime != null">output_time,</if>
|
||||
<if test="quantityInput != null">quantity_input,</if>
|
||||
<if test="quantityOutput != null">quantity_output,</if>
|
||||
<if test="quantityUnquanlify != null">quantity_unquanlify,</if>
|
||||
<if test="workstationId != null">workstation_id,</if>
|
||||
<if test="workstationCode != null">workstation_code,</if>
|
||||
<if test="workstationName != null">workstation_name,</if>
|
||||
<if test="userId != null">user_id,</if>
|
||||
<if test="userName != null">user_name,</if>
|
||||
<if test="nickName != null">nick_name,</if>
|
||||
<if test="ipqcId != null">ipqc_id,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
<if test="attr1 != null">attr1,</if>
|
||||
<if test="attr2 != null">attr2,</if>
|
||||
<if test="attr3 != null">attr3,</if>
|
||||
<if test="attr4 != null">attr4,</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>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="snId != null">#{snId},</if>
|
||||
<if test="snCode != null">#{snCode},</if>
|
||||
<if test="seqNum != null">#{seqNum},</if>
|
||||
<if test="processId != null">#{processId},</if>
|
||||
<if test="processCode != null">#{processCode},</if>
|
||||
<if test="processName != null">#{processName},</if>
|
||||
<if test="inputTime != null">#{inputTime},</if>
|
||||
<if test="outputTime != null">#{outputTime},</if>
|
||||
<if test="quantityInput != null">#{quantityInput},</if>
|
||||
<if test="quantityOutput != null">#{quantityOutput},</if>
|
||||
<if test="quantityUnquanlify != null">#{quantityUnquanlify},</if>
|
||||
<if test="workstationId != null">#{workstationId},</if>
|
||||
<if test="workstationCode != null">#{workstationCode},</if>
|
||||
<if test="workstationName != null">#{workstationName},</if>
|
||||
<if test="userId != null">#{userId},</if>
|
||||
<if test="userName != null">#{userName},</if>
|
||||
<if test="nickName != null">#{nickName},</if>
|
||||
<if test="ipqcId != null">#{ipqcId},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
<if test="attr1 != null">#{attr1},</if>
|
||||
<if test="attr2 != null">#{attr2},</if>
|
||||
<if test="attr3 != null">#{attr3},</if>
|
||||
<if test="attr4 != null">#{attr4},</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>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateProSnProcess" parameterType="ProSnProcess">
|
||||
update pro_sn_process
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="snId != null">sn_id = #{snId},</if>
|
||||
<if test="snCode != null">sn_code = #{snCode},</if>
|
||||
<if test="seqNum != null">seq_num = #{seqNum},</if>
|
||||
<if test="processId != null">process_id = #{processId},</if>
|
||||
<if test="processCode != null">process_code = #{processCode},</if>
|
||||
<if test="processName != null">process_name = #{processName},</if>
|
||||
<if test="inputTime != null">input_time = #{inputTime},</if>
|
||||
<if test="outputTime != null">output_time = #{outputTime},</if>
|
||||
<if test="quantityInput != null">quantity_input = #{quantityInput},</if>
|
||||
<if test="quantityOutput != null">quantity_output = #{quantityOutput},</if>
|
||||
<if test="quantityUnquanlify != null">quantity_unquanlify = #{quantityUnquanlify},</if>
|
||||
<if test="workstationId != null">workstation_id = #{workstationId},</if>
|
||||
<if test="workstationCode != null">workstation_code = #{workstationCode},</if>
|
||||
<if test="workstationName != null">workstation_name = #{workstationName},</if>
|
||||
<if test="userId != null">user_id = #{userId},</if>
|
||||
<if test="userName != null">user_name = #{userName},</if>
|
||||
<if test="nickName != null">nick_name = #{nickName},</if>
|
||||
<if test="ipqcId != null">ipqc_id = #{ipqcId},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="attr1 != null">attr1 = #{attr1},</if>
|
||||
<if test="attr2 != null">attr2 = #{attr2},</if>
|
||||
<if test="attr3 != null">attr3 = #{attr3},</if>
|
||||
<if test="attr4 != null">attr4 = #{attr4},</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>
|
||||
</trim>
|
||||
where record_id = #{recordId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteProSnProcessByRecordId" parameterType="Long">
|
||||
delete from pro_sn_process where record_id = #{recordId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteProSnProcessByRecordIds" parameterType="String">
|
||||
delete from pro_sn_process where record_id in
|
||||
<foreach item="recordId" collection="array" open="(" separator="," close=")">
|
||||
#{recordId}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
||||
@@ -14,6 +14,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="unitOfMeasure" column="unit_of_measure" />
|
||||
<result property="batchCode" column="batch_code" />
|
||||
<result property="snNum" column="snNum"></result>
|
||||
<result property="workOrderId" column="work_order_id"></result>
|
||||
<result property="inputTime" column="input_time"></result>
|
||||
<result property="genDate" column="gen_date"></result>
|
||||
<result property="remark" column="remark" />
|
||||
<result property="attr1" column="attr1" />
|
||||
@@ -27,7 +29,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectWmSnVo">
|
||||
select sn_id, sn_code, item_id, item_code, item_name, specification, unit_of_measure, batch_code,gen_date, remark, attr1, attr2, attr3, attr4, create_by, create_time, update_by, update_time from wm_sn
|
||||
select sn_id, sn_code, item_id, item_code, item_name, specification, unit_of_measure, batch_code, work_order_id, gen_date, remark, attr1, attr2, attr3, attr4, create_by, create_time, update_by, update_time from wm_sn
|
||||
</sql>
|
||||
|
||||
<select id="selectWmSnList" parameterType="WmSn" resultMap="WmSnResult">
|
||||
@@ -40,6 +42,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="specification != null and specification != ''"> and specification = #{specification}</if>
|
||||
<if test="unitOfMeasure != null and unitOfMeasure != ''"> and unit_of_measure = #{unitOfMeasure}</if>
|
||||
<if test="batchCode != null and batchCode != ''"> and batch_code = #{batchCode}</if>
|
||||
<if test="workOderId != null and workOrderId != ''"> and work_order_id = #{workOrderId}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
@@ -63,7 +66,18 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
group by item_id, item_code, item_name, specification, unit_of_measure, batch_code, gen_date
|
||||
order by item_id,batch_code desc
|
||||
</select>
|
||||
|
||||
|
||||
<select id="getStationList" parameterType="WmSn" resultMap="WmSnResult">
|
||||
select sn.sn_id,sn.sn_code,sn.item_id,sn.item_code,sn.item_name,sn.specification,sn.unit_of_measure,ps.input_time
|
||||
from wm_sn sn
|
||||
left join pro_sn_process ps
|
||||
on sn.sn_id = ps.sn_id
|
||||
where sn.work_order_id =#{workOrderId}
|
||||
and ps.workstation_id = #{workStationId}
|
||||
order by ps.input_time desc
|
||||
</select>
|
||||
|
||||
|
||||
<insert id="insertWmSn" parameterType="WmSn" useGeneratedKeys="true" keyProperty="snId">
|
||||
insert into wm_sn
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
@@ -74,6 +88,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="specification != null">specification,</if>
|
||||
<if test="unitOfMeasure != null">unit_of_measure,</if>
|
||||
<if test="batchCode != null">batch_code,</if>
|
||||
<if test="workOderId != null">work_order_id,</if>
|
||||
<if test="genDate !=null">gen_date,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
<if test="attr1 != null">attr1,</if>
|
||||
@@ -93,6 +108,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="specification != null">#{specification},</if>
|
||||
<if test="unitOfMeasure != null">#{unitOfMeasure},</if>
|
||||
<if test="batchCode != null">#{batchCode},</if>
|
||||
<if test="workOderId != null">#{workOrderId},</if>
|
||||
<if test="genDate !=null">#{genDate},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
<if test="attr1 != null">#{attr1},</if>
|
||||
@@ -116,6 +132,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="specification != null">specification = #{specification},</if>
|
||||
<if test="unitOfMeasure != null">unit_of_measure = #{unitOfMeasure},</if>
|
||||
<if test="batchCode != null">batch_code = #{batchCode},</if>
|
||||
<if test="workOderId != null">work_order_id = #{workOrderId},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="attr1 != null">attr1 = #{attr1},</if>
|
||||
<if test="attr2 != null">attr2 = #{attr2},</if>
|
||||
|
||||
Reference in New Issue
Block a user