From 733d48f803a002033c5f1d6c22dcc799bf1b724c Mon Sep 17 00:00:00 2001
From: heheng <475597332@qq.com>
Date: Tue, 23 Sep 2025 14:09:20 +0800
Subject: [PATCH] 功能改造

---
 gkhy-system/src/main/java/com/gkhy/system/service/impl/DailySafetyInspectionServiceImpl.java |   34 ++++++++++++++++++++++++++++------
 1 files changed, 28 insertions(+), 6 deletions(-)

diff --git a/gkhy-system/src/main/java/com/gkhy/system/service/impl/DailySafetyInspectionServiceImpl.java b/gkhy-system/src/main/java/com/gkhy/system/service/impl/DailySafetyInspectionServiceImpl.java
index b25180b..83444ce 100644
--- a/gkhy-system/src/main/java/com/gkhy/system/service/impl/DailySafetyInspectionServiceImpl.java
+++ b/gkhy-system/src/main/java/com/gkhy/system/service/impl/DailySafetyInspectionServiceImpl.java
@@ -5,12 +5,14 @@
 import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
 import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 import com.gkhy.common.constant.Constants;
+import com.gkhy.common.core.domain.entity.SysDept;
 import com.gkhy.common.exception.ServiceException;
 import com.gkhy.common.utils.SecurityUtils;
 import com.gkhy.system.domain.DailySafetyInspection;
 import com.gkhy.system.domain.DailySafetyInspectionUser;
 import com.gkhy.system.mapper.DailySafetyInspectionMapper;
 import com.gkhy.system.mapper.DailySafetyInspectionUserMapper;
+import com.gkhy.system.mapper.SysDeptMapper;
 import com.gkhy.system.service.DailySafetyInspectionService;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
@@ -37,6 +39,9 @@
     @Autowired
     private DailySafetyInspectionUserMapper dailySafetyInspectionUserMapper;
 
+    @Autowired
+    private SysDeptMapper sysDeptMapper;
+
     @Override
     public List<DailySafetyInspection> selectDailySafetyInspectionList(DailySafetyInspection inspection) {
         return dailySafetyInspectionMapper.getDailySafetyInspectionList(inspection);
@@ -45,10 +50,19 @@
     @Override
     @Transactional(rollbackFor = Exception.class)
     public int saveDailySafetyInspection(DailySafetyInspection inspection) {
-        List<DailySafetyInspectionUser> dailySafetyInspectionUsers = inspection.getDailySafetyInspectionUsers();
-        if (ObjectUtil.isEmpty(dailySafetyInspectionUsers)) {
-            throw new ServiceException("参检人员不能为空");
+//        List<DailySafetyInspectionUser> dailySafetyInspectionUsers = inspection.getDailySafetyInspectionUsers();
+//        if (ObjectUtil.isEmpty(dailySafetyInspectionUsers)) {
+//            throw new ServiceException("参检人员不能为空");
+//        }
+        Long researchGroup = inspection.getResearchGroup();
+        SysDept sysDept = sysDeptMapper.selectDeptById(researchGroup);
+        if (sysDept == null) {
+            throw new ServiceException("部门不存在");
         }
+        if (!"1".equals(sysDept.getSafety())){
+            throw new ServiceException("所选部门未开启安全检查");
+        }
+
         int i = 0;
         if (inspection.getId() == null) {
             inspection.setCreateTime(LocalDateTime.now());
@@ -59,9 +73,9 @@
             inspection.setUpdateBy(SecurityUtils.getUsername());
             i = dailySafetyInspectionMapper.updateById(inspection);
         }
-        if (i > 0) {
-            saveDailySafetyInspectionUser(dailySafetyInspectionUsers, inspection.getId());
-        }
+//        if (i > 0) {
+//            saveDailySafetyInspectionUser(dailySafetyInspectionUsers, inspection.getId());
+//        }
         return i;
     }
 
@@ -89,6 +103,14 @@
     @Override
     public int getCheckCount() {
         Long deptId = SecurityUtils.getDeptId();
+        SysDept sysDept = sysDeptMapper.selectDeptById(deptId);
+        if (sysDept == null){
+            return 1;
+        }else {
+            if (!"1".equals(sysDept.getSafety())){
+                return 1;
+            }
+        }
         return dailySafetyInspectionMapper.getCheckCount(deptId);
     }
 }

--
Gitblit v1.9.2