Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
2822f314
Commit
2822f314
authored
Feb 29, 2024
by
wujiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改无权限过滤
parent
d65c7bd3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
IdxBizTableServiceImpl.java
...module/jxiop/biz/service/impl/IdxBizTableServiceImpl.java
+6
-0
No files found.
amos-boot-system-jxiop/amos-boot-module-jxiop-analyse-biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/service/impl/IdxBizTableServiceImpl.java
View file @
2822f314
...
...
@@ -42,6 +42,9 @@ public class IdxBizTableServiceImpl implements IIdxBizTableService {
if
(!
gatewayIds
.
isEmpty
())
{
map
.
put
(
"GATEWAY_ID"
,
String
.
format
(
"[%s]"
,
gatewayIds
));
}
else
{
map
.
put
(
"GATEWAY_ID"
,
"[NULL]"
);
}
FeignClientResult
<
Page
<
Map
<
String
,
Object
>>>
page
=
idxFeign
.
getPage
(
map
);
return
page
.
getResult
();
}
...
...
@@ -60,6 +63,8 @@ public class IdxBizTableServiceImpl implements IIdxBizTableService {
String
orgcodes
=
String
.
join
(
","
,
currentUserPermissions
);
if
(!
orgcodes
.
isEmpty
())
{
map
.
put
(
"ORG_CODE"
,
String
.
format
(
"[%s]"
,
orgcodes
));
}
else
{
map
.
put
(
"ORG_CODE"
,
"[NULL]"
);
}
FeignClientResult
<
Page
<
Map
<
String
,
Object
>>>
page
=
idxFeign
.
getPage
(
map
);
return
page
.
getResult
();
...
...
@@ -81,6 +86,7 @@ public class IdxBizTableServiceImpl implements IIdxBizTableService {
List
<
String
>
permissions
=
permissionService
.
getCurrentUserProjectOrgCodes
();
if
(
Objects
.
isNull
(
permissions
))
{
permissions
=
new
ArrayList
<>();
permissions
.
add
(
"NULL"
);
}
return
idxBizTableMapper
.
getSelectOptions
(
tableName
,
column
,
valueColumn
,
conditionColumn
,
conditionValue
,
isFx
,
permissions
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment