|
|
@ -1911,9 +1911,8 @@ public class HuzhouProjectinfoServiceImpl extends ServiceImpl<HuzhouProjectinfoM |
|
|
|
ProjectInfoAuthSelect projectInfoAuthSelect = CommonUtils.setGetProjectInfoAuth(projectInfo); |
|
|
|
Page page = new Page(1, 10000); |
|
|
|
Page<HuzhouProjectinfoOV> projectAndChildInfoPageList = projectinfoMapper.getProjectAndChildInfoPageList(page, projectInfoAuthSelect); |
|
|
|
List<HuzhouProjectinfoOV> projectAndChildInfoList = projectAndChildInfoPageList.getRecords().stream().collect(Collectors.toList()); |
|
|
|
List<HuzhouProjectinfoOV> projectAndChildInfoList = projectAndChildInfoPageList.getRecords().stream().filter(x->!x.getStage().equals("-1")).collect(Collectors.toList()); |
|
|
|
for(HuzhouProjectinfoOV p:projectAndChildInfoList){ |
|
|
|
// HuzhouProjectinfoOV p = projectAndChildInfoList.stream().filter(x -> x.getId().equals("1783670295790608386")).collect(Collectors.toList()).get(0);
|
|
|
|
ShowStageOV showStage=new ShowStageOV(); |
|
|
|
BeanUtils.copyProperties(p,showStage); |
|
|
|
String declareStage=""; |
|
|
|