From 8f92976f571844f73942b8004e80c068a98e30b9 Mon Sep 17 00:00:00 2001 From: dx <1242347652@qq.com> Date: Mon, 3 Mar 2025 09:13:52 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/admin/taglibrary/TagLibraryController.java | 8 ++++---- .../service/inspectionslog/InspectionsLogServiceImpl.java | 8 ++++++++ .../system/service/taskinfo/TaskInfoServiceImpl.java | 2 -- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/taglibrary/TagLibraryController.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/taglibrary/TagLibraryController.java index 9d4c189..dea7feb 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/taglibrary/TagLibraryController.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/taglibrary/TagLibraryController.java @@ -39,14 +39,14 @@ public class TagLibraryController { @PostMapping("/create") @Operation(summary = "创建企业标签") - @PreAuthorize("@ss.hasPermission('system:tag-library:create')") +// @PreAuthorize("@ss.hasPermission('system:tag-library:create')") public CommonResult createTagLibrary(@Valid @RequestBody TagLibrarySaveReqVO createReqVO) { return success(tagLibraryService.createTagLibrary(createReqVO)); } @PutMapping("/update") @Operation(summary = "更新企业标签") - @PreAuthorize("@ss.hasPermission('system:tag-library:update')") +// @PreAuthorize("@ss.hasPermission('system:tag-library:update')") public CommonResult updateTagLibrary(@Valid @RequestBody TagLibrarySaveReqVO updateReqVO) { tagLibraryService.updateTagLibrary(updateReqVO); return success(true); @@ -55,7 +55,7 @@ public class TagLibraryController { @DeleteMapping("/delete") @Operation(summary = "删除企业标签") @Parameter(name = "id", description = "编号", required = true) - @PreAuthorize("@ss.hasPermission('system:tag-library:delete')") +// @PreAuthorize("@ss.hasPermission('system:tag-library:delete')") public CommonResult deleteTagLibrary(@RequestParam("id") Integer id) { tagLibraryService.deleteTagLibrary(id); return success(true); @@ -89,7 +89,7 @@ public class TagLibraryController { @GetMapping("/childrenList") // @Operation(summary = "获得标签分页") - @PreAuthorize("@ss.hasPermission('system:tag-library:query')") +// @PreAuthorize("@ss.hasPermission('system:tag-library:query')") public CommonResult> childrenList(Long id) { List pageResult = tagLibraryService.childrenList(id); return success(BeanUtils.toBean(pageResult, TagLibraryRespVO.class)); 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 0f89ee2..8fc494a 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 @@ -327,6 +327,14 @@ public class InspectionsLogServiceImpl implements InspectionsLogService { InspectionsLogDO updateObj = BeanUtils.toBean(createReqVO, InspectionsLogDO.class); inspectionsLogMapper.insert(updateObj); + //todo 如果本次是通过, 查看该任务下所有任务时候已经通过, 如果全部都已经通过, 把任务状态修改成已结束 +// final EnterpriseInspectionsDO enterpriseInspectionsDO1 = enterpriseInspectionsMapper.selectById(updateObj.getInspectionsId()); +// if (enterpriseInspectionsDO1 == null) { +// throw exception(ENTERPRISE_INSPECTIONS_NOT_EXISTS); +// } +// enterpriseInspectionsDO1.setStatus(3); +// enterpriseInspectionsMapper.updateById(enterpriseInspectionsDO1); + List signInLogDOS = signInLogMapper.selectList(new QueryWrapper().eq("ins_id", inspectionsLogNew.getId())); //插入图片 diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/taskinfo/TaskInfoServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/taskinfo/TaskInfoServiceImpl.java index 8694599..b471785 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/taskinfo/TaskInfoServiceImpl.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/taskinfo/TaskInfoServiceImpl.java @@ -278,8 +278,6 @@ public class TaskInfoServiceImpl implements TaskInfoService { final DeptDO deptDO = deptService.getByUserId(value); item.setDeptName(deptDO.getName()); } - - }); }