From 116f906719280aaeef4db04d47071174e0811fb0 Mon Sep 17 00:00:00 2001 From: "han\\hanst" Date: Mon, 29 Dec 2025 11:18:39 +0800 Subject: [PATCH 1/2] sourceType --- src/main/resources/mapper/warehouse/LabelQueryMapper.xml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/resources/mapper/warehouse/LabelQueryMapper.xml b/src/main/resources/mapper/warehouse/LabelQueryMapper.xml index 6c097be..4555e1e 100644 --- a/src/main/resources/mapper/warehouse/LabelQueryMapper.xml +++ b/src/main/resources/mapper/warehouse/LabelQueryMapper.xml @@ -30,7 +30,7 @@ w.WareHouseName as warehouseName, l.LocationName as locationName, h.height,h.wdr,h.eng_chg_level as engChgLevel,h.expired_date as expiredDate, - h.last_count_date as lastCountDate + h.last_count_date as lastCountDate,h.source_type as sourceType FROM handling_unit h WITH (NOLOCK) LEFT JOIN warehouse w WITH (NOLOCK) ON h.warehouse_id = w.WareHouseID AND h.site = w.Site LEFT JOIN location l WITH (NOLOCK) ON h.location_id = l.LocationID AND h.site = l.Site @@ -56,6 +56,9 @@ AND h.part_desc LIKE CONCAT('%', #{params.partDesc}, '%') + + AND h.source_type = #{params.sourceType} + ORDER BY h.created_date DESC From 86b366884e692b62853e68443c1cfeed5b8c7065 Mon Sep 17 00:00:00 2001 From: shenzhouyu Date: Tue, 30 Dec 2025 10:06:02 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=8E=A8=E9=80=81=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/mapper/notify/NewIssureMapper.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/resources/mapper/notify/NewIssureMapper.xml b/src/main/resources/mapper/notify/NewIssureMapper.xml index c47802b..64eeca6 100644 --- a/src/main/resources/mapper/notify/NewIssureMapper.xml +++ b/src/main/resources/mapper/notify/NewIssureMapper.xml @@ -69,6 +69,9 @@ AND a.site = #{query.site} + + AND a.push_wcs_flag = #{query.pushWcsFlag} + and a.status!='UNISSUE' order by a.notify_no desc