Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
T
test
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
邬友楠
test
Commits
db75c28a
Commit
db75c28a
authored
Feb 22, 2021
by
雍欢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
流程审批界面,列表处理人带上涉密等级
parent
d66451fe
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
FlowBroker.java
...ou-uasp/src/main/java/com/huigou/uasp/bpm/FlowBroker.java
+11
-0
No files found.
huigou-uasp/src/main/java/com/huigou/uasp/bpm/FlowBroker.java
View file @
db75c28a
...
@@ -2336,6 +2336,17 @@ public class FlowBroker extends BaseApplication implements TaskListener, Executi
...
@@ -2336,6 +2336,17 @@ public class FlowBroker extends BaseApplication implements TaskListener, Executi
}
}
}
}
// 查询人员密级
for
(
Map
<
String
,
Object
>
handler
:
(
List
<
Map
<
String
,
Object
>>)
result
.
get
(
Constants
.
ROWS
))
{
String
handlerId
=
(
String
)
handler
.
get
(
"handlerId"
);
Person
person
=
orgApplication
.
loadOrg
(
handlerId
).
getPerson
();
String
personSecurityGrade
=
person
.
getPersonSecurityGrade
();
if
(
StringUtils
.
isNotBlank
(
personSecurityGrade
))
{
String
personSecurityGradeText
=
SystemCache
.
getDictionaryDetailText
(
"personSecurityGrade"
,
personSecurityGrade
);
handler
.
put
(
"personSecurityGrade"
,
personSecurityGrade
);
handler
.
put
(
"personSecurityGradeTextView"
,
personSecurityGradeText
);
}
}
ThreadLocalUtil
.
putVariable
(
"queryHandlers"
,
result
);
ThreadLocalUtil
.
putVariable
(
"queryHandlers"
,
result
);
}
}
...
...
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