From b70456bfd425b107f68cfd60c6e6b25e143cea7c Mon Sep 17 00:00:00 2001
From: liding <756868258@qq.com>
Date: 星期五, 20 三月 2026 09:20:41 +0800
Subject: [PATCH] fix:1.库存报表(耗材和仓库筛选优化) 2.耗材和仓储物流导出字段优化 3.入库导出优化
---
src/main/java/com/ruoyi/consumables/service/impl/ConsumablesUnInventoryServiceImpl.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/main/java/com/ruoyi/consumables/service/impl/ConsumablesUnInventoryServiceImpl.java b/src/main/java/com/ruoyi/consumables/service/impl/ConsumablesUnInventoryServiceImpl.java
index 48217d6..7c841fd 100644
--- a/src/main/java/com/ruoyi/consumables/service/impl/ConsumablesUnInventoryServiceImpl.java
+++ b/src/main/java/com/ruoyi/consumables/service/impl/ConsumablesUnInventoryServiceImpl.java
@@ -36,8 +36,8 @@
public class ConsumablesUnInventoryServiceImpl extends ServiceImpl<ConsumablesUnInventoryMapper, ConsumablesUnInventory> implements ConsumablesUnInventoryService {
private ConsumablesUnInventoryMapper consumablesUnInventoryMapper;
- private ConsumablesOutRecordService ConsumablesOutRecordService;
- private ConsumablesInRecordService ConsumablesInRecordService;
+ private ConsumablesOutRecordService consumablesOutRecordService;
+ private ConsumablesInRecordService consumablesInRecordService;
@Override
public IPage<ConsumablesUnInventoryDto> pageConsumablesUnInventory(Page page, ConsumablesUnInventoryDto consumablesUnInventoryDto) {
@@ -54,7 +54,7 @@
consumablesInRecordDto.setStockInNum(consumablesUnInventoryDto.getQualitity());
consumablesInRecordDto.setProductModelId(consumablesUnInventoryDto.getProductModelId());
consumablesInRecordDto.setType("1");
- ConsumablesInRecordService.add(consumablesInRecordDto);
+ consumablesInRecordService.add(consumablesInRecordDto);
//鍐嶈繘琛屾柊澧炲簱瀛樻暟閲忓簱瀛�
//鍏堟煡璇㈠簱瀛樿〃涓殑浜у搧鏄惁瀛樺湪锛屼笉瀛樺湪鏂板锛屽瓨鍦ㄦ洿鏂�
ConsumablesUnInventory oldConsumablesUnInventory = consumablesUnInventoryMapper.selectOne(new QueryWrapper<ConsumablesUnInventory>().lambda().eq(ConsumablesUnInventory::getProductModelId, consumablesUnInventoryDto.getProductModelId()));
@@ -82,7 +82,7 @@
consumablesOutRecordDto.setStockOutNum(consumablesUnInventoryDto.getQualitity());
consumablesOutRecordDto.setProductModelId(consumablesUnInventoryDto.getProductModelId());
consumablesOutRecordDto.setType("1");
- ConsumablesOutRecordService.add(consumablesOutRecordDto);
+ consumablesOutRecordService.add(consumablesOutRecordDto);
ConsumablesUnInventory oldConsumablesInventory = consumablesUnInventoryMapper.selectOne(new QueryWrapper<ConsumablesUnInventory>().lambda().eq(ConsumablesUnInventory::getProductModelId, consumablesUnInventoryDto.getProductModelId()));
if (ObjectUtils.isEmpty(oldConsumablesInventory)) {
throw new RuntimeException("浜у搧搴撳瓨涓嶅瓨鍦�");
--
Gitblit v1.9.3