From 443fd017f0a0917bd2167f6b297ddf8d67973153 Mon Sep 17 00:00:00 2001 From: qiezi <15576055375@163.com> Date: Fri, 27 Dec 2024 16:22:45 +0800 Subject: [PATCH] =?UTF-8?q?24-12-27=20=E6=A0=87=E7=AD=BE=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resources/mapper/production/OutboundLabelScanMapper.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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})