From a525d90b547de38215f65dfdddd320ae90379fac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B8=B8=E7=86=9F=E5=90=B4=E5=BD=A6=E7=A5=96?= Date: Sat, 15 Nov 2025 00:36:59 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=86=E6=96=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mapper/automatedWarehouse/KitTransportMapper.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/resources/mapper/automatedWarehouse/KitTransportMapper.xml b/src/main/resources/mapper/automatedWarehouse/KitTransportMapper.xml index 6d5d643..24bd3dd 100644 --- a/src/main/resources/mapper/automatedWarehouse/KitTransportMapper.xml +++ b/src/main/resources/mapper/automatedWarehouse/KitTransportMapper.xml @@ -10,14 +10,15 @@ ol.notify_no AS notifyNo, ol.item_no AS itemNo, ol.production_area AS productionArea - FROM SOIssueNotifyHeader h - INNER JOIN SOIssueNotifyOrderList ol + FROM SOIssueNotifyHeader h WITH (NOLOCK) + INNER JOIN SOIssueNotifyOrderList ol WITH (NOLOCK) ON h.site = ol.site AND h.notify_no = ol.notify_no WHERE h.status = 'ISSUE' AND ol.push_wms_flag = 'Y' AND ol.transport_flag = 'N' AND ol.production_area IS NOT NULL AND ol.production_area != '' + AND h.site = '55' ORDER BY ol.notify_no, ol.item_no