Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-api-boot-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-api-boot-master
Commits
437b6337
Commit
437b6337
authored
Dec 23, 2024
by
zhengyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
批量审批不通过操作bug修复
parent
869e1a6a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
BpmTaskController.java
...o/module/bpm/controller/admin/task/BpmTaskController.java
+2
-1
No files found.
yudao-module-bpm/yudao-module-bpm-impl-flowable/src/main/java/cn/iocoder/yudao/module/bpm/controller/admin/task/BpmTaskController.java
View file @
437b6337
...
@@ -25,6 +25,7 @@ import javax.annotation.Resource;
...
@@ -25,6 +25,7 @@ import javax.annotation.Resource;
import
javax.validation.Valid
;
import
javax.validation.Valid
;
import
java.util.Comparator
;
import
java.util.Comparator
;
import
java.util.List
;
import
java.util.List
;
import
java.util.Objects
;
import
java.util.stream.Collectors
;
import
java.util.stream.Collectors
;
import
static
cn
.
iocoder
.
yudao
.
framework
.
common
.
pojo
.
CommonResult
.
success
;
import
static
cn
.
iocoder
.
yudao
.
framework
.
common
.
pojo
.
CommonResult
.
success
;
...
@@ -148,7 +149,7 @@ public class BpmTaskController {
...
@@ -148,7 +149,7 @@ public class BpmTaskController {
taskExtMapper
.
selectListByProcessInstanceId
(
reqVO
.
getId
());
taskExtMapper
.
selectListByProcessInstanceId
(
reqVO
.
getId
());
if
(
taskList1
==
null
||
taskList1
.
size
()
==
0
)
continue
;
if
(
taskList1
==
null
||
taskList1
.
size
()
==
0
)
continue
;
List
<
BpmTaskExtDO
>
taskList
=
taskList1
.
stream
().
filter
(
t
->
t
.
getAssigneeUserId
()
==
l
.
getId
(
)).
List
<
BpmTaskExtDO
>
taskList
=
taskList1
.
stream
().
filter
(
t
->
Objects
.
equals
(
t
.
getAssigneeUserId
(),
l
.
getId
()
)).
sorted
(
Comparator
.
comparingLong
(
BpmTaskExtDO:
:
getId
).
reversed
()).
sorted
(
Comparator
.
comparingLong
(
BpmTaskExtDO:
:
getId
).
reversed
()).
collect
(
Collectors
.
toList
());
collect
(
Collectors
.
toList
());
if
(
taskList
==
null
)
continue
;
if
(
taskList
==
null
)
continue
;
...
...
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