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
e96bd77a
Commit
e96bd77a
authored
Aug 03, 2023
by
曹盼盼
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
由于流程状态改变导致项目过滤有问题已修复
parent
515658ad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
ProjectResourceController.java
.../module/ugp/biz/controller/ProjectResourceController.java
+1
-1
No files found.
amos-boot-system-ugp/amos-boot-module-ugp-biz/src/main/java/com/yeejoin/amos/boot/module/ugp/biz/controller/ProjectResourceController.java
View file @
e96bd77a
...
@@ -303,7 +303,7 @@ public class ProjectResourceController extends BaseController {
...
@@ -303,7 +303,7 @@ public class ProjectResourceController extends BaseController {
@ApiOperation
(
httpMethod
=
"get"
,
value
=
"根据当前登录人获取登录人参与的项目列表"
,
notes
=
"根据当前登录人获取登录人参与的项目列表"
)
@ApiOperation
(
httpMethod
=
"get"
,
value
=
"根据当前登录人获取登录人参与的项目列表"
,
notes
=
"根据当前登录人获取登录人参与的项目列表"
)
public
ResponseModel
<
List
<
Project
>>
selectByUserId
(){
public
ResponseModel
<
List
<
Project
>>
selectByUserId
(){
List
<
Project
>
projectList
=
projectResourceServiceImpl
.
getProjectList
();
List
<
Project
>
projectList
=
projectResourceServiceImpl
.
getProjectList
();
projectList
=
projectList
.
stream
().
filter
(
r
->
ProjectInitiationEnum
.
流程结束
.
getName
()
.
equals
(
r
.
getStatus
())).
collect
(
Collectors
.
toList
());
projectList
=
projectList
.
stream
().
filter
(
r
->
"竣工流程结束!"
.
equals
(
r
.
getStatus
())).
collect
(
Collectors
.
toList
());
return
ResponseHelper
.
buildResponse
(
projectList
);
return
ResponseHelper
.
buildResponse
(
projectList
);
}
}
}
}
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