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.

1072 lines
61 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.foreverwin.mesnac.dispatch.mapper.SfcDispatchMapper">
<!-- 通用查询映射结果 -->
<resultMap id="BaseResultMap" type="com.foreverwin.mesnac.dispatch.model.SfcDispatch">
<id column="HANDLE" property="handle"/>
<result column="SITE" property="site"/>
<result column="SHOP_ORDER" property="shopOrder"/>
<result column="SFC" property="sfc"/>
<result column="BLANKING_SIZE" property="blankingSize"/>
<result column="DISPATCH_SEQ" property="dispatchSeq"/>
<result column="DISPATCH_NO" property="dispatchNo"/>
<result column="DISPATCH_STATUS" property="dispatchStatus"/>
<result column="DRAWINGS_NO" property="drawingsNo"/>
<result column="DRAWINGS_REVISION" property="drawingsRevision"/>
<result column="IS_LOCK" property="isLock"/>
<result column="ROUTER_BO" property="routerBo"/>
<result column="STEP_ID" property="stepId"/>
<result column="OPERATION" property="operation"/>
<result column="RESOURCE_TYPE" property="resourceType"/>
<result column="WORK_CENTER" property="workCenter"/>
<result column="RESRCE" property="resrce"/>
<result column="EMPLOYEE" property="employee"/>
<result column="EMPLOYEE_DESCRIPTION" property="employeeDescription"/>
<result column="TURN_OPERATION" property="turnOperation"/>
<result column="DISPATCH_QTY" property="dispatchQty"/>
<result column="PROD_HOURS" property="prodHours"/>
<result column="PLANNED_START_DATE" property="plannedStartDate"/>
<result column="PLANNED_COMP_DATE" property="plannedCompDate"/>
<result column="EARLIEST_START_DATE" property="earliestStartDate"/>
<result column="LATEST_END_DATE" property="latestEndDate"/>
<result column="SO_RELEASED_DATE" property="soReleasedDate"/>
<result column="SFC_RELEASED_DATE" property="sfcReleasedDate"/>
<result column="RELEASED_COMPLETE_DATE" property="releasedCompleteDate"/>
<result column="ACTUAL_START_DATE" property="actualStartDate"/>
<result column="ACTUAL_COMPLETE_DATE" property="actualCompleteDate"/>
<result column="IS_UPDATE_ZJH_COMPLETE" property="isUpdateZJHComplete"/>
<result column="IS_DISPATCH" property="isDispatch"/>
<result column="IS_IMPORT" property="isImport"/>
<result column="REMARK" property="remark"/>
<result column="PREPOSITION_STEP_ID" property="prepositionStepId"/>
<result column="PREPOSITION_OPERATION" property="prepositionOperation"/>
<result column="IS_FIRST_OPERATION" property="isFirstOperation"/>
<result column="CREATE_USER" property="createUser"/>
<result column="CREATED_DATE_TIME" property="createdDateTime"/>
<result column="MODIFY_USER" property="modifyUser"/>
<result column="MODIFIED_DATE_TIME" property="modifiedDateTime"/>
<result column="OTHER_1" property="other1"/>
<result column="OTHER_2" property="other2"/>
<result column="OTHER_3" property="other3"/>
<result column="OTHER_4" property="other4"/>
<result column="OTHER_5" property="other5"/>
</resultMap>
<resultMap id="FullResultMap" type="com.foreverwin.mesnac.common.dto.SfcDispatchDto">
<result column="USER" property="user"/>
<result column="ROLE" property="role"/>
<result column="IS_COMPLETED" property="isCompleted"/>
<result column="ITEM_BO" property="itemBo"/>
<result column="ITEM" property="item"/>
<result column="STATUS_NAME" property="statusName"/>
<result column="IS_MAJOR" property="isMajor"/>
<result column="COMMENTS" property="comments"/>
<result column="WORK_ORDER" property="workOrder"/>
<result column="SHOP_ORDER_TYPE" property="shopOrderType"/>
<result column="ITEM_DESCRIPTION" property="itemDescription"/>
<result column="COMPONENT" property="component"/>
<result column="COMPONENT_DESCRIPTION" property="componentDescription"/>
<result column="TEXTURE" property="texture"/>
<result column="MAT_SPEC" property="matSpec"/>
<result column="COMPLETED_QTY" property="completedQty"/>
<result column="ROW_COLOR" property="rowColor"/>
<result column="RESOURCE_DESCRIPTION" property="resourceDescription"/>
<result column="COMPONENT_DESCRIPTION" property="componentDescription"/>
<result column="OPERATION_DESCRIPTION" property="operationDescription"/>
<result column="RESOURCE_WORK_CENTER" property="resourceWorkCenter"/>
</resultMap>
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
HANDLE, SITE, SHOP_ORDER, SFC, BLANKING_SIZE, DISPATCH_SEQ, DISPATCH_NO, DISPATCH_STATUS, DRAWINGS_NO,
DRAWINGS_REVISION, IS_LOCK, ROUTER_BO, STEP_ID, OPERATION, RESOURCE_TYPE, WORK_CENTER, RESRCE, EMPLOYEE,
EMPLOYEE_DESCRIPTION, TURN_OPERATION, DISPATCH_QTY, PROD_HOURS, PLANNED_START_DATE, PLANNED_COMP_DATE,
EARLIEST_START_DATE, LATEST_END_DATE, SO_RELEASED_DATE, SFC_RELEASED_DATE, RELEASED_COMPLETE_DATE,
ACTUAL_START_DATE, ACTUAL_COMPLETE_DATE,IS_UPDATE_ZJH_COMPLETE, IS_DISPATCH, IS_IMPORT, REMARK,
PREPOSITION_STEP_ID, PREPOSITION_OPERATION, IS_FIRST_OPERATION, CREATE_USER, CREATED_DATE_TIME, MODIFY_USER,
MODIFIED_DATE_TIME, OTHER_1, OTHER_2, OTHER_3, OTHER_4, OTHER_5
</sql>
<!-- BaseMapper标准查询/修改/删除 -->
<select id="selectById" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include> FROM Z_SFC_DISPATCH WHERE HANDLE=#{handle}
</select>
<select id="selectList" resultMap="BaseResultMap">
SELECT
<choose>
<when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when>
<otherwise>
<include refid="Base_Column_List"></include>
</otherwise>
</choose>
FROM Z_SFC_DISPATCH
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.site!=null">AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.shopOrder!=null">AND SHOP_ORDER=#{ew.entity.shopOrder}</if>
<if test="ew.entity.sfc!=null">AND SFC=#{ew.entity.sfc}</if>
<if test="ew.entity.blankingSize!=null">AND BLANKING_SIZE=#{ew.entity.blankingSize}</if>
<if test="ew.entity.dispatchSeq!=null">AND DISPATCH_SEQ=#{ew.entity.dispatchSeq}</if>
<if test="ew.entity.dispatchNo!=null">AND DISPATCH_NO=#{ew.entity.dispatchNo}</if>
<if test="ew.entity.dispatchStatus!=null">AND DISPATCH_STATUS=#{ew.entity.dispatchStatus}</if>
<if test="ew.entity.drawingsNo!=null">AND DRAWINGS_NO=#{ew.entity.drawingsNo}</if>
<if test="ew.entity.drawingsRevision!=null">AND DRAWINGS_REVISION=#{ew.entity.drawingsRevision}</if>
<if test="ew.entity.isLock!=null">AND IS_LOCK=#{ew.entity.isLock}</if>
<if test="ew.entity.routerBo!=null">AND ROUTER_BO=#{ew.entity.routerBo}</if>
<if test="ew.entity.stepId!=null">AND STEP_ID=#{ew.entity.stepId}</if>
<if test="ew.entity.operation!=null">AND OPERATION=#{ew.entity.operation}</if>
<if test="ew.entity.resourceType!=null">AND RESOURCE_TYPE=#{ew.entity.resourceType}</if>
<if test="ew.entity.workCenter!=null">AND WORK_CENTER=#{ew.entity.workCenter}</if>
<if test="ew.entity.resrce!=null">AND RESRCE=#{ew.entity.resrce}</if>
<if test="ew.entity.employee!=null">AND EMPLOYEE=#{ew.entity.employee}</if>
<if test="ew.entity.turnOperation!=null">AND TURN_OPERATION=#{ew.entity.turnOperation}</if>
<if test="ew.entity.dispatchQty!=null">AND DISPATCH_QTY=#{ew.entity.dispatchQty}</if>
<if test="ew.entity.prodHours!=null">AND PROD_HOURS=#{ew.entity.prodHours}</if>
<if test="ew.entity.plannedStartDate!=null">AND PLANNED_START_DATE=#{ew.entity.plannedStartDate}
</if>
<if test="ew.entity.plannedCompDate!=null">AND PLANNED_COMP_DATE=#{ew.entity.plannedCompDate}</if>
<if test="ew.entity.earliestStartDate!=null">AND
EARLIEST_START_DATE=#{ew.entity.earliestStartDate}
</if>
<if test="ew.entity.latestEndDate!=null">AND LATEST_END_DATE=#{ew.entity.latestEndDate}</if>
<if test="ew.entity.soReleasedDate!=null">AND SO_RELEASED_DATE=#{ew.entity.soReleasedDate}</if>
<if test="ew.entity.sfcReleasedDate!=null">AND SFC_RELEASED_DATE=#{ew.entity.sfcReleasedDate}</if>
<if test="ew.entity.releasedCompleteDate!=null">AND
RELEASED_COMPLETE_DATE=#{ew.entity.releasedCompleteDate}
</if>
<if test="ew.entity.actualStartDate!=null">AND ACTUAL_START_DATE=#{ew.entity.actualStartDate}</if>
<if test="ew.entity.actualCompleteDate!=null">AND
ACTUAL_COMPLETE_DATE=#{ew.entity.actualCompleteDate}
</if>
<if test="ew.entity.isDispatch!=null">AND IS_DISPATCH=#{ew.entity.isDispatch}</if>
<if test="ew.entity.isImport!=null">AND IS_IMPORT=#{ew.entity.isImport}</if>
<if test="ew.entity.remark!=null">AND REMARK=#{ew.entity.remark}</if>
<if test="ew.entity.prepositionStepId!=null">AND
PREPOSITION_STEP_ID=#{ew.entity.prepositionStepId}
</if>
<if test="ew.entity.prepositionOperation!=null">AND
PREPOSITION_OPERATION=#{ew.entity.prepositionOperation}
</if>
<if test="ew.entity.isFirstOperation!=null">AND IS_FIRST_OPERATION=#{ew.entity.isFirstOperation}
</if>
<if test="ew.entity.createUser!=null">AND CREATE_USER=#{ew.entity.createUser}</if>
<if test="ew.entity.createdDateTime!=null">AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
AND ${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
AND ${ew.sqlSegment}
</if>
</select>
<select id="selectPage" resultMap="BaseResultMap">
SELECT
<choose>
<when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when>
<otherwise>
<include refid="Base_Column_List"></include>
</otherwise>
</choose>
FROM Z_SFC_DISPATCH
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.site!=null">AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.shopOrder!=null">AND SHOP_ORDER=#{ew.entity.shopOrder}</if>
<if test="ew.entity.sfc!=null">AND SFC=#{ew.entity.sfc}</if>
<if test="ew.entity.blankingSize!=null">AND BLANKING_SIZE=#{ew.entity.blankingSize}</if>
<if test="ew.entity.dispatchSeq!=null">AND DISPATCH_SEQ=#{ew.entity.dispatchSeq}</if>
<if test="ew.entity.dispatchNo!=null">AND DISPATCH_NO=#{ew.entity.dispatchNo}</if>
<if test="ew.entity.dispatchStatus!=null">AND DISPATCH_STATUS=#{ew.entity.dispatchStatus}</if>
<if test="ew.entity.drawingsNo!=null">AND DRAWINGS_NO=#{ew.entity.drawingsNo}</if>
<if test="ew.entity.drawingsRevision!=null">AND DRAWINGS_REVISION=#{ew.entity.drawingsRevision}</if>
<if test="ew.entity.isLock!=null">AND IS_LOCK=#{ew.entity.isLock}</if>
<if test="ew.entity.routerBo!=null">AND ROUTER_BO=#{ew.entity.routerBo}</if>
<if test="ew.entity.stepId!=null">AND STEP_ID=#{ew.entity.stepId}</if>
<if test="ew.entity.operation!=null">AND OPERATION=#{ew.entity.operation}</if>
<if test="ew.entity.resourceType!=null">AND RESOURCE_TYPE=#{ew.entity.resourceType}</if>
<if test="ew.entity.workCenter!=null">AND WORK_CENTER=#{ew.entity.workCenter}</if>
<if test="ew.entity.resrce!=null">AND RESRCE=#{ew.entity.resrce}</if>
<if test="ew.entity.employee!=null">AND EMPLOYEE=#{ew.entity.employee}</if>
<if test="ew.entity.turnOperation!=null">AND TURN_OPERATION=#{ew.entity.turnOperation}</if>
<if test="ew.entity.dispatchQty!=null">AND DISPATCH_QTY=#{ew.entity.dispatchQty}</if>
<if test="ew.entity.prodHours!=null">AND PROD_HOURS=#{ew.entity.prodHours}</if>
<if test="ew.entity.plannedStartDate!=null">AND PLANNED_START_DATE=#{ew.entity.plannedStartDate}
</if>
<if test="ew.entity.plannedCompDate!=null">AND PLANNED_COMP_DATE=#{ew.entity.plannedCompDate}</if>
<if test="ew.entity.earliestStartDate!=null">AND
EARLIEST_START_DATE=#{ew.entity.earliestStartDate}
</if>
<if test="ew.entity.latestEndDate!=null">AND LATEST_END_DATE=#{ew.entity.latestEndDate}</if>
<if test="ew.entity.soReleasedDate!=null">AND SO_RELEASED_DATE=#{ew.entity.soReleasedDate}</if>
<if test="ew.entity.sfcReleasedDate!=null">AND SFC_RELEASED_DATE=#{ew.entity.sfcReleasedDate}</if>
<if test="ew.entity.releasedCompleteDate!=null">AND
RELEASED_COMPLETE_DATE=#{ew.entity.releasedCompleteDate}
</if>
<if test="ew.entity.actualStartDate!=null">AND ACTUAL_START_DATE=#{ew.entity.actualStartDate}</if>
<if test="ew.entity.actualCompleteDate!=null">AND
ACTUAL_COMPLETE_DATE=#{ew.entity.actualCompleteDate}
</if>
<if test="ew.entity.isDispatch!=null">AND IS_DISPATCH=#{ew.entity.isDispatch}</if>
<if test="ew.entity.isImport!=null">AND IS_IMPORT=#{ew.entity.isImport}</if>
<if test="ew.entity.remark!=null">AND REMARK=#{ew.entity.remark}</if>
<if test="ew.entity.prepositionStepId!=null">AND
PREPOSITION_STEP_ID=#{ew.entity.prepositionStepId}
</if>
<if test="ew.entity.prepositionOperation!=null">AND
PREPOSITION_OPERATION=#{ew.entity.prepositionOperation}
</if>
<if test="ew.entity.isFirstOperation!=null">AND IS_FIRST_OPERATION=#{ew.entity.isFirstOperation}
</if>
<if test="ew.entity.createUser!=null">AND CREATE_USER=#{ew.entity.createUser}</if>
<if test="ew.entity.createdDateTime!=null">AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifyUser!=null">AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null">AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}
</if>
<if test="ew.entity.other1!=null">AND OTHER_1=#{ew.entity.other1}</if>
<if test="ew.entity.other2!=null">AND OTHER_2=#{ew.entity.other2}</if>
<if test="ew.entity.other3!=null">AND OTHER_3=#{ew.entity.other3}</if>
<if test="ew.entity.other4!=null">AND OTHER_4=#{ew.entity.other4}</if>
<if test="ew.entity.other5!=null">AND OTHER_5=#{ew.entity.other5}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
and ${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</select>
<insert id="insert" parameterType="com.foreverwin.mesnac.dispatch.model.SfcDispatch">
INSERT INTO Z_SFC_DISPATCH
<trim prefix="(" suffix=")" suffixOverrides=",">
HANDLE,
<if test="site!=null">SITE,</if>
<if test="shopOrder!=null">SHOP_ORDER,</if>
<if test="sfc!=null">SFC,</if>
<if test="blankingSize!=null">BLANKING_SIZE,</if>
<if test="dispatchSeq!=null">DISPATCH_SEQ,</if>
<if test="dispatchNo!=null">DISPATCH_NO,</if>
<if test="dispatchStatus!=null">DISPATCH_STATUS,</if>
<if test="drawingsNo!=null">DRAWINGS_NO,</if>
<if test="drawingsRevision!=null">DRAWINGS_REVISION,</if>
<if test="isLock!=null">IS_LOCK,</if>
<if test="isUpdateZJHComplete!=null">IS_UPDATE_ZJH_COMPLETE,</if>
<if test="routerBo!=null">ROUTER_BO,</if>
<if test="stepId!=null">STEP_ID,</if>
<if test="operation!=null">OPERATION,</if>
<if test="resourceType!=null">RESOURCE_TYPE,</if>
<if test="workCenter!=null">WORK_CENTER,</if>
<if test="resrce!=null">RESRCE,</if>
<if test="employee!=null">EMPLOYEE,</if>
<if test="employeeDescription!=null">EMPLOYEE_DESCRIPTION,</if>
<if test="turnOperation!=null">TURN_OPERATION,</if>
<if test="dispatchQty!=null">DISPATCH_QTY,</if>
<if test="prodHours!=null">PROD_HOURS,</if>
<if test="plannedStartDate!=null">PLANNED_START_DATE,</if>
<if test="plannedCompDate!=null">PLANNED_COMP_DATE,</if>
<if test="earliestStartDate!=null">EARLIEST_START_DATE,</if>
<if test="latestEndDate!=null">LATEST_END_DATE,</if>
<if test="soReleasedDate!=null">SO_RELEASED_DATE,</if>
<if test="sfcReleasedDate!=null">SFC_RELEASED_DATE,</if>
<if test="releasedCompleteDate!=null">RELEASED_COMPLETE_DATE,</if>
<if test="actualStartDate!=null">ACTUAL_START_DATE,</if>
<if test="actualCompleteDate!=null">ACTUAL_COMPLETE_DATE,</if>
<if test="isDispatch!=null">IS_DISPATCH,</if>
<if test="isImport!=null">IS_IMPORT,</if>
<if test="remark!=null">REMARK,</if>
<if test="prepositionStepId!=null">PREPOSITION_STEP_ID,</if>
<if test="prepositionOperation!=null">PREPOSITION_OPERATION,</if>
<if test="isFirstOperation!=null">IS_FIRST_OPERATION,</if>
<if test="createUser!=null">CREATE_USER,</if>
<if test="createdDateTime!=null">CREATED_DATE_TIME,</if>
<if test="modifyUser!=null">MODIFY_USER,</if>
<if test="modifiedDateTime!=null">MODIFIED_DATE_TIME,</if>
<if test="other1!=null">OTHER_1,</if>
<if test="other2!=null">OTHER_2,</if>
<if test="other3!=null">OTHER_3,</if>
<if test="other4!=null">OTHER_4,</if>
<if test="other5!=null">OTHER_5,</if>
</trim>
VALUES
<trim prefix="(" suffix=")" suffixOverrides=",">
#{handle},
<if test="site!=null">#{site},</if>
<if test="shopOrder!=null">#{shopOrder},</if>
<if test="sfc!=null">#{sfc},</if>
<if test="blankingSize!=null">#{blankingSize},</if>
<if test="dispatchSeq!=null">#{dispatchSeq},</if>
<if test="dispatchNo!=null">#{dispatchNo},</if>
<if test="dispatchStatus!=null">#{dispatchStatus},</if>
<if test="drawingsNo!=null">#{drawingsNo},</if>
<if test="drawingsRevision!=null">#{drawingsRevision},</if>
<if test="isLock!=null">#{isLock},</if>
<if test="routerBo!=null">#{routerBo},</if>
<if test="stepId!=null">#{stepId},</if>
<if test="operation!=null">#{operation},</if>
<if test="resourceType!=null">#{resourceType},</if>
<if test="workCenter!=null">#{workCenter},</if>
<if test="resrce!=null">#{resrce},</if>
<if test="employee!=null">#{employee},</if>
<if test="employeeDescription!=null">#{employeeDescription},</if>
<if test="turnOperation!=null">#{turnOperation},</if>
<if test="dispatchQty!=null">#{dispatchQty},</if>
<if test="prodHours!=null">#{prodHours},</if>
<if test="plannedStartDate!=null">#{plannedStartDate},</if>
<if test="plannedCompDate!=null">#{plannedCompDate},</if>
<if test="earliestStartDate!=null">#{earliestStartDate},</if>
<if test="latestEndDate!=null">#{latestEndDate},</if>
<if test="soReleasedDate!=null">#{soReleasedDate},</if>
<if test="sfcReleasedDate!=null">#{sfcReleasedDate},</if>
<if test="releasedCompleteDate!=null">#{releasedCompleteDate},</if>
<if test="actualStartDate!=null">#{actualStartDate},</if>
<if test="actualCompleteDate!=null">#{actualCompleteDate},</if>
<if test="isUpdateZJHComplete!=null">#{isUpdateZJHComplete},</if>
<if test="isDispatch!=null">#{isDispatch},</if>
<if test="isImport!=null">#{isImport},</if>
<if test="remark!=null">#{remark},</if>
<if test="prepositionStepId!=null">#{prepositionStepId},</if>
<if test="prepositionOperation!=null">#{prepositionOperation},</if>
<if test="isFirstOperation!=null">#{isFirstOperation},</if>
<if test="createUser!=null">#{createUser},</if>
<if test="createdDateTime!=null">#{createdDateTime},</if>
<if test="modifyUser!=null">#{modifyUser},</if>
<if test="modifiedDateTime!=null">#{modifiedDateTime},</if>
<if test="other1!=null">#{other1},</if>
<if test="other2!=null">#{other2},</if>
<if test="other3!=null">#{other3},</if>
<if test="other4!=null">#{other4},</if>
<if test="other5!=null">#{other5},</if>
</trim>
</insert>
<insert id="insertAllColumn" parameterType="com.foreverwin.mesnac.dispatch.model.SfcDispatch">
INSERT INTO Z_SFC_DISPATCH
<trim prefix="(" suffix=")" suffixOverrides=",">
<include refid="Base_Column_List"></include>
</trim>
VALUES
<trim prefix="(" suffix=")" suffixOverrides=",">
#{handle},
#{site},
#{shopOrder},
#{sfc},
#{blankingSize},
#{dispatchSeq},
#{dispatchNo},
#{dispatchStatus},
#{drawingsNo},
#{drawingsRevision},
#{isLock},
#{routerBo},
#{stepId},
#{operation},
#{resourceType},
#{workCenter},
#{resrce},
#{employee},
#{employeeDescription},
#{turnOperation},
#{dispatchQty},
#{prodHours},
#{plannedStartDate},
#{plannedCompDate},
#{earliestStartDate},
#{latestEndDate},
#{soReleasedDate},
#{sfcReleasedDate},
#{releasedCompleteDate},
#{actualStartDate},
#{actualCompleteDate},
#{isUpdateZJHComplete},
#{isDispatch},
#{isImport},
#{remark},
#{prepositionStepId},
#{prepositionOperation},
#{isFirstOperation},
#{createUser},
#{createdDateTime},
#{modifyUser},
#{modifiedDateTime},
#{other1},
#{other2},
#{other3},
#{other4},
#{other5},
</trim>
</insert>
<update id="updateById">
UPDATE Z_SFC_DISPATCH
<trim prefix="SET" suffixOverrides=",">
<if test="et.site!=null">SITE=#{et.site},</if>
<if test="et.shopOrder!=null">SHOP_ORDER=#{et.shopOrder},</if>
<if test="et.sfc!=null">SFC=#{et.sfc},</if>
<if test="et.blankingSize!=null">BLANKING_SIZE=#{et.blankingSize},</if>
<if test="et.dispatchSeq!=null">DISPATCH_SEQ=#{et.dispatchSeq},</if>
<if test="et.dispatchNo!=null">DISPATCH_NO=#{et.dispatchNo},</if>
<if test="et.dispatchStatus!=null">DISPATCH_STATUS=#{et.dispatchStatus},</if>
<if test="et.drawingsNo!=null">DRAWINGS_NO=#{et.drawingsNo},</if>
<if test="et.drawingsRevision!=null">DRAWINGS_REVISION=#{et.drawingsRevision},</if>
<if test="et.isLock!=null">IS_LOCK=#{et.isLock},</if>
<if test="et.routerBo!=null">ROUTER_BO=#{et.routerBo},</if>
<if test="et.stepId!=null">STEP_ID=#{et.stepId},</if>
<if test="et.operation!=null">OPERATION=#{et.operation},</if>
<if test="et.resourceType!=null">RESOURCE_TYPE=#{et.resourceType},</if>
<if test="et.workCenter!=null">WORK_CENTER=#{et.workCenter},</if>
<if test="et.resrce!=null">RESRCE=#{et.resrce},</if>
<if test="et.employee!=null">EMPLOYEE=#{et.employee},</if>
<if test="et.employeeDescription!=null">EMPLOYEE_DESCRIPTION=#{et.employeeDescription},</if>
<if test="et.turnOperation!=null">TURN_OPERATION=#{et.turnOperation},</if>
<if test="et.dispatchQty!=null">DISPATCH_QTY=#{et.dispatchQty},</if>
<if test="et.prodHours!=null">PROD_HOURS=#{et.prodHours},</if>
<if test="et.plannedStartDate!=null">PLANNED_START_DATE=#{et.plannedStartDate},</if>
<if test="et.plannedCompDate!=null">PLANNED_COMP_DATE=#{et.plannedCompDate},</if>
<if test="et.earliestStartDate!=null">EARLIEST_START_DATE=#{et.earliestStartDate},</if>
<if test="et.latestEndDate!=null">LATEST_END_DATE=#{et.latestEndDate},</if>
<if test="et.soReleasedDate!=null">SO_RELEASED_DATE=#{et.soReleasedDate},</if>
<if test="et.sfcReleasedDate!=null">SFC_RELEASED_DATE=#{et.sfcReleasedDate},</if>
<if test="et.releasedCompleteDate!=null">RELEASED_COMPLETE_DATE=#{et.releasedCompleteDate},</if>
<if test="et.actualStartDate!=null">ACTUAL_START_DATE=#{et.actualStartDate},</if>
<if test="et.actualCompleteDate!=null">ACTUAL_COMPLETE_DATE=#{et.actualCompleteDate},</if>
<if test="et.isUpdateZJHComplete!=null">IS_UPDATE_ZJH_COMPLETE=#{et.isUpdateZJHComplete},</if>
<if test="et.isDispatch!=null">IS_DISPATCH=#{et.isDispatch},</if>
<if test="et.isImport!=null">IS_IMPORT=#{et.isImport},</if>
<if test="et.remark!=null">REMARK=#{et.remark},</if>
<if test="et.prepositionStepId!=null">PREPOSITION_STEP_ID=#{et.prepositionStepId},</if>
<if test="et.prepositionOperation!=null">PREPOSITION_OPERATION=#{et.prepositionOperation},</if>
<if test="et.isFirstOperation!=null">IS_FIRST_OPERATION=#{et.isFirstOperation},</if>
<if test="et.createUser!=null">CREATE_USER=#{et.createUser},</if>
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</if>
<if test="et.modifyUser!=null">MODIFY_USER=#{et.modifyUser},</if>
<if test="et.modifiedDateTime!=null">MODIFIED_DATE_TIME=#{et.modifiedDateTime},</if>
<if test="et.other1!=null">OTHER_1=#{et.other1},</if>
<if test="et.other2!=null">OTHER_2=#{et.other2},</if>
<if test="et.other3!=null">OTHER_3=#{et.other3},</if>
<if test="et.other4!=null">OTHER_4=#{et.other4},</if>
<if test="et.other5!=null">OTHER_5=#{et.other5},</if>
</trim>
WHERE HANDLE=#{et.handle}
<if test="et instanceof java.util.Map">
<if test="et.MP_OPTLOCK_VERSION_ORIGINAL!=null">and
${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL}
</if>
</if>
</update>
<update id="updateAllColumnById">
UPDATE Z_SFC_DISPATCH <trim prefix="SET" suffixOverrides=",">
SITE=#{et.site},
SHOP_ORDER=#{et.shopOrder},
SFC=#{et.sfc},
BLANKING_SIZE=#{et.blankingSize},
DISPATCH_SEQ=#{et.dispatchSeq},
DISPATCH_NO=#{et.dispatchNo},
DISPATCH_STATUS=#{et.dispatchStatus},
DRAWINGS_NO=#{et.drawingsNo},
DRAWINGS_REVISION=#{et.drawingsRevision},
IS_LOCK=#{et.isLock},
ROUTER_BO=#{et.routerBo},
STEP_ID=#{et.stepId},
OPERATION=#{et.operation},
RESOURCE_TYPE=#{et.resourceType},
WORK_CENTER=#{et.workCenter},
RESRCE=#{et.resrce},
EMPLOYEE=#{et.employee},
EMPLOYEE_DESCRIPTION=#{et.employeeDescription},
TURN_OPERATION=#{et.turnOperation},
DISPATCH_QTY=#{et.dispatchQty},
PROD_HOURS=#{et.prodHours},
PLANNED_START_DATE=#{et.plannedStartDate},
PLANNED_COMP_DATE=#{et.plannedCompDate},
EARLIEST_START_DATE=#{et.earliestStartDate},
LATEST_END_DATE=#{et.latestEndDate},
SO_RELEASED_DATE=#{et.soReleasedDate},
SFC_RELEASED_DATE=#{et.sfcReleasedDate},
RELEASED_COMPLETE_DATE=#{et.releasedCompleteDate},
ACTUAL_START_DATE=#{et.actualStartDate},
ACTUAL_COMPLETE_DATE=#{et.actualCompleteDate},
IS_UPDATE_ZJH_COMPLETE=#{et.isUpdateZJHComplete},
IS_DISPATCH=#{et.isDispatch},
IS_IMPORT=#{et.isImport},
REMARK=#{et.remark},
PREPOSITION_STEP_ID=#{et.prepositionStepId},
PREPOSITION_OPERATION=#{et.prepositionOperation},
IS_FIRST_OPERATION=#{et.isFirstOperation},
CREATE_USER=#{et.createUser},
CREATED_DATE_TIME=#{et.createdDateTime},
MODIFY_USER=#{et.modifyUser},
MODIFIED_DATE_TIME=#{et.modifiedDateTime},
OTHER_1=#{et.other1},
OTHER_2=#{et.other2},
OTHER_3=#{et.other3},
OTHER_4=#{et.other4},
OTHER_5=#{et.other5},
</trim> WHERE HANDLE=#{et.handle}
<if test="et instanceof java.util.Map">
<if test="et.MP_OPTLOCK_VERSION_ORIGINAL!=null">and
${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL}
</if>
</if>
</update>
<update id="update">
UPDATE Z_SFC_DISPATCH
<trim prefix="SET" suffixOverrides=",">
<if test="et.site!=null">SITE=#{et.site},</if>
<if test="et.shopOrder!=null">SHOP_ORDER=#{et.shopOrder},</if>
<if test="et.sfc!=null">SFC=#{et.sfc},</if>
<if test="et.blankingSize!=null">BLANKING_SIZE=#{et.blankingSize},</if>
<if test="et.dispatchSeq!=null">DISPATCH_SEQ=#{et.dispatchSeq},</if>
<if test="et.dispatchNo!=null">DISPATCH_NO=#{et.dispatchNo},</if>
<if test="et.dispatchStatus!=null">DISPATCH_STATUS=#{et.dispatchStatus},</if>
<if test="et.drawingsNo!=null">DRAWINGS_NO=#{et.drawingsNo},</if>
<if test="et.drawingsRevision!=null">DRAWINGS_REVISION=#{et.drawingsRevision},</if>
<if test="et.isLock!=null">IS_LOCK=#{et.isLock},</if>
<if test="et.routerBo!=null">ROUTER_BO=#{et.routerBo},</if>
<if test="et.stepId!=null">STEP_ID=#{et.stepId},</if>
<if test="et.operation!=null">OPERATION=#{et.operation},</if>
<if test="et.resourceType!=null">RESOURCE_TYPE=#{et.resourceType},</if>
<if test="et.workCenter!=null">WORK_CENTER=#{et.workCenter},</if>
<if test="et.resrce!=null">RESRCE=#{et.resrce},</if>
<if test="et.employee!=null">EMPLOYEE=#{et.employee},</if>
<if test="et.employeeDescription!=null">EMPLOYEE_DESCRIPTION=#{et.employeeDescription},</if>
<if test="et.turnOperation!=null">TURN_OPERATION=#{et.turnOperation},</if>
<if test="et.dispatchQty!=null">DISPATCH_QTY=#{et.dispatchQty},</if>
<if test="et.prodHours!=null">PROD_HOURS=#{et.prodHours},</if>
<if test="et.plannedStartDate!=null">PLANNED_START_DATE=#{et.plannedStartDate},</if>
<if test="et.plannedCompDate!=null">PLANNED_COMP_DATE=#{et.plannedCompDate},</if>
<if test="et.earliestStartDate!=null">EARLIEST_START_DATE=#{et.earliestStartDate},</if>
<if test="et.latestEndDate!=null">LATEST_END_DATE=#{et.latestEndDate},</if>
<if test="et.soReleasedDate!=null">SO_RELEASED_DATE=#{et.soReleasedDate},</if>
<if test="et.sfcReleasedDate!=null">SFC_RELEASED_DATE=#{et.sfcReleasedDate},</if>
<if test="et.releasedCompleteDate!=null">RELEASED_COMPLETE_DATE=#{et.releasedCompleteDate},</if>
<if test="et.actualStartDate!=null">ACTUAL_START_DATE=#{et.actualStartDate},</if>
<if test="et.actualCompleteDate!=null">ACTUAL_COMPLETE_DATE=#{et.actualCompleteDate},</if>
<if test="et.isUpdateZJHComplete!=null">IS_UPDATE_ZJH_COMPLETE=#{et.isUpdateZJHComplete},</if>
<if test="et.isDispatch!=null">IS_DISPATCH=#{et.isDispatch},</if>
<if test="et.isImport!=null">IS_IMPORT=#{et.isImport},</if>
<if test="et.remark!=null">REMARK=#{et.remark},</if>
<if test="et.prepositionStepId!=null">PREPOSITION_STEP_ID=#{et.prepositionStepId},</if>
<if test="et.prepositionOperation!=null">PREPOSITION_OPERATION=#{et.prepositionOperation},</if>
<if test="et.isFirstOperation!=null">IS_FIRST_OPERATION=#{et.isFirstOperation},</if>
<if test="et.createUser!=null">CREATE_USER=#{et.createUser},</if>
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</if>
<if test="et.modifyUser!=null">MODIFY_USER=#{et.modifyUser},</if>
<if test="et.modifiedDateTime!=null">MODIFIED_DATE_TIME=#{et.modifiedDateTime},</if>
<if test="et.other1!=null">OTHER_1=#{et.other1},</if>
<if test="et.other2!=null">OTHER_2=#{et.other2},</if>
<if test="et.other3!=null">OTHER_3=#{et.other3},</if>
<if test="et.other4!=null">OTHER_4=#{et.other4},</if>
<if test="et.other5!=null">OTHER_5=#{et.other5},</if>
</trim>
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
HANDLE=#{ew.entity.handle}
<if test="ew.entity.site!=null">AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.shopOrder!=null">AND SHOP_ORDER=#{ew.entity.shopOrder}</if>
<if test="ew.entity.sfc!=null">AND SFC=#{ew.entity.sfc}</if>
<if test="ew.entity.blankingSize!=null">AND BLANKING_SIZE=#{ew.entity.blankingSize}</if>
<if test="ew.entity.dispatchSeq!=null">AND DISPATCH_SEQ=#{ew.entity.dispatchSeq}</if>
<if test="ew.entity.dispatchNo!=null">AND DISPATCH_NO=#{ew.entity.dispatchNo}</if>
<if test="ew.entity.dispatchStatus!=null">AND DISPATCH_STATUS=#{ew.entity.dispatchStatus}</if>
<if test="ew.entity.drawingsNo!=null">AND DRAWINGS_NO=#{ew.entity.drawingsNo}</if>
<if test="ew.entity.drawingsRevision!=null">AND DRAWINGS_REVISION=#{ew.entity.drawingsRevision}</if>
<if test="ew.entity.isLock!=null">AND IS_LOCK=#{ew.entity.isLock}</if>
<if test="ew.entity.routerBo!=null">AND ROUTER_BO=#{ew.entity.routerBo}</if>
<if test="ew.entity.stepId!=null">AND STEP_ID=#{ew.entity.stepId}</if>
<if test="ew.entity.operation!=null">AND OPERATION=#{ew.entity.operation}</if>
<if test="ew.entity.resourceType!=null">AND RESOURCE_TYPE=#{ew.entity.resourceType}</if>
<if test="ew.entity.workCenter!=null">AND WORK_CENTER=#{ew.entity.workCenter}</if>
<if test="ew.entity.resrce!=null">AND RESRCE=#{ew.entity.resrce}</if>
<if test="ew.entity.employee!=null">AND EMPLOYEE=#{ew.entity.employee}</if>
<if test="et.entity.employeeDescription!=null">
EMPLOYEE_DESCRIPTION=#{et.entity.employeeDescription},
</if>
<if test="ew.entity.turnOperation!=null">AND TURN_OPERATION=#{ew.entity.turnOperation}</if>
<if test="ew.entity.dispatchQty!=null">AND DISPATCH_QTY=#{ew.entity.dispatchQty}</if>
<if test="ew.entity.prodHours!=null">AND PROD_HOURS=#{ew.entity.prodHours}</if>
<if test="ew.entity.plannedStartDate!=null">AND PLANNED_START_DATE=#{ew.entity.plannedStartDate}
</if>
<if test="ew.entity.plannedCompDate!=null">AND PLANNED_COMP_DATE=#{ew.entity.plannedCompDate}</if>
<if test="ew.entity.earliestStartDate!=null">AND
EARLIEST_START_DATE=#{ew.entity.earliestStartDate}
</if>
<if test="ew.entity.latestEndDate!=null">AND LATEST_END_DATE=#{ew.entity.latestEndDate}</if>
<if test="ew.entity.soReleasedDate!=null">AND SO_RELEASED_DATE=#{ew.entity.soReleasedDate}</if>
<if test="ew.entity.sfcReleasedDate!=null">AND SFC_RELEASED_DATE=#{ew.entity.sfcReleasedDate}</if>
<if test="ew.entity.releasedCompleteDate!=null">AND
RELEASED_COMPLETE_DATE=#{ew.entity.releasedCompleteDate}
</if>
<if test="ew.entity.actualStartDate!=null">AND ACTUAL_START_DATE=#{ew.entity.actualStartDate}</if>
<if test="ew.entity.actualCompleteDate!=null">AND
ACTUAL_COMPLETE_DATE=#{ew.entity.actualCompleteDate}
</if>
<if test="ew.isUpdateZJHComplete!=null">AND IS_UPDATE_ZJH_COMPLETE=#{ew.isUpdateZJHComplete},</if>
<if test="ew.entity.isDispatch!=null">AND IS_DISPATCH=#{ew.entity.isDispatch}</if>
<if test="ew.entity.isImport!=null">AND IS_IMPORT=#{ew.entity.isImport}</if>
<if test="ew.entity.remark!=null">AND REMARK=#{ew.entity.remark}</if>
<if test="ew.entity.prepositionStepId!=null">AND
PREPOSITION_STEP_ID=#{ew.entity.prepositionStepId}
</if>
<if test="ew.entity.prepositionOperation!=null">AND
PREPOSITION_OPERATION=#{ew.entity.prepositionOperation}
</if>
<if test="ew.entity.isFirstOperation!=null">AND IS_FIRST_OPERATION=#{ew.entity.isFirstOperation}
</if>
<if test="ew.entity.createUser!=null">AND CREATE_USER=#{ew.entity.createUser}</if>
<if test="ew.entity.createdDateTime!=null">AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifyUser!=null">AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null">AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}
</if>
<if test="ew.entity.other1!=null">AND OTHER_1=#{ew.entity.other1}</if>
<if test="ew.entity.other2!=null">AND OTHER_2=#{ew.entity.other2}</if>
<if test="ew.entity.other3!=null">AND OTHER_3=#{ew.entity.other3}</if>
<if test="ew.entity.other4!=null">AND OTHER_4=#{ew.entity.other4}</if>
<if test="ew.entity.other5!=null">AND OTHER_5=#{ew.entity.other5}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</update>
<delete id="deleteById">
DELETE FROM Z_SFC_DISPATCH WHERE HANDLE=#{handle}
</delete>
<delete id="deleteByMap">
DELETE FROM Z_SFC_DISPATCH
<if test="cm!=null and !cm.isEmpty">
<where>
<foreach collection="cm.keys" item="k" separator="AND">
<if test="cm[k] != null">
${k} = #{cm[${k}]}
</if>
</foreach>
</where>
</if>
</delete>
<delete id="delete">
DELETE FROM Z_SFC_DISPATCH
<where>
<if test="ew!=null">
<if test="ew.entity!=null">
<if test="ew.entity.handle!=null">
HANDLE=#{ew.entity.handle}
</if>
<if test="ew.entity.site!=null">AND SITE=#{ew.entity.site}</if>
<if test="ew.entity.shopOrder!=null">AND SHOP_ORDER=#{ew.entity.shopOrder}</if>
<if test="ew.entity.sfc!=null">AND SFC=#{ew.entity.sfc}</if>
<if test="ew.entity.blankingSize!=null">AND BLANKING_SIZE=#{ew.entity.blankingSize}</if>
<if test="ew.entity.dispatchSeq!=null">AND DISPATCH_SEQ=#{ew.entity.dispatchSeq}</if>
<if test="ew.entity.dispatchNo!=null">AND DISPATCH_NO=#{ew.entity.dispatchNo}</if>
<if test="ew.entity.dispatchStatus!=null">AND DISPATCH_STATUS=#{ew.entity.dispatchStatus}</if>
<if test="ew.entity.drawingsNo!=null">AND DRAWINGS_NO=#{ew.entity.drawingsNo}</if>
<if test="ew.entity.drawingsRevision!=null">AND DRAWINGS_REVISION=#{ew.entity.drawingsRevision}</if>
<if test="ew.entity.isLock!=null">AND IS_LOCK=#{ew.entity.isLock}</if>
<if test="ew.entity.routerBo!=null">AND ROUTER_BO=#{ew.entity.routerBo}</if>
<if test="ew.entity.stepId!=null">AND STEP_ID=#{ew.entity.stepId}</if>
<if test="ew.entity.operation!=null">AND OPERATION=#{ew.entity.operation}</if>
<if test="ew.entity.resourceType!=null">AND RESOURCE_TYPE=#{ew.entity.resourceType}</if>
<if test="ew.entity.workCenter!=null">AND WORK_CENTER=#{ew.entity.workCenter}</if>
<if test="ew.entity.resrce!=null">AND RESRCE=#{ew.entity.resrce}</if>
<if test="ew.entity.employee!=null">AND EMPLOYEE=#{ew.entity.employee}</if>
<if test="ew.entity.employeeDescription!=null">
EMPLOYEE_DESCRIPTION=#{et.entity.employeeDescription},
</if>
<if test="ew.entity.turnOperation!=null">AND TURN_OPERATION=#{ew.entity.turnOperation}</if>
<if test="ew.entity.dispatchQty!=null">AND DISPATCH_QTY=#{ew.entity.dispatchQty}</if>
<if test="ew.entity.prodHours!=null">AND PROD_HOURS=#{ew.entity.prodHours}</if>
<if test="ew.entity.plannedStartDate!=null">AND PLANNED_START_DATE=#{ew.entity.plannedStartDate}
</if>
<if test="ew.entity.plannedCompDate!=null">AND PLANNED_COMP_DATE=#{ew.entity.plannedCompDate}</if>
<if test="ew.entity.earliestStartDate!=null">AND
EARLIEST_START_DATE=#{ew.entity.earliestStartDate}
</if>
<if test="ew.entity.latestEndDate!=null">AND LATEST_END_DATE=#{ew.entity.latestEndDate}</if>
<if test="ew.entity.soReleasedDate!=null">AND SO_RELEASED_DATE=#{ew.entity.soReleasedDate}</if>
<if test="ew.entity.sfcReleasedDate!=null">AND SFC_RELEASED_DATE=#{ew.entity.sfcReleasedDate}</if>
<if test="ew.entity.releasedCompleteDate!=null">AND
RELEASED_COMPLETE_DATE=#{ew.entity.releasedCompleteDate}
</if>
<if test="ew.entity.actualStartDate!=null">AND ACTUAL_START_DATE=#{ew.entity.actualStartDate}</if>
<if test="ew.entity.actualCompleteDate!=null">AND
ACTUAL_COMPLETE_DATE=#{ew.entity.actualCompleteDate}
</if>
<if test="ew.entity.isDispatch!=null">AND IS_DISPATCH=#{ew.entity.isDispatch}</if>
<if test="ew.entity.isImport!=null">AND IS_IMPORT=#{ew.entity.isImport}</if>
<if test="ew.entity.remark!=null">AND REMARK=#{ew.entity.remark}</if>
<if test="ew.entity.prepositionStepId!=null">AND
PREPOSITION_STEP_ID=#{ew.entity.prepositionStepId}
</if>
<if test="ew.entity.prepositionOperation!=null">AND
PREPOSITION_OPERATION=#{ew.entity.prepositionOperation}
</if>
<if test="ew.entity.isFirstOperation!=null">AND IS_FIRST_OPERATION=#{ew.entity.isFirstOperation}
</if>
<if test="ew.entity.createUser!=null">AND CREATE_USER=#{ew.entity.createUser}</if>
<if test="ew.entity.createdDateTime!=null">AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
<if test="ew.entity.modifyUser!=null">AND MODIFY_USER=#{ew.entity.modifyUser}</if>
<if test="ew.entity.modifiedDateTime!=null">AND MODIFIED_DATE_TIME=#{ew.entity.modifiedDateTime}
</if>
<if test="ew.entity.other1!=null">AND OTHER_1=#{ew.entity.other1}</if>
<if test="ew.entity.other2!=null">AND OTHER_2=#{ew.entity.other2}</if>
<if test="ew.entity.other3!=null">AND OTHER_3=#{ew.entity.other3}</if>
<if test="ew.entity.other4!=null">AND OTHER_4=#{ew.entity.other4}</if>
<if test="ew.entity.other5!=null">AND OTHER_5=#{ew.entity.other5}</if>
</if>
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
${ew.sqlSegment}
</if>
</if>
</where>
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
${ew.sqlSegment}
</if>
</delete>
<delete id="deleteBatchIds">
DELETE FROM Z_SFC_DISPATCH WHERE HANDLE IN (
<foreach item="item" index="index" collection="coll" separator=",">#{item}
</foreach>)
</delete>
<resultMap id="findSfcDispatchResult" type="SfcDispatch">
<id column="HANDLE" property="handle"/>
</resultMap>
<!-- BaseMapper标准查询/修改/删除 -->
<select id="findSfcDispatch" resultMap="findSfcDispatchResult">
SELECT
<include refid="Base_Column_List"/>
FROM Z_SFC_DISPATCH
WHERE SITE = #{site} AND SFC = #{sfc}
<if test="operation != null and operation != ''">
AND OPERATION = #{operation}
</if>
<if test="stepId != null and stepId != ''">
AND STEP_ID = #{stepId}
</if>
</select>
<select id="findSfcDispatchList" resultMap="FullResultMap">
SELECT WIP.*
FROM (
SELECT WIP.*, V1.STEP_ID PREPOSITION_STEP_ID, V1.OPERATION PREPOSITION_OPERATION,
CASE WHEN WIP.DISPATCH_SEQ = 1 OR V1.DISPATCH_STATUS = 'COMPLETE' THEN N'是' ELSE N'否' END IS_COMPLETED,
CASE WHEN WIP.DISPATCH_STATUS = 'NEW' THEN N'新建' WHEN WIP.DISPATCH_STATUS = 'CANCEL' THEN N'取消'
WHEN WIP.DISPATCH_STATUS = 'PAUSE' THEN N'暂停' WHEN WIP.DISPATCH_STATUS = 'RELEASE' THEN N'发布'
END AS STATUS_NAME, 'ADMINISTRATOR' AS ROLE
FROM (
SELECT SD.HANDLE, SD.SITE, SD.SHOP_ORDER, SD.DISPATCH_NO, SD.ROUTER_BO, C2.VALUE ITEM_NUMBER, C1.VALUE
WORK_ORDER, IM.HANDLE ITEM_BO, IM.ITEM, IT.DESCRIPTION ITEM_DESCRIPTION, SD.SFC,
SD.DISPATCH_STATUS,SD.DRAWINGS_REVISION,
SD.STEP_ID, SD.OPERATION,
CASE WHEN OT.DESCRIPTION = '虚拟工序' AND MAX(C5.VALUE) IS NOT NULL THEN concat(OT.DESCRIPTION,'('|| MAX(C5.VALUE)
||')') ELSE OT.DESCRIPTION END OPERATION_DESCRIPTION,
SD.RESOURCE_TYPE,RST.DESCRIPTION RESOURCE_TYPE_DESCRIPTION, SD.RESRCE, SD.EMPLOYEE,
SD.EMPLOYEE USER_NAME, SD.DISPATCH_QTY, SD.PROD_HOURS, RS.DESCRIPTION RESOURCE_DESCRIPTION,
CASE WHEN SD.DISPATCH_STATUS = 'COMPLETE' THEN SD.DISPATCH_QTY ELSE 0 END COMPLETED_QTY, SD.PLANNED_START_DATE,
SD.PLANNED_COMP_DATE, SD.WORK_CENTER, SD.IS_DISPATCH, SD.EMPLOYEE_DESCRIPTION,ZNU.FULL_NAME AS MODIFY_USER,
SD.ACTUAL_START_DATE, SD.ACTUAL_COMPLETE_DATE, SD.REMARK, SD.DISPATCH_SEQ, SD.DISPATCH_SEQ-1 BEFORE_SEQ,
SD.DISPATCH_SEQ+1 AFTER_SEQ, SD.EARLIEST_START_DATE, SD.LATEST_END_DATE,
CASE WHEN CC.VALUE = '9' THEN N'是' ELSE N'否' END IS_MAJOR, CASE WHEN SD.TURN_OPERATION = 'true' THEN N'是' ELSE
N'否' END TURN_OPERATION, SD.IS_UPDATE_ZJH_COMPLETE, SD.BLANKING_SIZE, MAX(BC.COMPONENT_GBO) COMPONENT_BO,
WR.WORK_CENTER RESOURCE_WORK_CENTER, MAX(CP.ITEM) COMPONENT, MAX(CT.DESCRIPTION) COMPONENT_DESCRIPTION,
MAX(C3.VALUE) TEXTURE, MAX(C4.VALUE) MAT_SPEC ,SD.OTHER_2,SD.OTHER_3,MAX(C5.VALUE) SOURCE_DESCRIPTION
FROM Z_SFC_DISPATCH SD
INNER JOIN SFC SC ON SC.SITE = SD.SITE AND SC.SFC = SD.SFC
LEFT JOIN RESRCE RS ON SD.SITE = RS.SITE AND SD.RESRCE = RS.RESRCE
INNER JOIN SHOP_ORDER SO ON SO.SITE = SD.SITE AND SO.SHOP_ORDER = SD.SHOP_ORDER
LEFT JOIN CUSTOM_FIELDS C1 ON C1.HANDLE = SO.HANDLE AND C1."ATTRIBUTE" = 'WORK_ORDER'
LEFT JOIN CUSTOM_FIELDS C2 ON C2.HANDLE = SO.HANDLE AND C2."ATTRIBUTE" = 'ITEM_NUMBER'
INNER JOIN ITEM IM ON IM.HANDLE = SO.ITEM_BO
LEFT JOIN ITEM_T IT ON IT.ITEM_BO = IM.HANDLE AND IT.LOCALE = 'zh'
LEFT JOIN CUSTOM_FIELDS CC ON CC.HANDLE = IM.HANDLE AND CC.ATTRIBUTE = 'ACCESSORY_TYPE'
INNER JOIN OPERATION O ON O.SITE = SD.SITE AND O.OPERATION = SD.OPERATION AND O.CURRENT_REVISION = 'true'
LEFT JOIN OPERATION_T OT ON OT.OPERATION_BO = O.HANDLE AND OT.LOCALE = 'zh'
INNER JOIN SFC_BOM SB ON SB.SFC_BO = SC.HANDLE
INNER JOIN BOM_COMPONENT BC ON BC.BOM_BO = SB.BOM_BO
LEFT JOIN ITEM CP ON CP.HANDLE = BC.COMPONENT_GBO
LEFT JOIN ITEM_T CT ON CT.ITEM_BO = CP.HANDLE AND CT.LOCALE = 'zh'
LEFT JOIN CUSTOM_FIELDS C3 ON C3.HANDLE = CP.HANDLE AND C3.ATTRIBUTE = 'TEXTTURE'
LEFT JOIN CUSTOM_FIELDS C4 ON C4.HANDLE = CP.HANDLE AND C4.ATTRIBUTE = 'MAT_SPEC'
LEFT JOIN CUSTOM_FIELDS C5 ON C5.HANDLE = 'RouterOperationBO:RouterStepBO:' || SD.ROUTER_BO || ',' || SD.STEP_ID
AND C5.ATTRIBUTE='SOURCE_DESCRIPTION'
LEFT JOIN WORK_CENTER_MEMBER WCM ON WCM.WORK_CENTER_OR_RESOURCE_GBO = 'ResourceBO:' || SD.SITE || ',' ||
SD.RESRCE
LEFT JOIN WORK_CENTER WR ON WR.HANDLE = WCM.WORK_CENTER_BO
LEFT JOIN ROUTER RT ON SD.ROUTER_BO = RT.HANDLE
LEFT JOIN RESOURCE_TYPE RST ON SD.RESOURCE_TYPE = RST.RESOURCE_TYPE
LEFT JOIN Z_NWA_USER ZNU ON ZNU.USER_NAME=SD.MODIFY_USER
WHERE SD.SITE = #{site}
<if test="HANDLE != null and HANDLE != ''">
AND SD.HANDLE = #{HANDLE}
</if>
<if test="workCenter != null and workCenter != ''">
AND SD.OPERATION LIKE #{workCenter}||'%'
</if>
<if test="dispatchStatus != null and dispatchStatus != '' and dispatchStatus != 'NO_COMPLETE'">
AND SD.DISPATCH_STATUS = #{dispatchStatus}
</if>
<if test="custom != null and custom != ''">
AND C1.VALUE LIKE '%' ||#{custom}|| '%'
</if>
<if test="dispatchStatus != null and dispatchStatus != '' and dispatchStatus == 'NO_COMPLETE' ">
AND SD.DISPATCH_STATUS IN ('NEW', 'RELEASE', 'PAUSE','START')
</if>
<if test="status != null and status != ''">
AND SD.DISPATCH_STATUS IN ${status}
</if>
<if test="userName != null and userName != ''">
AND SD.EMPLOYEE_DESCRIPTION = #{userName}
</if>
<if test="item != null and item != ''">
AND IM.ITEM like '%' ||#{item}|| '%'
</if>
<if test="itemDescription !=null and itemDescription!=''">
AND IT.DESCRIPTION like '%' ||#{itemDescription}|| '%'
</if>
<if test="workOrder != null and workOrder != ''">
AND C1.VALUE LIKE '%' ||#{workOrder}|| '%'
</if>
<if test="itemNumber != null and itemNumber != ''">
AND C2.VALUE LIKE '%' ||#{itemNumber}|| '%'
</if>
<if test="shopOrder != null and shopOrder != ''">
AND SD.SHOP_ORDER LIKE '%' ||#{shopOrder}|| '%'
</if>
<if test="shopOrderList != null and shopOrderList.length > 0">
AND SD.SHOP_ORDER IN
<foreach collection="shopOrderList" index="index" item="shopOrderItem" open="(" separator="," close=")">
#{shopOrderItem}
</foreach>
</if>
<if test="resourceType != null and resourceType != ''">
AND SD.RESOURCE_TYPE = #{resourceType}
</if>
<if test="resrce != null and resrce != ''">
AND SD.RESRCE = #{resrce}
</if>
<if test="operation != null and operation != ''">
AND SD.OPERATION = #{operation}
</if>
<if test="operationDescription != null and operationDescription != ''">
AND concat(OT.DESCRIPTION, '(' || C5.VALUE || ')') LIKE '%' ||#{operationDescription}|| '%'
</if>
<if test="sfc != null and sfc != ''">
AND SD.SFC = #{sfc}
</if>
<if test="turnOperation != null and turnOperation != ''">
AND SD.TURN_OPERATION = #{turnOperation}
</if>
<if test="isDispatch != null and isDispatch != ''">
AND SD.IS_DISPATCH = #{isDispatch}
</if>
<if test="blankingSize != null and blankingSize != ''">
AND SD.BLANKING_SIZE LIKE '%'||#{blankingSize}||'%'
</if>
<if test="step != null and step != ''">
AND SD.STEP_ID like #{step}||'%'
</if>
<if test="component != null and component != ''">
AND CP.ITEM = #{component}
</if>
<if test="componentDescription != null and componentDescription != ''">
AND CT.DESCRIPTION LIKE '%' || #{componentDescription} || '%'
</if>
<if test="texture != null and texture != ''">
AND C3.VALUE LIKE '%'|| #{texture} ||'%'
</if>
<if test="matSpec != null and matSpec != ''">
AND C4.VALUE = #{matSpec}
</if>
<if test="startFromDate != null">
AND SD.PLANNED_START_DATE >= TO_DATE(#{startFromDate}, 'YYYY-MM-DD')
</if>
<if test="startToDate != null">
AND SD.PLANNED_START_DATE &lt;= TO_DATE(#{startToDate}|| '15:59:59', 'YYYY-MM-DD HH24:MI:SS')
</if>
<if test="completeFromDate != null">
AND SD.PLANNED_COMP_DATE >= TO_DATE(#{completeFromDate}, 'YYYY-MM-DD')
</if>
<if test="completeToDate != null">
AND SD.PLANNED_COMP_DATE &lt;= TO_DATE(#{completeToDate}|| '15:59:59', 'YYYY-MM-DD HH24:MI:SS')
</if>
<if test="actualCompleteTime != null">
AND SD.ACTUAL_COMPLETE_DATE >= TO_DATE(#{actualCompleteTime}, 'YYYY-MM-DD')
</if>
<if test="toActualCompleteTime != null">
AND SD.ACTUAL_COMPLETE_DATE &lt;= TO_DATE(#{toActualCompleteTime}|| '15:59:59', 'YYYY-MM-DD HH24:MI:SS')
</if>
<if test="dispatchSeq != null">
AND SD.DISPATCH_SEQ = #{dispatchSeq}
</if>
<if test="isRework != null and isRework != ''">
AND RT.ROUTER_TYPE = #{isRework}
</if>
<if test="routerBo != null and routerBo != ''">
AND RT.HANDLE = #{routerBo}
</if>
GROUP BY SD.HANDLE, SD.SITE, SD.SHOP_ORDER, SD.DISPATCH_NO, SD.ROUTER_BO, C2.VALUE, C1.VALUE, IM.HANDLE,
IM.ITEM, IT.DESCRIPTION, SD.SFC, SD.DISPATCH_STATUS,SD.DRAWINGS_REVISION,
SD.STEP_ID, SD.OPERATION, OT.DESCRIPTION, SD.RESOURCE_TYPE,RST.DESCRIPTION, SD.RESRCE, SD.EMPLOYEE, SD.EMPLOYEE,
SD.DISPATCH_QTY, SD.PROD_HOURS, RS.DESCRIPTION,
SD.DISPATCH_STATUS, SD.DISPATCH_QTY, SD.PLANNED_START_DATE, SD.PLANNED_COMP_DATE, SD.WORK_CENTER,
SD.IS_DISPATCH, SD.EMPLOYEE_DESCRIPTION,ZNU.FULL_NAME,
SD.ACTUAL_START_DATE, SD.ACTUAL_COMPLETE_DATE, SD.REMARK, SD.DISPATCH_SEQ, SD.EARLIEST_START_DATE,
SD.LATEST_END_DATE,
CC.VALUE, SD.TURN_OPERATION,SD.IS_UPDATE_ZJH_COMPLETE, SD.BLANKING_SIZE, WR.WORK_CENTER ,SD.OTHER_2,SD.OTHER_3
) WIP
LEFT JOIN Z_SFC_DISPATCH V1 ON V1.SITE = WIP.SITE AND V1.SFC = WIP.SFC AND V1.ROUTER_BO = WIP.ROUTER_BO AND
V1.DISPATCH_SEQ = WIP.BEFORE_SEQ
LEFT JOIN Z_SFC_DISPATCH V2 ON V2.SITE = WIP.SITE AND V2.SFC = WIP.SFC AND V2.ROUTER_BO = WIP.ROUTER_BO AND
V2.DISPATCH_SEQ = WIP.AFTER_SEQ
) WIP
<if test="isCompleted != null and isCompleted != ''">
WHERE WIP.IS_COMPLETED = #{isCompleted}
</if>
ORDER BY WIP.SHOP_ORDER,WIP.SFC,TO_NUMBER(WIP.DISPATCH_SEQ) asc
</select>
<update id="updateSfcDispatchStatus">
UPDATE Z_SFC_DISPATCH SET DISPATCH_STATUS = #{dispatchStatus}, MODIFY_USER = #{modifyUser}, MODIFIED_DATE_TIME =
#{modifiedDateTime}
<if test="dispatchStatus== 'COMPLETE'">
, ACTUAL_COMPLETE_DATE = #{modifiedDateTime} , ACTUAL_PROD_HOURS = #{workHour}
</if>
<if test="dispatchStatus== 'START'">
, ACTUAL_START_DATE = #{modifiedDateTime}
</if>
WHERE SITE = #{site} AND DISPATCH_NO = #{dispatchNo}
</update>
<select id="findResrceAndWorkCenterBySfc" resultType="com.foreverwin.mesnac.common.dto.SfcDispatchDto">
SELECT ZSD2.RESRCE RESRCE,ZSD2.WORK_CENTER WORK_CENTER FROM
SFC S
INNER JOIN SFC_ROUTING SR ON SR.SFC_BO = S.HANDLE
INNER JOIN SFC_ROUTER ST ON ST.SFC_ROUTING_BO = SR.HANDLE AND ST.IN_USE='true'
INNER JOIN SFC_STEP SS ON SS.SFC_ROUTER_BO = ST.HANDLE AND (SS.QTY_IN_QUEUE > 0 OR SS.QTY_IN_WORK > 0)
LEFT JOIN Z_SFC_DISPATCH ZSD2 ON ZSD2.DISPATCH_NO = S.SFC || '-' || SS.STEP_ID
WHERE S.SITE = #{site}
AND S.SFC = #{sfcDispatch.sfc}
</select>
<select id="findSfcDispatchBySfc" resultType="com.foreverwin.mesnac.common.dto.SfcDispatchDto">
SELECT
zsd.*,SO.QTY_TO_BUILD
FROM
Z_SFC_DISPATCH zsd
LEFT JOIN SHOP_ORDER SO ON zsd.SHOP_ORDER = SO.SHOP_ORDER
WHERE
zsd.site = '1000'
<if test="dto.sfc!=null">AND zsd.SFC=#{dto.sfc}</if>
<if test="dto.stepId!=null">AND zsd.STEP_ID=#{dto.stepId}</if>
<if test="dto.operation!=null">AND zsd.OPERATION=#{dto.operation}</if>
<if test="dto.resrce!=null">AND zsd.RESRCE=#{dto.resrce}</if>
<if test="dto.handle!=null">AND zsd.HANDLE=#{dto.handle}</if>
</select>
<select id="findSplitSfcDispatch" resultMap="BaseResultMap">
SELECT
<include refid="Base_Column_List"></include>
FROM Z_SFC_DISPATCH
WHERE SITE = #{site} AND SFC = #{sfc} AND TO_NUMBER(STEP_ID) >= #{stepId}
</select>
<select id="findsfcComplete" resultType="com.foreverwin.mesnac.dispatch.model.SfcDispatch">
SELECT
<include refid="Base_Column_List"/>
FROM Z_SFC_DISPATCH
WHERE SITE = #{site}
<if test="shopOrder != null and shopOrder != ''">
AND SHOP_ORDER = #{shopOrder}
</if>
<if test="stepId != null and stepId != ''">
AND STEP_ID = #{stepId}
</if>
AND ACTUAL_COMPLETE_DATE IS NOT NULL
AND ROWNUM=1 ORDER BY ACTUAL_COMPLETE_DATE DESC
</select>
<select id="findNewtistSfcDispatchBySfc" resultType="com.foreverwin.mesnac.common.dto.SfcDispatchDto">
SELECT
*
FROM
(
SELECT
ZLT.SFC_DISPATCH_BO HANDLE
FROM
Z_LOGISTICS_TURNOVER ZLT
LEFT JOIN Z_SFC_DISPATCH ZSD ON ZLT.SFC_DISPATCH_BO = ZSD.HANDLE
WHERE
ZLT.STATUS = 'NEW'
AND ZSD.SFC = #{sfc}
ORDER BY
ZSD.ACTUAL_COMPLETE_DATE DESC
)
WHERE
ROWNUM = 1
</select>
<select id="findSfcDispatchDD" resultType="com.foreverwin.mesnac.common.dto.SfcDispatchDDto">
SELECT
CASE WHEN OT.DESCRIPTION = '虚拟工序' AND C5.VALUE IS NOT NULL THEN concat(OT.DESCRIPTION,'('|| C5.VALUE ||')') ELSE
OT.DESCRIPTION END OPERATION_DESCRIPTION,
ZSD.EMPLOYEE_DESCRIPTION,
ZSD.ACTUAL_START_DATE,
ZSD.ACTUAL_COMPLETE_DATE,
ZSD.PLANNED_COMP_DATE,
ZNU.FULL_NAME,
CASE WHEN ZIT."RESULT" = 'OK' THEN N'合格' WHEN ZIT."RESULT" = 'NG' THEN N'不合格' ELSE N'--' END RESULT_DESC
FROM
Z_SFC_DISPATCH ZSD
LEFT JOIN Z_INSPECTION_TASK ZIT ON ZSD.HANDLE=ZIT.SFC_DISPATCH_BO
LEFT JOIN Z_NWA_USER ZNU ON ZNU.USER_NAME = ZIT.MODIFY_USER
INNER JOIN OPERATION O ON O.SITE = ZSD.SITE AND O.OPERATION = ZSD.OPERATION AND O.CURRENT_REVISION = 'true'
LEFT JOIN OPERATION_T OT ON OT.OPERATION_BO = O.HANDLE
LEFT JOIN CUSTOM_FIELDS C5 ON C5.HANDLE = 'RouterOperationBO:RouterStepBO:' || ZSD.ROUTER_BO || ',' ||
ZSD.STEP_ID AND C5.ATTRIBUTE='SOURCE_DESCRIPTION'
AND OT.LOCALE = 'zh'
WHERE
ZSD.SFC = #{sfc}
ORDER BY
TO_NUMBER(ZSD.DISPATCH_SEQ) asc
</select>
<update id="updateSfcDispatchQty">
UPDATE Z_SFC_DISPATCH SET DISPATCH_QTY = DISPATCH_QTY - #{splitQty}
WHERE SITE = #{site} AND SFC = #{sfc} AND DISPATCH_SEQ >= #{currentSeq}
</update>
</mapper>