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.
212 lines
10 KiB
XML
212 lines
10 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.op.mes.mapper.MesPrepareMapper">
|
|
|
|
<resultMap type="MesPrepare" id="MesPrepareResult">
|
|
<result property="prepareId" column="prepare_id" />
|
|
<result property="workorderCode" column="workorder_code" />
|
|
<result property="workorderName" column="workorder_name" />
|
|
<result property="parentOrder" column="parent_order" />
|
|
<result property="orderId" column="order_id" />
|
|
<result property="orderCode" column="order_code" />
|
|
<result property="productId" column="product_id" />
|
|
<result property="productCode" column="product_code" />
|
|
<result property="prodType" column="prod_type" />
|
|
<result property="productName" column="product_name" />
|
|
<result property="productSpc" column="product_spc" />
|
|
<result property="wetDetailPlanId" column="wet_detail_plan_id" />
|
|
<result property="productDate" column="product_date" />
|
|
<result property="shiftId" column="shift_id" />
|
|
<result property="ancestors" column="ancestors" />
|
|
<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="factoryCode" column="factory_code" />
|
|
<result property="materialCode" column="material_code" />
|
|
<result property="materialName" column="material_name" />
|
|
<result property="materialSpc" column="material_spc" />
|
|
<result property="unit" column="unit" />
|
|
<result property="quantity" column="quantity" />
|
|
</resultMap>
|
|
|
|
<sql id="selectMesPrepareVo">
|
|
select prepare_id, workorder_code, workorder_name, parent_order, order_id, order_code, product_id,
|
|
product_code, prod_type, product_name, product_spc, wet_detail_plan_id, product_date,
|
|
shift_id, ancestors, status, remark, attr1, attr2, attr3, attr4, create_by, create_time,
|
|
update_by, update_time, factory_code, material_code, material_name, material_spc, unit, quantity
|
|
from mes_prepare
|
|
</sql>
|
|
|
|
<select id="selectMesPrepareList" parameterType="com.op.mes.domain.MesPrepare" resultType="com.op.mes.domain.MesPrepare">
|
|
select
|
|
ms.workorder_name workorderCodeSap,
|
|
ow.workorder_code workorderCode,
|
|
ow.product_code productCode,
|
|
ow.product_name productName,
|
|
ow.product_date productDate,
|
|
ow.quantity_split quantity,
|
|
ow.unit
|
|
from mes_prepare ms
|
|
left join pro_order_workorder ow on ms.workorder_code = ow.workorder_code
|
|
<where>
|
|
ow.del_flag = '0' and ow.parent_order = '0'
|
|
<if test="workorderCode != null and workorderCode != ''"> and ow.workorder_code like concat('%', #{workorderCode}, '%')</if>
|
|
<if test="workorderCodeSap != null and workorderCodeSap != ''"> and ms.workorder_name like concat('%', #{workorderCodeSap}, '%')</if>
|
|
<if test="productCode != null and productCode != ''"> and ow.product_code like concat('%', #{productCode}, '%')</if>
|
|
<if test="productName != null and productName != ''"> and ow.product_name like concat('%', #{productName}, '%')</if>
|
|
<if test="productDate != null "> and ow.product_date = #{productDate}</if>
|
|
and ms.del_flag = '0'
|
|
</where>
|
|
order by ow.product_date desc
|
|
</select>
|
|
|
|
<select id="selectMesPrepareByPrepareId" parameterType="String" resultMap="MesPrepareResult">
|
|
<include refid="selectMesPrepareVo"/>
|
|
where prepare_id = #{prepareId}
|
|
</select>
|
|
<!--T+1天的母单-->
|
|
<select id="getParentWorkOrderT1" resultType="com.op.mes.domain.MesPrepare">
|
|
select workorder_code workorderCode,
|
|
workorder_code_sap workorderCodeSap
|
|
from pro_order_workorder
|
|
where parent_order = '0' and prod_type != 'white'
|
|
and CONVERT(varchar(100), product_date, 23) = #{dayStr}
|
|
and del_flag = '0'
|
|
</select>
|
|
|
|
<select id="selectMesPrepareByCode" parameterType="String" resultMap="MesPrepareResult">
|
|
select prepare_id, workorder_code, workorder_name, parent_order, order_id, order_code,
|
|
product_id, product_code, prod_type, product_name, product_spc, wet_detail_plan_id,
|
|
product_date, shift_id, ancestors, status, remark, attr1, attr2, attr3, attr4,
|
|
create_by, create_time, update_by, update_time, factory_code, unit
|
|
from mes_prepare
|
|
where workorder_code = #{workorderCode} and del_flag = '0'
|
|
</select>
|
|
|
|
<insert id="insertMesPrepare" parameterType="MesPrepare">
|
|
insert into mes_prepare
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="prepareId != null">prepare_id,</if>
|
|
<if test="workorderCode != null and workorderCode != ''">workorder_code,</if>
|
|
<if test="workorderName != null">workorder_name,</if>
|
|
<if test="parentOrder != null and parentOrder != ''">parent_order,</if>
|
|
<if test="orderId != null and orderId != ''">order_id,</if>
|
|
<if test="orderCode != null">order_code,</if>
|
|
<if test="productId != null">product_id,</if>
|
|
<if test="productCode != null and productCode != ''">product_code,</if>
|
|
<if test="prodType != null">prod_type,</if>
|
|
<if test="productName != null and productName != ''">product_name,</if>
|
|
<if test="productSpc != null">product_spc,</if>
|
|
<if test="wetDetailPlanId != null">wet_detail_plan_id,</if>
|
|
<if test="productDate != null">product_date,</if>
|
|
<if test="shiftId != null">shift_id,</if>
|
|
<if test="ancestors != null">ancestors,</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>
|
|
<if test="factoryCode != null">factory_code,</if>
|
|
<if test="materialCode != null and materialCode != ''">material_code,</if>
|
|
<if test="materialName != null and materialName != ''">material_name,</if>
|
|
<if test="materialSpc != null">material_spc,</if>
|
|
<if test="unit != null and unit != ''">unit,</if>
|
|
<if test="quantity != null">quantity,</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="prepareId != null">#{prepareId},</if>
|
|
<if test="workorderCode != null and workorderCode != ''">#{workorderCode},</if>
|
|
<if test="workorderName != null">#{workorderName},</if>
|
|
<if test="parentOrder != null and parentOrder != ''">#{parentOrder},</if>
|
|
<if test="orderId != null and orderId != ''">#{orderId},</if>
|
|
<if test="orderCode != null">#{orderCode},</if>
|
|
<if test="productId != null">#{productId},</if>
|
|
<if test="productCode != null and productCode != ''">#{productCode},</if>
|
|
<if test="prodType != null">#{prodType},</if>
|
|
<if test="productName != null and productName != ''">#{productName},</if>
|
|
<if test="productSpc != null">#{productSpc},</if>
|
|
<if test="wetDetailPlanId != null">#{wetDetailPlanId},</if>
|
|
<if test="productDate != null">#{productDate},</if>
|
|
<if test="shiftId != null">#{shiftId},</if>
|
|
<if test="ancestors != null">#{ancestors},</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>
|
|
<if test="factoryCode != null">#{factoryCode},</if>
|
|
<if test="materialCode != null and materialCode != ''">#{materialCode},</if>
|
|
<if test="materialName != null and materialName != ''">#{materialName},</if>
|
|
<if test="materialSpc != null">#{materialSpc},</if>
|
|
<if test="unit != null and unit != ''">#{unit},</if>
|
|
<if test="quantity != null">#{quantity},</if>
|
|
</trim>
|
|
</insert>
|
|
|
|
<update id="updateMesPrepare" parameterType="MesPrepare">
|
|
update mes_prepare
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
<if test="workorderCode != null and workorderCode != ''">workorder_code = #{workorderCode},</if>
|
|
<if test="workorderName != null">workorder_name = #{workorderName},</if>
|
|
<if test="parentOrder != null and parentOrder != ''">parent_order = #{parentOrder},</if>
|
|
<if test="orderId != null and orderId != ''">order_id = #{orderId},</if>
|
|
<if test="orderCode != null">order_code = #{orderCode},</if>
|
|
<if test="productId != null">product_id = #{productId},</if>
|
|
<if test="productCode != null and productCode != ''">product_code = #{productCode},</if>
|
|
<if test="prodType != null">prod_type = #{prodType},</if>
|
|
<if test="productName != null and productName != ''">product_name = #{productName},</if>
|
|
<if test="productSpc != null">product_spc = #{productSpc},</if>
|
|
<if test="wetDetailPlanId != null">wet_detail_plan_id = #{wetDetailPlanId},</if>
|
|
<if test="productDate != null">product_date = #{productDate},</if>
|
|
<if test="shiftId != null">shift_id = #{shiftId},</if>
|
|
<if test="ancestors != null">ancestors = #{ancestors},</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>
|
|
<if test="factoryCode != null">factory_code = #{factoryCode},</if>
|
|
</trim>
|
|
where prepare_id = #{prepareId}
|
|
</update>
|
|
|
|
<delete id="deleteMesPrepareByPrepareId" parameterType="String">
|
|
update mes_prepare
|
|
set del_flag = '1'
|
|
where prepare_id = #{prepareId}
|
|
</delete>
|
|
|
|
<delete id="deleteMesPrepareByPrepareIds" parameterType="String">
|
|
update mes_prepare
|
|
set del_flag = '1'
|
|
where prepare_id in
|
|
<foreach item="prepareId" collection="array" open="(" separator="," close=")">
|
|
#{prepareId}
|
|
</foreach>
|
|
</delete>
|
|
</mapper>
|