自定义报表优化处理
This commit is contained in:
@@ -926,8 +926,7 @@ public class CustomReportServiceImpl implements CustomReportService {
|
||||
|
||||
//处理指标是否合格
|
||||
reportLimitList = reportLimitList.stream()
|
||||
.collect(Collectors.collectingAndThen(Collectors.toCollection(
|
||||
() -> new TreeSet<>(Comparator.comparing(ReportTemplateDTO::getItemName))), ArrayList::new));
|
||||
.collect(Collectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(ReportTemplateDTO::getItemName))), ArrayList::new));
|
||||
|
||||
Map<String, Float> limitMap = overLimitDeal(reportLimitList, reportSearchParam);
|
||||
//存放限值指标的map
|
||||
|
||||
Reference in New Issue
Block a user