From be985aad67bf23fe885d46852b766e96c1db48d3 Mon Sep 17 00:00:00 2001 From: dangxin <1242347652@qq.com> Date: Fri, 14 Feb 2025 18:41:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8D=A1=E8=AE=B0=E5=BD=95=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../InspectionsLogController.java | 8 ----- .../inspectionslog/InspectionsLogService.java | 2 -- .../InspectionsLogServiceImpl.java | 35 ------------------- 3 files changed, 45 deletions(-) diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/inspectionslog/InspectionsLogController.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/inspectionslog/InspectionsLogController.java index 8beddf5..0a4b6c9 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/inspectionslog/InspectionsLogController.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/inspectionslog/InspectionsLogController.java @@ -67,14 +67,6 @@ public class InspectionsLogController { return success(inspectionsLogService.signInList(inspectionsId)); } - @PutMapping("/cooperateWithSignIn") - @Operation(summary = "协同人员打卡") - @PreAuthorize("@ss.hasPermission('system:inspections-log:update')") - public CommonResult cooperateWithSignIn(Long inspectionsLogId) { - inspectionsLogService.cooperateWithSignIn(inspectionsLogId); - return success(true); - } - @PutMapping("/update") @Operation(summary = "更新检查结果日志") @PreAuthorize("@ss.hasPermission('system:inspections-log:update')") diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogService.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogService.java index 327f1a9..24b16ee 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogService.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogService.java @@ -57,8 +57,6 @@ public interface InspectionsLogService { List list(InspectionsLogPageReqVO pageReqVO); - void cooperateWithSignIn(Long inspectionsLogId); - void confirmSignIn(InspectionsLogSaveReqVO createReqVO); void inspectionsAudit(InspectionsLogSaveReqVO createReqVO); diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogServiceImpl.java index af615b8..853b023 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogServiceImpl.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogServiceImpl.java @@ -222,41 +222,6 @@ public class InspectionsLogServiceImpl implements InspectionsLogService { return list; } - /** - * 协作人员签到 - * @param inspectionsLogId - */ - @Override - public void cooperateWithSignIn(Long inspectionsLogId) { - // 校验存在 - InspectionsLogDO inspectionsLogDO = inspectionsLogMapper.selectById(inspectionsLogId); - if (inspectionsLogDO == null) { - throw exception(INSPECTIONS_LOG_NOT_EXISTS); - } - - //查询真实名称并插入 - AdminUserDO user = adminUserService.getUser(getLoginUserId()); - if (user == null) { - throw exception(USER_NOT_EXISTS); - } - - // 更新 - if (inspectionsLogDO.getCooperateWithIds() == null ) { - inspectionsLogDO.setCooperateWithIds(getLoginUserId().toString()); - inspectionsLogDO.setCooperateWithName(user.getRealName()); - } else { - inspectionsLogDO.setCooperateWithIds(inspectionsLogDO.getCooperateWithIds() + "," + getLoginUserId()); - inspectionsLogDO.setCooperateWithName(inspectionsLogDO.getCooperateWithName() + "," + user.getRealName()); - } - - inspectionsLogMapper.updateById(inspectionsLogDO); - - //插入协同人员打卡记录表 - SignInLogDO signInLogDO = new SignInLogDO(); - signInLogDO.setInsId(inspectionsLogId); - signInLogDO.setUserId(getLoginUserId()); - signInLogMapper.insert(signInLogDO); - } @Override public void confirmSignIn(InspectionsLogSaveReqVO createReqVO) {