Browse Source

2026-04-01

收货入库任务和拣货出库任务【下达】时修改close_flag = 'N'
master
fengyuan_yang 3 months ago
parent
commit
fe96919161
  1. 3
      src/main/resources/mapper/inboundNotification/InboundNotificationHeadMapper.xml
  2. 3
      src/main/resources/mapper/outboundNotification/OutboundNotificationHeadMapper.xml

3
src/main/resources/mapper/inboundNotification/InboundNotificationHeadMapper.xml

@ -227,7 +227,8 @@
<update id="issueInboundNotification">
UPDATE inbound_notification_head
SET assigned_by = #{assignedBy},
assigned_date = GETDATE()
assigned_date = GETDATE(),
close_flag = 'N'
WHERE site = #{site} AND bu_no = #{buNo} AND order_no = #{orderNo}
</update>

3
src/main/resources/mapper/outboundNotification/OutboundNotificationHeadMapper.xml

@ -125,7 +125,8 @@
UPDATE outbound_notification_head
SET order_status = #{orderStatus},
assigned_by = #{assignedBy},
assigned_date = GETDATE()
assigned_date = GETDATE(),
close_flag = 'N'
WHERE site = #{site} AND bu_no = #{buNo} AND order_no = #{orderNo}
</update>

Loading…
Cancel
Save