From 32d4cecdfada2f5aded1fde68d4b3e393cd15bb7 Mon Sep 17 00:00:00 2001
From: liu <2021943741@qq.com>
Date: 星期三, 02 九月 2026 09:37:43 +0800
Subject: [PATCH] fix(mes): 生产退料单行"需要质检"放宽必填并兜底默认为不需要质检
---
yudao-module-system/src/main/java/cn/iocoder/yudao/module/system/service/notify/NotifyTemplateServiceImpl.java | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/yudao-module-system/src/main/java/cn/iocoder/yudao/module/system/service/notify/NotifyTemplateServiceImpl.java b/yudao-module-system/src/main/java/cn/iocoder/yudao/module/system/service/notify/NotifyTemplateServiceImpl.java
index 45a832d..4b1b70d 100644
--- a/yudao-module-system/src/main/java/cn/iocoder/yudao/module/system/service/notify/NotifyTemplateServiceImpl.java
+++ b/yudao-module-system/src/main/java/cn/iocoder/yudao/module/system/service/notify/NotifyTemplateServiceImpl.java
@@ -115,6 +115,11 @@
return notifyTemplateMapper.selectPage(pageReqVO);
}
+ @Override
+ public List<NotifyTemplateDO> getNotifyTemplateListByStatus(Integer status) {
+ return notifyTemplateMapper.selectListByStatus(status);
+ }
+
@VisibleForTesting
void validateNotifyTemplateCodeDuplicate(Long id, String code) {
NotifyTemplateDO template = notifyTemplateMapper.selectByCode(code);
--
Gitblit v1.9.3