|
@@ -71,6 +71,10 @@ public class RoleRptController {
|
|
|
if (StringUtils.isNotEmpty(appId)) {
|
|
|
ApplyInfo applyInfo = applyInfoFacade.applyDetail(appId);
|
|
|
String appOrgId = applyInfo.getOrgId();
|
|
|
+ //机构下的分配情况,经过权限中心导入的应用机构id不是不填项
|
|
|
+ if(StringUtils.isBlank(appOrgId)) {
|
|
|
+ return Result.success(page.getTotalElements(),page.getContent());
|
|
|
+ }
|
|
|
searchable.addSearchFilter("appOrgId", SearchOperator.eq, appOrgId);
|
|
|
page = roleAuthInfoFacade.getRptList(searchable.toSearchDTO());
|
|
|
for (TreeInfoVO treeInfoVO : page.getContent()) {
|