From 34993855d43464975517e812e6bb0538bc2dc926 Mon Sep 17 00:00:00 2001
From: maven <2163098428@qq.com>
Date: 星期二, 23 九月 2025 09:59:00 +0800
Subject: [PATCH] yys 1.回款登记台账页面,增加一个开票日期列,和开票日期时间段查询 2.开票登记台账页面,增加合同录入日期列,和合同录入日期时间段查询
---
src/main/java/com/ruoyi/warehouse/service/impl/DocumentClassificationServiceImpl.java | 6 +-----
1 files changed, 1 insertions(+), 5 deletions(-)
diff --git a/src/main/java/com/ruoyi/warehouse/service/impl/DocumentClassificationServiceImpl.java b/src/main/java/com/ruoyi/warehouse/service/impl/DocumentClassificationServiceImpl.java
index a36a143..54c642e 100644
--- a/src/main/java/com/ruoyi/warehouse/service/impl/DocumentClassificationServiceImpl.java
+++ b/src/main/java/com/ruoyi/warehouse/service/impl/DocumentClassificationServiceImpl.java
@@ -48,14 +48,10 @@
}
@Override
- public List<DocumentClassificationTreeDto> selectDocumentClassificationList(DocumentClassificationDto documentClassificationDto) {
+ public List<DocumentClassificationTreeDto> selectDocumentClassificationList() {
// 鏌ヨ鏍硅妭鐐癸紙parentId 涓� null锛�
LambdaQueryWrapper<DocumentClassification> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.isNull(DocumentClassification::getParentId);
-
- if (documentClassificationDto.getCategory() != null && !documentClassificationDto.getCategory().isEmpty()) {
- queryWrapper.like(DocumentClassification::getCategory, documentClassificationDto.getCategory());
- }
// 鏌ヨ鏍硅妭鐐瑰垪琛�
List<DocumentClassification> rootList = baseMapper.selectList(queryWrapper);
--
Gitblit v1.9.3