|
@@ -52,7 +52,8 @@ public class RegionCalService {
|
|
|
weightingCompany(currentDate, companypointmap, wppointmap, resultList, company, wps1, "-1");
|
|
|
if (wps2.size()>0)
|
|
|
weightingCompany(currentDate, companypointmap, wppointmap, resultList, company, wps2, "-2");
|
|
|
- weightingCompany(currentDate, companypointmap, wppointmap, resultList, company, wps0, "0");
|
|
|
+ if (wps0.size()>0)
|
|
|
+ weightingCompany(currentDate, companypointmap, wppointmap, resultList, company, wps0, "0");
|
|
|
|
|
|
});
|
|
|
edosUtil.sendMultiPoint(resultList);
|
|
@@ -67,8 +68,10 @@ public class RegionCalService {
|
|
|
List<PointData> resultList = new ArrayList<>();
|
|
|
rgls.stream().forEach(region->{
|
|
|
List<ProBasicCompany> companys = cpls.stream().filter(company -> company.getRegionId().equals(region.getId())).collect(Collectors.toList());
|
|
|
- weightingRegion(currentDate, companypointmap, regionpointmap, resultList,region, companys, "-1");
|
|
|
- weightingRegion(currentDate, companypointmap, regionpointmap, resultList,region,companys, "-2");
|
|
|
+ if (region.getJrwindCapacity()>0)
|
|
|
+ weightingRegion(currentDate, companypointmap, regionpointmap, resultList,region, companys, "-1");
|
|
|
+ if (region.getJrCapacity()>0)
|
|
|
+ weightingRegion(currentDate, companypointmap, regionpointmap, resultList,region,companys, "-2");
|
|
|
weightingRegion(currentDate, companypointmap, regionpointmap, resultList,region, companys, "0");
|
|
|
});
|
|
|
edosUtil.sendMultiPoint(resultList);
|
|
@@ -1439,7 +1442,7 @@ public class RegionCalService {
|
|
|
resultList.add(PointUtil.createPointData(currentDate,pjfs15.get()/fcComCount.doubleValue(),zpjfs15Point.getNemCode(),zpjfs15Point.getName()));
|
|
|
}else if(type.equals("-2")){
|
|
|
resultList.add(PointUtil.createPointData(currentDate,rpjgzd.get()/gcComCount.doubleValue(),zrpjgzdPoint.getNemCode(),zrpjgzdPoint.getName()));
|
|
|
- resultList.add(PointUtil.createPointData(currentDate,ypjgzd.get()/gcComCount.doubleValue(),zypjgzdPoint.getNemCode(),zypjgzdPoint.getName()));
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,ypjgzd.get()/gcComCount.doubleValue(),zypjgzdPoint.getNemCode(),zypjgzdPoint.getName()));
|
|
|
resultList.add(PointUtil.createPointData(currentDate,npjgzd.get()/gcComCount.doubleValue(),znpjgzdPoint.getNemCode(),znpjgzdPoint.getName()));
|
|
|
resultList.add(PointUtil.createPointData(currentDate,pjgzd15.get()/gcComCount.doubleValue(),zpjgzd15Point.getNemCode(),zpjgzd15Point.getName()));
|
|
|
}else {
|