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.
722 lines
37 KiB
XML
722 lines
37 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.production.mapper.AccessoryLogMapper">
|
|
|
|
<!-- 通用查询映射结果 -->
|
|
<resultMap id="BaseResultMap" type="com.foreverwin.mesnac.production.model.AccessoryLog">
|
|
<id column="HANDLE" property="handle"/>
|
|
<result column="SITE" property="site"/>
|
|
<result column="WORK_CENTER" property="workCenter"/>
|
|
<result column="SHOP_ORDER" property="shopOrder"/>
|
|
<result column="SFC" property="sfc"/>
|
|
<result column="OPERATION" property="operation"/>
|
|
<result column="STEP_ID" property="stepId"/>
|
|
<result column="RESRCE" property="resrce"/>
|
|
<result column="LABEL" property="label"/>
|
|
<result column="BATCH" property="batch"/>
|
|
<result column="ITEM" property="item"/>
|
|
<result column="REVISION" property="revision"/>
|
|
<result column="QTY" property="qty"/>
|
|
<result column="CREATE_USER" property="createUser"/>
|
|
<result column="CREATED_DATE_TIME" property="createdDateTime"/>
|
|
<result column="DESCRIPTION" property="description"/>
|
|
|
|
</resultMap>
|
|
|
|
<resultMap id="FullResultMap" type="com.foreverwin.mesnac.production.dto.AccessoryConsumDto">
|
|
<result column="USER" property="user"/>
|
|
<result column="ROLE" property="role"/>
|
|
<result column="IS_COMPLETED" property="isCompleted"/>
|
|
<result column="ITEM_BO" property="itemBo"/>
|
|
<result column="SFC" property="sfc"/>
|
|
<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="RESOURCE_DESCRIPTION" property="resourceDescription"/>
|
|
<result column="COMPONENT_DESCRIPTION" property="componentDescription"/>
|
|
<result column="OPERATION_DESCRIPTION" property="operationDescription"/>
|
|
<result column="RESOURCE_WORK_CENTER" property="resourceWorkCenter"/>
|
|
<result column="ACCESSORY_ITEM" property="accessoryItem"/>
|
|
<result column="ACCESSORY_DESCRIPTION" property="accessoryDescription"/>
|
|
<result column="ACCESSORY_QTY" property="accessoryQty"/>
|
|
<result column="WORK_CENTER_DESCRIPTION" property="workCenterDescription"/>
|
|
</resultMap>
|
|
<!-- 通用查询结果列 -->
|
|
<sql id="Base_Column_List">
|
|
HANDLE, SITE, WORK_CENTER, SHOP_ORDER, SFC, OPERATION, STEP_ID, RESRCE, LABEL, BATCH, ITEM, REVISION, QTY,
|
|
CREATE_USER, CREATED_DATE_TIME
|
|
</sql>
|
|
|
|
<!-- BaseMapper标准查询/修改/删除 -->
|
|
<select id="selectById" resultMap="BaseResultMap">
|
|
SELECT <include refid="Base_Column_List"></include> FROM Z_ACCESSORY_LOG WHERE HANDLE=#{handle}
|
|
</select>
|
|
|
|
<select id="selectByMap" resultMap="BaseResultMap">
|
|
SELECT
|
|
<include refid="Base_Column_List"></include>
|
|
FROM Z_ACCESSORY_LOG
|
|
<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>
|
|
</select>
|
|
|
|
<select id="selectBatchIds" resultMap="BaseResultMap">
|
|
SELECT
|
|
<include refid="Base_Column_List"></include>
|
|
FROM Z_ACCESSORY_LOG WHERE HANDLE IN (
|
|
<foreach item="item" index="index" collection="coll" separator=",">#{item}
|
|
</foreach>)
|
|
</select>
|
|
|
|
<select id="selectOne" resultMap="BaseResultMap">
|
|
SELECT <include refid="Base_Column_List"></include> FROM Z_ACCESSORY_LOG
|
|
<where>
|
|
<if test="ew.entity.handle!=null">
|
|
HANDLE=#{ew.handle}
|
|
</if>
|
|
<if test="ew.entity.site!=null">AND SITE=#{ew.entity.site}</if>
|
|
<if test="ew.entity.workCenter!=null">AND WORK_CENTER=#{ew.entity.workCenter}</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.operation!=null">AND OPERATION=#{ew.entity.operation}</if>
|
|
<if test="ew.entity.stepId!=null">AND STEP_ID=#{ew.entity.stepId}</if>
|
|
<if test="ew.entity.resrce!=null">AND RESRCE=#{ew.entity.resrce}</if>
|
|
<if test="ew.entity.label!=null">AND LABEL=#{ew.entity.label}</if>
|
|
<if test="ew.entity.batch!=null">AND BATCH=#{ew.entity.batch}</if>
|
|
<if test="ew.entity.item!=null">AND ITEM=#{ew.entity.item}</if>
|
|
<if test="ew.entity.revision!=null">AND REVISION=#{ew.entity.revision}</if>
|
|
<if test="ew.entity.qty!=null">AND QTY=#{ew.entity.qty}</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>
|
|
</where>
|
|
</select>
|
|
|
|
<select id="selectCount" resultType="Integer">
|
|
SELECT COUNT(1) FROM Z_ACCESSORY_LOG
|
|
<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.workCenter!=null">AND WORK_CENTER=#{ew.entity.workCenter}</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.operation!=null">AND OPERATION=#{ew.entity.operation}</if>
|
|
<if test="ew.entity.stepId!=null">AND STEP_ID=#{ew.entity.stepId}</if>
|
|
<if test="ew.entity.resrce!=null">AND RESRCE=#{ew.entity.resrce}</if>
|
|
<if test="ew.entity.label!=null">AND LABEL=#{ew.entity.label}</if>
|
|
<if test="ew.entity.batch!=null">AND BATCH=#{ew.entity.batch}</if>
|
|
<if test="ew.entity.item!=null">AND ITEM=#{ew.entity.item}</if>
|
|
<if test="ew.entity.revision!=null">AND REVISION=#{ew.entity.revision}</if>
|
|
<if test="ew.entity.qty!=null">AND QTY=#{ew.entity.qty}</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">
|
|
${ew.sqlSegment}
|
|
</if>
|
|
</if>
|
|
</where>
|
|
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
|
|
${ew.sqlSegment}
|
|
</if>
|
|
</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_ACCESSORY_LOG
|
|
<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.workCenter!=null">AND WORK_CENTER=#{ew.entity.workCenter}</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.operation!=null">AND OPERATION=#{ew.entity.operation}</if>
|
|
<if test="ew.entity.stepId!=null">AND STEP_ID=#{ew.entity.stepId}</if>
|
|
<if test="ew.entity.resrce!=null">AND RESRCE=#{ew.entity.resrce}</if>
|
|
<if test="ew.entity.label!=null">AND LABEL=#{ew.entity.label}</if>
|
|
<if test="ew.entity.batch!=null">AND BATCH=#{ew.entity.batch}</if>
|
|
<if test="ew.entity.item!=null">AND ITEM=#{ew.entity.item}</if>
|
|
<if test="ew.entity.revision!=null">AND REVISION=#{ew.entity.revision}</if>
|
|
<if test="ew.entity.qty!=null">AND QTY=#{ew.entity.qty}</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">
|
|
${ew.sqlSegment}
|
|
</if>
|
|
</if>
|
|
</where>
|
|
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
|
|
${ew.sqlSegment}
|
|
</if>
|
|
</select>
|
|
|
|
<select id="selectMaps" resultType="HashMap">
|
|
SELECT
|
|
<choose>
|
|
<when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when>
|
|
<otherwise>
|
|
<include refid="Base_Column_List"></include>
|
|
</otherwise>
|
|
</choose>
|
|
FROM Z_ACCESSORY_LOG
|
|
<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.workCenter!=null">AND WORK_CENTER=#{ew.entity.workCenter}</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.operation!=null">AND OPERATION=#{ew.entity.operation}</if>
|
|
<if test="ew.entity.stepId!=null">AND STEP_ID=#{ew.entity.stepId}</if>
|
|
<if test="ew.entity.resrce!=null">AND RESRCE=#{ew.entity.resrce}</if>
|
|
<if test="ew.entity.label!=null">AND LABEL=#{ew.entity.label}</if>
|
|
<if test="ew.entity.batch!=null">AND BATCH=#{ew.entity.batch}</if>
|
|
<if test="ew.entity.item!=null">AND ITEM=#{ew.entity.item}</if>
|
|
<if test="ew.entity.revision!=null">AND REVISION=#{ew.entity.revision}</if>
|
|
<if test="ew.entity.qty!=null">AND QTY=#{ew.entity.qty}</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">
|
|
${ew.sqlSegment}
|
|
</if>
|
|
</if>
|
|
</where>
|
|
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
|
|
${ew.sqlSegment}
|
|
</if>
|
|
</select>
|
|
|
|
<select id="selectObjs" resultType="Object">
|
|
SELECT
|
|
<choose>
|
|
<when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when>
|
|
<otherwise>
|
|
<include refid="Base_Column_List"></include>
|
|
</otherwise>
|
|
</choose>
|
|
FROM Z_ACCESSORY_LOG
|
|
<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.workCenter!=null">AND WORK_CENTER=#{ew.entity.workCenter}</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.operation!=null">AND OPERATION=#{ew.entity.operation}</if>
|
|
<if test="ew.entity.stepId!=null">AND STEP_ID=#{ew.entity.stepId}</if>
|
|
<if test="ew.entity.resrce!=null">AND RESRCE=#{ew.entity.resrce}</if>
|
|
<if test="ew.entity.label!=null">AND LABEL=#{ew.entity.label}</if>
|
|
<if test="ew.entity.batch!=null">AND BATCH=#{ew.entity.batch}</if>
|
|
<if test="ew.entity.item!=null">AND ITEM=#{ew.entity.item}</if>
|
|
<if test="ew.entity.revision!=null">AND REVISION=#{ew.entity.revision}</if>
|
|
<if test="ew.entity.qty!=null">AND QTY=#{ew.entity.qty}</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">
|
|
${ew.sqlSegment}
|
|
</if>
|
|
</if>
|
|
</where>
|
|
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
|
|
${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_ACCESSORY_LOG
|
|
<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.workCenter!=null">AND WORK_CENTER=#{ew.entity.workCenter}</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.operation!=null">AND OPERATION=#{ew.entity.operation}</if>
|
|
<if test="ew.entity.stepId!=null">AND STEP_ID=#{ew.entity.stepId}</if>
|
|
<if test="ew.entity.resrce!=null">AND RESRCE=#{ew.entity.resrce}</if>
|
|
<if test="ew.entity.label!=null">AND LABEL=#{ew.entity.label}</if>
|
|
<if test="ew.entity.batch!=null">AND BATCH=#{ew.entity.batch}</if>
|
|
<if test="ew.entity.item!=null">AND ITEM=#{ew.entity.item}</if>
|
|
<if test="ew.entity.revision!=null">AND REVISION=#{ew.entity.revision}</if>
|
|
<if test="ew.entity.qty!=null">AND QTY=#{ew.entity.qty}</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">
|
|
${ew.sqlSegment}
|
|
</if>
|
|
</if>
|
|
</where>
|
|
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
|
|
${ew.sqlSegment}
|
|
</if>
|
|
</select>
|
|
|
|
<select id="selectMapsPage" resultType="HashMap">
|
|
SELECT
|
|
<choose>
|
|
<when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when>
|
|
<otherwise>
|
|
<include refid="Base_Column_List"></include>
|
|
</otherwise>
|
|
</choose>
|
|
FROM Z_ACCESSORY_LOG
|
|
<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.workCenter!=null">AND WORK_CENTER=#{ew.entity.workCenter}</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.operation!=null">AND OPERATION=#{ew.entity.operation}</if>
|
|
<if test="ew.entity.stepId!=null">AND STEP_ID=#{ew.entity.stepId}</if>
|
|
<if test="ew.entity.resrce!=null">AND RESRCE=#{ew.entity.resrce}</if>
|
|
<if test="ew.entity.label!=null">AND LABEL=#{ew.entity.label}</if>
|
|
<if test="ew.entity.batch!=null">AND BATCH=#{ew.entity.batch}</if>
|
|
<if test="ew.entity.item!=null">AND ITEM=#{ew.entity.item}</if>
|
|
<if test="ew.entity.revision!=null">AND REVISION=#{ew.entity.revision}</if>
|
|
<if test="ew.entity.qty!=null">AND QTY=#{ew.entity.qty}</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">
|
|
${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.production.model.AccessoryLog">
|
|
INSERT INTO Z_ACCESSORY_LOG
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
HANDLE,
|
|
<if test="site!=null">SITE,</if>
|
|
<if test="workCenter!=null">WORK_CENTER,</if>
|
|
<if test="shopOrder!=null">SHOP_ORDER,</if>
|
|
<if test="sfc!=null">SFC,</if>
|
|
<if test="operation!=null">OPERATION,</if>
|
|
<if test="stepId!=null">STEP_ID,</if>
|
|
<if test="resrce!=null">RESRCE,</if>
|
|
<if test="label!=null">LABEL,</if>
|
|
<if test="batch!=null">BATCH,</if>
|
|
<if test="item!=null">ITEM,</if>
|
|
<if test="revision!=null">REVISION,</if>
|
|
<if test="qty!=null">QTY,</if>
|
|
<if test="createUser!=null">CREATE_USER,</if>
|
|
<if test="createdDateTime!=null">CREATED_DATE_TIME,</if>
|
|
</trim>
|
|
VALUES
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
#{handle},
|
|
<if test="site!=null">#{site},</if>
|
|
<if test="workCenter!=null">#{workCenter},</if>
|
|
<if test="shopOrder!=null">#{shopOrder},</if>
|
|
<if test="sfc!=null">#{sfc},</if>
|
|
<if test="operation!=null">#{operation},</if>
|
|
<if test="stepId!=null">#{stepId},</if>
|
|
<if test="resrce!=null">#{resrce},</if>
|
|
<if test="label!=null">#{label},</if>
|
|
<if test="batch!=null">#{batch},</if>
|
|
<if test="item!=null">#{item},</if>
|
|
<if test="revision!=null">#{revision},</if>
|
|
<if test="qty!=null">#{qty},</if>
|
|
<if test="createUser!=null">#{createUser},</if>
|
|
<if test="createdDateTime!=null">#{createdDateTime},</if>
|
|
</trim>
|
|
</insert>
|
|
|
|
<insert id="insertAllColumn" parameterType="com.foreverwin.mesnac.production.model.AccessoryLog">
|
|
INSERT INTO Z_ACCESSORY_LOG
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<include refid="Base_Column_List"></include>
|
|
</trim>
|
|
VALUES
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
#{handle},
|
|
#{site},
|
|
#{workCenter},
|
|
#{shopOrder},
|
|
#{sfc},
|
|
#{operation},
|
|
#{stepId},
|
|
#{resrce},
|
|
#{label},
|
|
#{batch},
|
|
#{item},
|
|
#{revision},
|
|
#{qty},
|
|
#{createUser},
|
|
#{createdDateTime},
|
|
</trim>
|
|
</insert>
|
|
|
|
|
|
<update id="updateById">
|
|
UPDATE Z_ACCESSORY_LOG
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
<if test="et.site!=null">SITE=#{et.site},</if>
|
|
<if test="et.workCenter!=null">WORK_CENTER=#{et.workCenter},</if>
|
|
<if test="et.shopOrder!=null">SHOP_ORDER=#{et.shopOrder},</if>
|
|
<if test="et.sfc!=null">SFC=#{et.sfc},</if>
|
|
<if test="et.operation!=null">OPERATION=#{et.operation},</if>
|
|
<if test="et.stepId!=null">STEP_ID=#{et.stepId},</if>
|
|
<if test="et.resrce!=null">RESRCE=#{et.resrce},</if>
|
|
<if test="et.label!=null">LABEL=#{et.label},</if>
|
|
<if test="et.batch!=null">BATCH=#{et.batch},</if>
|
|
<if test="et.item!=null">ITEM=#{et.item},</if>
|
|
<if test="et.revision!=null">REVISION=#{et.revision},</if>
|
|
<if test="et.qty!=null">QTY=#{et.qty},</if>
|
|
<if test="et.createUser!=null">CREATE_USER=#{et.createUser},</if>
|
|
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</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_ACCESSORY_LOG <trim prefix="SET" suffixOverrides=",">
|
|
SITE=#{et.site},
|
|
WORK_CENTER=#{et.workCenter},
|
|
SHOP_ORDER=#{et.shopOrder},
|
|
SFC=#{et.sfc},
|
|
OPERATION=#{et.operation},
|
|
STEP_ID=#{et.stepId},
|
|
RESRCE=#{et.resrce},
|
|
LABEL=#{et.label},
|
|
BATCH=#{et.batch},
|
|
ITEM=#{et.item},
|
|
REVISION=#{et.revision},
|
|
QTY=#{et.qty},
|
|
CREATE_USER=#{et.createUser},
|
|
CREATED_DATE_TIME=#{et.createdDateTime},
|
|
</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_ACCESSORY_LOG
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
<if test="et.site!=null">SITE=#{et.site},</if>
|
|
<if test="et.workCenter!=null">WORK_CENTER=#{et.workCenter},</if>
|
|
<if test="et.shopOrder!=null">SHOP_ORDER=#{et.shopOrder},</if>
|
|
<if test="et.sfc!=null">SFC=#{et.sfc},</if>
|
|
<if test="et.operation!=null">OPERATION=#{et.operation},</if>
|
|
<if test="et.stepId!=null">STEP_ID=#{et.stepId},</if>
|
|
<if test="et.resrce!=null">RESRCE=#{et.resrce},</if>
|
|
<if test="et.label!=null">LABEL=#{et.label},</if>
|
|
<if test="et.batch!=null">BATCH=#{et.batch},</if>
|
|
<if test="et.item!=null">ITEM=#{et.item},</if>
|
|
<if test="et.revision!=null">REVISION=#{et.revision},</if>
|
|
<if test="et.qty!=null">QTY=#{et.qty},</if>
|
|
<if test="et.createUser!=null">CREATE_USER=#{et.createUser},</if>
|
|
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</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.workCenter!=null">AND WORK_CENTER=#{ew.entity.workCenter}</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.operation!=null">AND OPERATION=#{ew.entity.operation}</if>
|
|
<if test="ew.entity.stepId!=null">AND STEP_ID=#{ew.entity.stepId}</if>
|
|
<if test="ew.entity.resrce!=null">AND RESRCE=#{ew.entity.resrce}</if>
|
|
<if test="ew.entity.label!=null">AND LABEL=#{ew.entity.label}</if>
|
|
<if test="ew.entity.batch!=null">AND BATCH=#{ew.entity.batch}</if>
|
|
<if test="ew.entity.item!=null">AND ITEM=#{ew.entity.item}</if>
|
|
<if test="ew.entity.revision!=null">AND REVISION=#{ew.entity.revision}</if>
|
|
<if test="ew.entity.qty!=null">AND QTY=#{ew.entity.qty}</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">
|
|
${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_ACCESSORY_LOG WHERE HANDLE=#{handle}
|
|
</delete>
|
|
|
|
<delete id="deleteByMap">
|
|
DELETE FROM Z_ACCESSORY_LOG
|
|
<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_ACCESSORY_LOG
|
|
<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.workCenter!=null">AND WORK_CENTER=#{ew.entity.workCenter}</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.operation!=null">AND OPERATION=#{ew.entity.operation}</if>
|
|
<if test="ew.entity.stepId!=null">AND STEP_ID=#{ew.entity.stepId}</if>
|
|
<if test="ew.entity.resrce!=null">AND RESRCE=#{ew.entity.resrce}</if>
|
|
<if test="ew.entity.label!=null">AND LABEL=#{ew.entity.label}</if>
|
|
<if test="ew.entity.batch!=null">AND BATCH=#{ew.entity.batch}</if>
|
|
<if test="ew.entity.item!=null">AND ITEM=#{ew.entity.item}</if>
|
|
<if test="ew.entity.revision!=null">AND REVISION=#{ew.entity.revision}</if>
|
|
<if test="ew.entity.qty!=null">AND QTY=#{ew.entity.qty}</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">
|
|
${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_ACCESSORY_LOG WHERE HANDLE IN (
|
|
<foreach item="item" index="index" collection="coll" separator=",">#{item}
|
|
</foreach>)
|
|
</delete>
|
|
<!-- BaseMapper标准查询/修改/删除 -->
|
|
<select id="getLabelList" resultMap="BaseResultMap">
|
|
SELECT ZAL.*,IT.DESCRIPTION FROM Z_ACCESSORY_LOG zal
|
|
INNER JOIN ITEM IM ON IM.SITE = zal.SITE AND IM.ITEM=zal.ITEM
|
|
LEFT JOIN ITEM_T IT ON IT.ITEM_BO = IM.HANDLE AND IT.LOCALE = 'zh'
|
|
WHERE zal.sfc=#{sfc} AND zal.SITE=#{site} AND zal.STEP_ID=#{stepId}
|
|
ORDER BY zal.CREATED_DATE_TIME DESC
|
|
</select>
|
|
|
|
<select id="getItems" resultMap="FullResultMap">
|
|
SELECT DISTINCT(ZAL.ITEM) ACCESSORY_ITEM,IT.DESCRIPTION ACCESSORY_DESCRIPTION FROM Z_ACCESSORY_LOG ZAL
|
|
LEFT JOIN ITEM IM ON ZAL.ITEM = IM.ITEM
|
|
LEFT JOIN ITEM_T IT ON IM.HANDLE=IT.ITEM_BO
|
|
</select>
|
|
<select id="selectAccessory" 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, OT.DESCRIPTION OPERATION_DESCRIPTION, SD.RESOURCE_TYPE, 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,
|
|
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,WT.DESCRIPTION WORK_CENTER_DESCRIPTION, MAX(CP.ITEM) COMPONENT,
|
|
MAX(CT.DESCRIPTION) COMPONENT_DESCRIPTION, MAX(C3.VALUE) TEXTURE, MAX(C4.VALUE) MAT_SPEC ,SD.OTHER_2,
|
|
ZAL.ITEM ACCESSORY_ITEM,IT1.DESCRIPTION ACCESSORY_DESCRIPTION,ZAL.QTY ACCESSORY_QTY
|
|
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 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 WORK_CENTER WR1 ON WR1.WORK_CENTER = SD.WORK_CENTER
|
|
LEFT JOIN WORK_CENTER_T WT ON WT.WORK_CENTER_BO = WR1.HANDLE AND WT.LOCALE = 'zh'
|
|
LEFT JOIN Z_ACCESSORY_LOG ZAL ON ZAL.SFC = SD.SFC AND ZAL.STEP_ID = SD.STEP_ID
|
|
INNER JOIN ITEM IM1 ON IM1.ITEM = ZAL.ITEM
|
|
LEFT JOIN ITEM_T IT1 ON IT1.ITEM_BO = IM1.HANDLE AND IT1.LOCALE = 'zh'
|
|
WHERE SD.SITE = #{site} AND ZAL.ITEM IS NOT NULL
|
|
<if test="workCenter != null and workCenter != ''">
|
|
AND SD.OPERATION LIKE #{workCenter}||'%'
|
|
</if>
|
|
<if test="dispatchStatus != null and dispatchStatus != ''">
|
|
AND SD.DISPATCH_STATUS = #{dispatchStatus}
|
|
</if>
|
|
<if test="status != null and status != ''">
|
|
AND SD.DISPATCH_STATUS IN ${status}
|
|
</if>
|
|
<if test="item != null and item != ''">
|
|
AND IM.ITEM = #{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 = #{shopOrder}
|
|
</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 OT.DESCRIPTION = #{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="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.ACTUAL_START_DATE >= TO_DATE(#{startFromDate}, 'YYYY-MM-DD')
|
|
</if>
|
|
<if test="startToDate != null">
|
|
AND SD.ACTUAL_START_DATE <= TO_DATE(#{startToDate}|| '23:59:59', 'YYYY-MM-DD HH24:MI:SS')
|
|
</if>
|
|
<if test="completeFromDate != null">
|
|
AND SD.ACTUAL_COMPLETE_DATE >= TO_DATE(#{completeFromDate}, 'YYYY-MM-DD')
|
|
</if>
|
|
<if test="completeToDate != null">
|
|
AND SD.ACTUAL_COMPLETE_DATE <= TO_DATE(#{completeToDate}|| '23:59:59', 'YYYY-MM-DD HH24:MI:SS')
|
|
</if>
|
|
<if test="accessory != null and accessory != ''">
|
|
AND ZAL.ITEM = #{accessory}
|
|
</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, 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,
|
|
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,ZAL.ITEM
|
|
,ZAL.QTY,WT.DESCRIPTION,IT1.DESCRIPTION
|
|
) 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,WIP.STEP_ID,TO_NUMBER(WIP.DISPATCH_SEQ)
|
|
</select>
|
|
</mapper>
|