|
@@ -312,7 +312,8 @@ public class DelayedApplyManage { |
|
|
public List<DelayedApplyVO> delayList(Long projectId) { |
|
|
public List<DelayedApplyVO> delayList(Long projectId) { |
|
|
List<Long> allVersionProjectId = projectService.getAllVersionProjectId(projectId); |
|
|
List<Long> allVersionProjectId = projectService.getAllVersionProjectId(projectId); |
|
|
List<ProjectDelayApply> delays = projectDelayApplyService.list(Wrappers.lambdaQuery(ProjectDelayApply.class) |
|
|
List<ProjectDelayApply> delays = projectDelayApplyService.list(Wrappers.lambdaQuery(ProjectDelayApply.class) |
|
|
.in(ProjectDelayApply::getProjectId, allVersionProjectId)); |
|
|
|
|
|
|
|
|
.in(ProjectDelayApply::getProjectId, allVersionProjectId) |
|
|
|
|
|
.eq(ProjectDelayApply::getSuccess, Boolean.TRUE)); |
|
|
|
|
|
|
|
|
if(CollUtil.isEmpty(delays)){ |
|
|
if(CollUtil.isEmpty(delays)){ |
|
|
return Collections.emptyList(); |
|
|
return Collections.emptyList(); |
|
|