From 4e0470a90f640f57d8f8af6708eb05f77bf561dd Mon Sep 17 00:00:00 2001
From: skyouc <creaycat@gmail.com>
Date: 星期一, 27 十月 2025 21:58:46 +0800
Subject: [PATCH] #新增 1. rsf-server添加上报调用接口 2,rsf-server添加盘点调用接口
---
rsf-server/src/main/resources/mapper/manager/LocItemMapper.xml | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/rsf-server/src/main/resources/mapper/manager/LocItemMapper.xml b/rsf-server/src/main/resources/mapper/manager/LocItemMapper.xml
index bc18949..316b06d 100644
--- a/rsf-server/src/main/resources/mapper/manager/LocItemMapper.xml
+++ b/rsf-server/src/main/resources/mapper/manager/LocItemMapper.xml
@@ -11,6 +11,7 @@
li.loc_id,
li.loc_code,
l.barcode,
+ l.channel,
li.matnr_id,
li.matnr_code,
li.maktx,
@@ -22,6 +23,9 @@
man_loc_item li
INNER JOIN man_loc l ON l.id = li.loc_id
WHERE l.use_status = #{type}
+ <if test="channel != null">
+ AND l.channel = #{channel}
+ </if>
GROUP BY
loc_id,
matnr_id,
--
Gitblit v1.9.1