From 23ba6b079e80ae6e5fbd909df6544c1d992df561 Mon Sep 17 00:00:00 2001
From: dubin <bindu_bean@163.com>
Date: 星期日, 23 十一月 2025 15:00:48 +0800
Subject: [PATCH] 根据库存明细更新商品信息
---
src/main/resources/mapper/LocDetlMapper.xml | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/src/main/resources/mapper/LocDetlMapper.xml b/src/main/resources/mapper/LocDetlMapper.xml
index 1ea5ec3..e28d4f7 100644
--- a/src/main/resources/mapper/LocDetlMapper.xml
+++ b/src/main/resources/mapper/LocDetlMapper.xml
@@ -559,6 +559,15 @@
order by row1
</select>
+ <select id="select100" resultMap="BaseResultMap">
+ select TOP 100 a.*
+ from asr_loc_detl a
+ left join asr_loc_mast b on a.loc_no = b.loc_no
+ where 1=1
+ and b.loc_sts = 'F'
+ and a.length != 1
+ </select>
+
--
Gitblit v1.9.1