select transfer_id, task_code, ori_warehouse_id, ori_location_code, target_warehouse_id, target_location_code, material_id, product_batch, plan_code, apply_qty, outstock_qty, instock_qty, operation_type, transfer_type, apply_reason, audit_reason, audit_status, execute_status, apply_by, apply_date, audit_by, audit_date, update_by, update_date, begin_time, end_time from wms_transfer
insert into wms_transfer
task_code,
ori_warehouse_id,
ori_location_code,
target_warehouse_id,
target_location_code,
material_id,
product_batch,
plan_code,
apply_qty,
outstock_qty,
instock_qty,
operation_type,
transfer_type,
apply_reason,
audit_reason,
audit_status,
execute_status,
apply_by,
apply_date,
audit_by,
audit_date,
update_by,
update_date,
begin_time,
end_time,
#{taskCode},
#{oriWarehouseId},
#{oriLocationCode},
#{targetWarehouseId},
#{targetLocationCode},
#{materialId},
#{productBatch},
#{planCode},
#{applyQty},
#{outstockQty},
#{instockQty},
#{operationType},
#{transferType},
#{applyReason},
#{auditReason},
#{auditStatus},
#{executeStatus},
#{applyBy},
#{applyDate},
#{auditBy},
#{auditDate},
#{updateBy},
#{updateDate},
#{beginTime},
#{endTime},
update wms_transfer
task_code = #{taskCode},
ori_warehouse_id = #{oriWarehouseId},
ori_location_code = #{oriLocationCode},
target_warehouse_id = #{targetWarehouseId},
target_location_code = #{targetLocationCode},
material_id = #{materialId},
product_batch = #{productBatch},
plan_code = #{planCode},
apply_qty = #{applyQty},
outstock_qty = #{outstockQty},
instock_qty = #{instockQty},
operation_type = #{operationType},
transfer_type = #{transferType},
apply_reason = #{applyReason},
audit_reason = #{auditReason},
audit_status = #{auditStatus},
execute_status = #{executeStatus},
apply_by = #{applyBy},
apply_date = #{applyDate},
audit_by = #{auditBy},
audit_date = #{auditDate},
update_by = #{updateBy},
update_date = #{updateDate},
begin_time = #{beginTime},
end_time = #{endTime},
where transfer_id = #{transferId}
delete from wms_transfer where transfer_id = #{transferId}
delete from wms_transfer where transfer_id in
#{transferId}
delete from wms_transfer_detail where transfer_id in
#{transferId}
delete from wms_transfer_detail where transfer_id = #{transferId}
insert into wms_transfer_detail( transfer_detail_id, transfer_id, location_code, material_barcode, instock_batch, material_id, plan_amount, real_amount, execute_status, execute_person, execute_time, transfer_detail_type, machine_name, create_by, create_date, update_by, update_date, active_flag) values
( #{item.transferDetailId}, #{item.transferId}, #{item.locationCode}, #{item.materialBarcode}, #{item.instockBatch}, #{item.materialId}, #{item.planAmount}, #{item.realAmount}, #{item.executeStatus}, #{item.executePerson}, #{item.executeTime}, #{item.transferDetailType}, #{item.machineName}, #{item.createBy}, #{item.createDate}, #{item.updateBy}, #{item.updateDate}, #{item.activeFlag})