Commit f3467cf6 by jianan

AGMS机构寿险数据显示渠道机构

parent aa37e4b2
......@@ -149,14 +149,11 @@ public class AgmsDashboardServiceImpl implements AgmsDashboardService {
.collect(Collectors.toList());
} else if ("b".equals(type)) {
achieveList = achieveList.stream()
.filter((Achieve i) -> "二级机构".equals(i.getRolegrouptype()))
.filter((Achieve i) -> ("二级机构".equals(i.getRolegrouptype()) || "渠道机构".equals(i.getRolegrouptype())))
.collect(Collectors.toList());
}
}
System.out.println("筛选后的数据");
System.out.println(achieveList);
// 3.组装返回报文
List<StatisticsSalesInfo> infoList = new ArrayList<>();
StatisticsSalesInfo info = null;
......
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