Browse Source

24-12-27 标签记录

master
qiezi 1 year ago
parent
commit
443fd017f0
  1. 4
      src/main/resources/mapper/production/OutboundLabelScanMapper.xml

4
src/main/resources/mapper/production/OutboundLabelScanMapper.xml

@ -3,10 +3,10 @@
<mapper namespace="com.heai.modules.production.dao.OutboundLabelScanMapper">
<insert id="save">
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})
</insert>
<select id="searchOutboundLabelScanList" resultType="com.heai.modules.production.entity.OutboundLabelScanData">

Loading…
Cancel
Save