diff --git a/src/main/resources/mapper/production/OutboundLabelScanMapper.xml b/src/main/resources/mapper/production/OutboundLabelScanMapper.xml index 97e7aca..afc1744 100644 --- a/src/main/resources/mapper/production/OutboundLabelScanMapper.xml +++ b/src/main/resources/mapper/production/OutboundLabelScanMapper.xml @@ -3,10 +3,10 @@ - insert into outbound_label_scan(site, del_notify_no, del_notify_item_no, scan_item_no,seq_no,scan_type,scan_qty, create_by, create_data,print_id) + insert into outbound_label_scan(site, del_notify_no, del_notify_item_no, scan_item_no,seq_no,scan_type,scan_qty, create_by, create_data,print_id,weight) values(#{site},#{delNotifyNo},#{delNotifyItemNo}, (select isnull(max(scan_item_no),1)+1 from outbound_label_scan where site = #{site} and del_notify_no = #{delNotifyNo} and del_notify_item_no = #{delNotifyItemNo}), - #{seqNo},#{scanType},#{scanQty},#{createBy},#{createData},#{printId}) + #{seqNo},#{scanType},#{scanQty},#{createBy},#{createData},#{printId},#{weight})