From 358e1639bff061cd7660c34c01987569a8db1781 Mon Sep 17 00:00:00 2001
From: liu <2021943741@qq.com>
Date: 星期四, 03 九月 2026 14:36:51 +0800
Subject: [PATCH] fix(MES): 转移单内部调拨保存不再强制要求“是否配送”
---
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