From cd52d180def1eec1226f705426fa5006ea5e982e Mon Sep 17 00:00:00 2001 From: yangzhenli Date: Mon, 22 Jul 2024 17:17:44 +0800 Subject: [PATCH] update --- .../src/main/java/jnpf/service/impl/CustomAuthServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jnpf-tendering-biz/src/main/java/jnpf/service/impl/CustomAuthServiceImpl.java b/jnpf-tendering-biz/src/main/java/jnpf/service/impl/CustomAuthServiceImpl.java index b6396e8..01c2919 100644 --- a/jnpf-tendering-biz/src/main/java/jnpf/service/impl/CustomAuthServiceImpl.java +++ b/jnpf-tendering-biz/src/main/java/jnpf/service/impl/CustomAuthServiceImpl.java @@ -127,7 +127,7 @@ public class CustomAuthServiceImpl implements CustomAuthService { } idsList.add(userInfo.getUserId()); value = idsList; - } else if (AuthorizeConditionEnum.USERANDUNDERALl.getCondition().equals(itemValue)) { //用户及用户下属 + } else if ("@userAraSubordinatesAll".equals(itemValue)) { //用户及用户下属 List idsList = new ArrayList<>(); String organizeId = userInfo.getOrganizeId(); OrganizeEntity organize = organizeApi.getInfoById(organizeId);