|
|
@ -237,8 +237,10 @@ public class DataCenterRest { |
|
|
|
} |
|
|
|
for (ShValueVo infoList : shValueVoList) { |
|
|
|
for (ProjectInfo info : projectInfoList) { |
|
|
|
if(info.getNodeValue().equals(infoList.getName())){ |
|
|
|
infoList.setValue(infoList.getValue().add(info.getUseLimitN())); |
|
|
|
if(StringUtils.isNotBlank(info.getNodeValue())){ |
|
|
|
if(info.getNodeValue().equals(infoList.getName())){ |
|
|
|
infoList.setValue(infoList.getValue().add(info.getUseLimitN())); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
@ -380,6 +382,7 @@ public class DataCenterRest { |
|
|
|
map.put(PinYinUtils.getPinYinName(infoList.getNodeValue()),i.toString()); |
|
|
|
} |
|
|
|
List<ProjectRecordVo> projectRecordVos=crmMapper.getPhaseFilesByEnterpriseSid(projectInfo.getEnterpriseSid()); |
|
|
|
// projectRecordVos.stream().filter(s->ProjectRecordVo.get)
|
|
|
|
map.put("list",projectRecordVos); |
|
|
|
return rb.success().setData(map); |
|
|
|
} |
|
|
|