Commit b550d0ce authored by hanbing's avatar hanbing

[update] 新信号评价-运行评价-去除状态筛选条件

parent 1460282d
......@@ -639,11 +639,7 @@ public class RunningEvaluateServiceImpl implements RunningEvaluateService {
@NotNull
private List<RunningEvaluateIndexStatusVO> buildRes(CrossIdAndStartEndDateBO bo, String crossId, int status) {
List<CrossDataHistPO> crossDataHistPOList = buildCrossDataHistPOList(bo, crossId);
List<CrossDataHistPO> collect = crossDataHistPOList.stream()
.filter(po -> po.getStatus() == status)
.collect(Collectors.toList());
List<RunningEvaluateIndexStatusVO> res = buildRunningEvaluateIndexStatusVOList(collect, status);
List<RunningEvaluateIndexStatusVO> res = buildRunningEvaluateIndexStatusVOList(crossDataHistPOList, status);
return res;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment