From bc98bc302a1114d72be357433aec80e273fff827 Mon Sep 17 00:00:00 2001 From: WangXu10 Date: Sun, 18 Feb 2024 18:03:29 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E7=B3=BB=E7=BB=9F=E8=AE=BE=E7=BD=AE):=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BF=AE=E6=94=B9=E7=94=A8=E6=88=B7=E7=BB=84?= =?UTF-8?q?=E6=9D=83=E9=99=90=EF=BC=8C=E8=AE=B0=E5=BD=95=E6=93=8D=E4=BD=9C?= =?UTF-8?q?=E4=BA=BA=E9=94=99=E8=AF=AF=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1035495 --user=王旭 【系统设置】系统 - 用户组 - 组织成员,修改组织成员权限,日志里显示的操作人不对 https://www.tapd.cn/55049933/s/1461937 --- .../metersphere/system/service/GlobalUserRoleLogService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/services/system-setting/src/main/java/io/metersphere/system/service/GlobalUserRoleLogService.java b/backend/services/system-setting/src/main/java/io/metersphere/system/service/GlobalUserRoleLogService.java index 90c534f680..3b0d62d26b 100644 --- a/backend/services/system-setting/src/main/java/io/metersphere/system/service/GlobalUserRoleLogService.java +++ b/backend/services/system-setting/src/main/java/io/metersphere/system/service/GlobalUserRoleLogService.java @@ -56,7 +56,7 @@ public class GlobalUserRoleLogService { OperationLogConstants.SYSTEM, OperationLogConstants.SYSTEM, userRole.getId(), - userRole.getCreateUser(), + null, OperationLogType.UPDATE.name(), OperationLogModule.SETTING_SYSTEM_USER_GROUP, userRole.getName()); @@ -74,7 +74,7 @@ public class GlobalUserRoleLogService { OperationLogConstants.SYSTEM, OperationLogConstants.SYSTEM, request.getUserRoleId(), - userRole.getCreateUser(), + null, OperationLogType.UPDATE.name(), OperationLogModule.SETTING_SYSTEM_USER_GROUP, userRole.getName());