From b63ea5ba6475fdbcabf33233304976a54294c7e3 Mon Sep 17 00:00:00 2001
From: gongchunyi <deslre0381@gmail.com>
Date: 星期一, 25 五月 2026 04:30:36 +0800
Subject: [PATCH] test: 过滤返回的负数数量
---
src/main/resources/mapper/stock/StockInventoryMapper.xml | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/src/main/resources/mapper/stock/StockInventoryMapper.xml b/src/main/resources/mapper/stock/StockInventoryMapper.xml
index eeea7fd..1c7428e 100644
--- a/src/main/resources/mapper/stock/StockInventoryMapper.xml
+++ b/src/main/resources/mapper/stock/StockInventoryMapper.xml
@@ -343,8 +343,9 @@
</where>
group by batch_no, product_model_id, model, unit, product_name, product_id
</select>
+
<select id="stockInventoryPage" resultType="com.ruoyi.stock.dto.StockInRecordDto">
- select sir.*,si.qualitity as current_stock,
+ select sir.*, si.qualitity as current_stock,
pm.model,
pm.unit,
p.product_name,
@@ -356,6 +357,10 @@
left join product p on pm.product_id = p.id
left join sys_user su on sir.create_user = su.user_id
<where>
+ and si.qualitity >= 0
+
+ and sir.stock_in_num >= 0
+
<if test="ew.reportDate != null">
and sir.create_time >= #{ew.reportDate}
and sir.create_time < DATE_ADD(#{ew.reportDate}, INTERVAL 1 DAY)
--
Gitblit v1.9.3