From 622a5566fbf4592698706c26e3816a95f265dc17 Mon Sep 17 00:00:00 2001
From: liu <2021943741@qq.com>
Date: 星期二, 25 八月 2026 16:30:32 +0800
Subject: [PATCH] feat(mes): 设计项目分页返回待审核文件数 pendingAuditCount,文件审核完成后才可提交审批
---
yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/service/pd/document/MesPdDocumentServiceImpl.java | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/service/pd/document/MesPdDocumentServiceImpl.java b/yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/service/pd/document/MesPdDocumentServiceImpl.java
index 18f02e4..2bb158f 100644
--- a/yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/service/pd/document/MesPdDocumentServiceImpl.java
+++ b/yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/service/pd/document/MesPdDocumentServiceImpl.java
@@ -18,6 +18,7 @@
import org.springframework.validation.annotation.Validated;
import java.time.LocalDateTime;
+import java.util.Collection;
import java.util.List;
import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception;
@@ -109,6 +110,11 @@
}
@Override
+ public List<MesPdDocumentDO> getDocumentListByProjectIds(Collection<Long> projectIds) {
+ return documentMapper.selectListByProjectIds(projectIds);
+ }
+
+ @Override
public void deleteByProjectId(Long projectId) {
List<MesPdDocumentDO> documents = documentMapper.selectListByProjectId(projectId);
for (MesPdDocumentDO document : documents) {
--
Gitblit v1.9.3