fix: 修复用户数据权限为全部数据,无组织无法查看数据问题

pull/14/head
Carina 3 years ago
parent 21b207c3b8
commit 91afd5c591

@ -145,9 +145,12 @@ public class QueryDataPermsHandler implements QueryBuilderChain{
// 如果组织为空 则默认权限为查自己的数据
if(!ConditionType.SELF.equals(conditionType) &&
CollUtil.isEmpty(orgIdGroupList)){
// 如果不是 查看全部数据 需要默认角色权限为只查自己
if(!ConditionType.ALL.equals(conditionType)){
conditionType = ConditionType.SELF;
}
}
}
// 常量
final ConditionType finalConditionType = conditionType;

Loading…
Cancel
Save