|
|
|
@ -71,6 +71,68 @@
|
|
|
|
|
</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<select id="selectBSKList" parameterType="WmsFpStorageNewsSn" resultMap="WmsFpStorageNewsSnResult">
|
|
|
|
|
SELECT
|
|
|
|
|
storage_id,
|
|
|
|
|
wh_code,
|
|
|
|
|
wa_code,
|
|
|
|
|
wl_code,
|
|
|
|
|
order_no,
|
|
|
|
|
product_name,
|
|
|
|
|
product_code,
|
|
|
|
|
sn,
|
|
|
|
|
bar_code,
|
|
|
|
|
amount,
|
|
|
|
|
batch_number,
|
|
|
|
|
user_defined2,
|
|
|
|
|
user_defined3,
|
|
|
|
|
user_defined4,
|
|
|
|
|
user_defined5,
|
|
|
|
|
user_defined6,
|
|
|
|
|
user_defined7,
|
|
|
|
|
user_defined8,
|
|
|
|
|
user_defined9,
|
|
|
|
|
user_defined10,
|
|
|
|
|
create_by,
|
|
|
|
|
gmt_create,
|
|
|
|
|
last_modified_by,
|
|
|
|
|
gmt_modified,
|
|
|
|
|
active_flag,
|
|
|
|
|
factory_code,
|
|
|
|
|
sap_factory_code
|
|
|
|
|
FROM
|
|
|
|
|
wms_fp_storage_news_sn_copy1
|
|
|
|
|
<where>
|
|
|
|
|
<if test="whCode != null and whCode != ''">and wh_code = #{whCode}</if>
|
|
|
|
|
<if test="waCode != null and waCode != ''">and wa_code = #{waCode}</if>
|
|
|
|
|
<if test="wlCode != null and wlCode != ''">and wl_code = #{wlCode}</if>
|
|
|
|
|
<if test="orderNo != null and orderNo != ''">and order_no = #{orderNo}</if>
|
|
|
|
|
<if test="productName != null and productName != ''">and product_name like concat('%', #{productName},
|
|
|
|
|
'%')
|
|
|
|
|
</if>
|
|
|
|
|
<if test="productCode != null and productCode != ''">and product_code = #{productCode}</if>
|
|
|
|
|
<if test="sn != null and sn != ''">and sn = #{sn}</if>
|
|
|
|
|
<if test="barCode != null and barCode != ''">and bar_code = #{barCode}</if>
|
|
|
|
|
<if test="amount != null ">and amount = #{amount}</if>
|
|
|
|
|
<if test="batchNumber != null and batchNumber != ''">and batch_number = #{batchNumber}</if>
|
|
|
|
|
<if test="userDefined2 != null and userDefined2 != ''">and user_defined2 = #{userDefined2}</if>
|
|
|
|
|
<if test="userDefined3 != null and userDefined3 != ''">and user_defined3 = #{userDefined3}</if>
|
|
|
|
|
<if test="userDefined4 != null and userDefined4 != ''">and user_defined4 = #{userDefined4}</if>
|
|
|
|
|
<if test="userDefined5 != null and userDefined5 != ''">and user_defined5 = #{userDefined5}</if>
|
|
|
|
|
<if test="userDefined6 != null and userDefined6 != ''">and user_defined6 = #{userDefined6}</if>
|
|
|
|
|
<if test="userDefined7 != null and userDefined7 != ''">and user_defined7 = #{userDefined7}</if>
|
|
|
|
|
<if test="userDefined8 != null and userDefined8 != ''">and user_defined8 = #{userDefined8}</if>
|
|
|
|
|
<if test="userDefined9 != null and userDefined9 != ''">and user_defined9 = #{userDefined9}</if>
|
|
|
|
|
<if test="userDefined10 != null and userDefined10 != ''">and user_defined10 = #{userDefined10}</if>
|
|
|
|
|
<if test="gmtCreate != null ">and gmt_create = #{gmtCreate}</if>
|
|
|
|
|
<if test="lastModifiedBy != null and lastModifiedBy != ''">and last_modified_by = #{lastModifiedBy}</if>
|
|
|
|
|
<if test="gmtModified != null ">and gmt_modified = #{gmtModified}</if>
|
|
|
|
|
<if test="activeFlag != null and activeFlag != ''">and active_flag = #{activeFlag}</if>
|
|
|
|
|
<if test="factoryCode != null and factoryCode != ''">and factory_code = #{factoryCode}</if>
|
|
|
|
|
<if test="sapFactoryCode != null and sapFactoryCode != ''">and sap_factory_code = #{sapFactoryCode}</if>
|
|
|
|
|
</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<select id="selectWmsFpStorageNewsSnByStorageId" parameterType="String" resultMap="WmsFpStorageNewsSnResult">
|
|
|
|
|
<include refid="selectWmsFpStorageNewsSnVo"/>
|
|
|
|
|
where storage_id = #{storageId}
|
|
|
|
@ -256,5 +318,123 @@
|
|
|
|
|
<select id="selectwmsFpStorageNews" resultType="java.lang.String">
|
|
|
|
|
select DISTINCT user_defined1 from wms_fp_storage_news where product_code=#{productCode} and active_flag='1'
|
|
|
|
|
</select>
|
|
|
|
|
<select id="selectBSKId" resultMap="WmsFpStorageNewsSnResult">
|
|
|
|
|
SELECT
|
|
|
|
|
wms_fp_storage_news_sn_copy1.storage_id,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.wh_code,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.wa_code,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.wl_code,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.order_no,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.product_name,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.product_code,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.sn,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.bar_code,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.amount,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.batch_number,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.user_defined2,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.user_defined3,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.user_defined4,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.user_defined5,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.user_defined6,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.user_defined7,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.user_defined8,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.user_defined9,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.create_by,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.gmt_create,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.last_modified_by,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.gmt_modified,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.active_flag,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.factory_code,
|
|
|
|
|
COALESCE(base.umrez, 0) AS user_defined10,
|
|
|
|
|
wms_fp_storage_news_sn_copy1.sap_factory_code
|
|
|
|
|
FROM
|
|
|
|
|
wms_fp_storage_news_sn_copy1
|
|
|
|
|
LEFT JOIN base_product base ON base.product_code LIKE concat ( '%', wms_fp_storage_news_sn_copy1.product_code, '%' )
|
|
|
|
|
WHERE
|
|
|
|
|
storage_id = #{workorderId}
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectBSKIdlist" resultMap="WmsFpStorageNewsSnResult">
|
|
|
|
|
SELECT
|
|
|
|
|
storage_id,
|
|
|
|
|
wh_code,
|
|
|
|
|
wa_code,
|
|
|
|
|
wl_code,
|
|
|
|
|
order_no,
|
|
|
|
|
product_name,
|
|
|
|
|
product_code,
|
|
|
|
|
sn,
|
|
|
|
|
bar_code,
|
|
|
|
|
amount,
|
|
|
|
|
batch_number,
|
|
|
|
|
user_defined2,
|
|
|
|
|
user_defined3,
|
|
|
|
|
user_defined4,
|
|
|
|
|
user_defined5,
|
|
|
|
|
user_defined6,
|
|
|
|
|
user_defined7,
|
|
|
|
|
user_defined8,
|
|
|
|
|
user_defined9,
|
|
|
|
|
user_defined10,
|
|
|
|
|
create_by,
|
|
|
|
|
gmt_create,
|
|
|
|
|
last_modified_by,
|
|
|
|
|
gmt_modified,
|
|
|
|
|
active_flag,
|
|
|
|
|
factory_code,
|
|
|
|
|
sap_factory_code
|
|
|
|
|
FROM
|
|
|
|
|
wms_fp_storage_news_sn_copy1_copy1
|
|
|
|
|
where user_defined4=#{workorderId}
|
|
|
|
|
</select>
|
|
|
|
|
<insert id="addBatchPallet" parameterType="java.util.List">
|
|
|
|
|
<foreach collection="list" item="dto" separator=";">
|
|
|
|
|
<!-- 插入数据到 wms_fp_storage_news_sn_copy1_copy1 表 -->
|
|
|
|
|
insert into wms_fp_storage_news_sn_copy1_copy1
|
|
|
|
|
<!-- 使用 <trim> 标签来处理列名,这样可以自动去掉最后一个逗号 -->
|
|
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
|
<if test="dto.workorderId != null">storage_id,</if>
|
|
|
|
|
<if test="dto.waCode != null">wa_code,</if>
|
|
|
|
|
<if test="dto.workorderCode != null">order_no,</if>
|
|
|
|
|
<if test="dto.productName != null">product_name,</if>
|
|
|
|
|
<if test="dto.productCode != null">product_code,</if>
|
|
|
|
|
<if test="dto.sn != null">sn,</if>
|
|
|
|
|
<if test="dto.batchQuantity != null">amount,</if>
|
|
|
|
|
<if test="dto.batchCode != null">batch_number,</if>
|
|
|
|
|
<if test="dto.attr4 != null">user_defined4,</if>
|
|
|
|
|
<if test="dto.productDateStr != null">user_defined5,</if>
|
|
|
|
|
<if test="dto.unit != null">user_defined6,</if>
|
|
|
|
|
<if test="dto.palletNo != null">user_defined7,</if>
|
|
|
|
|
<if test="dto.palletCode != null">user_defined8,</if>
|
|
|
|
|
<if test="dto.umrez != null">user_defined9,</if>
|
|
|
|
|
<if test="dto.createBy != null">create_by,</if>
|
|
|
|
|
<if test="dto.createTime != null">gmt_create,</if>
|
|
|
|
|
<if test="dto.factoryCode != null">factory_code,</if>
|
|
|
|
|
|
|
|
|
|
</trim>
|
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
|
<if test="dto.workorderId != null">#{dto.workorderId},</if>
|
|
|
|
|
<if test="dto.waCode != null">#{dto.waCode},</if>
|
|
|
|
|
<if test="dto.workorderCode != null">#{dto.workorderCode},</if>
|
|
|
|
|
<if test="dto.productName != null">#{dto.productName},</if>
|
|
|
|
|
<if test="dto.productCode != null">#{dto.productCode},</if>
|
|
|
|
|
<if test="dto.sn != null">#{dto.sn},</if>
|
|
|
|
|
<if test="dto.batchQuantity != null">#{dto.batchQuantity},</if>
|
|
|
|
|
<if test="dto.batchCode != null">#{dto.batchCode},</if>
|
|
|
|
|
<if test="dto.attr4 != null">#{dto.attr4},</if>
|
|
|
|
|
<if test="dto.productDateStr != null">#{dto.productDateStr},</if>
|
|
|
|
|
<if test="dto.unit != null">#{dto.unit},</if>
|
|
|
|
|
<if test="dto.palletNo != null">#{dto.palletNo},</if>
|
|
|
|
|
<if test="dto.palletCode != null">#{dto.palletCode},</if>
|
|
|
|
|
<if test="dto.umrez != null">#{dto.umrez},</if>
|
|
|
|
|
<if test="dto.createBy != null">#{dto.createBy},</if>
|
|
|
|
|
<if test="dto.createTime != null">#{dto.createTime},</if>
|
|
|
|
|
<if test="dto.factoryCode != null">#{dto.factoryCode},</if>
|
|
|
|
|
|
|
|
|
|
</trim>
|
|
|
|
|
</foreach>
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
</mapper>
|
|
|
|
|