|
@@ -59,7 +59,7 @@ public class ElectricityMeteringService {
|
|
//线路发电量
|
|
//线路发电量
|
|
log.info(line.getName()+"电计量电量计算开始!");
|
|
log.info(line.getName()+"电计量电量计算开始!");
|
|
Optional<ProBasicMeterPoint> fdlOptional = meterpoints.stream().filter(me -> me.getLineId().equals(line.getId()) && me.getUniformCode().equals("ZXYG") && me.getMeterType().equals("进线") && me.getMeterSort().equals("主")).findFirst();
|
|
Optional<ProBasicMeterPoint> fdlOptional = meterpoints.stream().filter(me -> me.getLineId().equals(line.getId()) && me.getUniformCode().equals("ZXYG") && me.getMeterType().equals("进线") && me.getMeterSort().equals("主")).findFirst();
|
|
- getLineFdl(samedayZero, monthFirstZero, yearFirstZero, date,currentDate, lineResultList, proBasicWppointMap, fdlOptional);
|
|
|
|
|
|
+ getLineFdl(line.getId(),samedayZero, monthFirstZero, yearFirstZero, date,currentDate, lineResultList, proBasicWppointMap, fdlOptional);
|
|
log.info(line.getName()+"电计量电量计算完毕!");
|
|
log.info(line.getName()+"电计量电量计算完毕!");
|
|
|
|
|
|
//线路上网电量
|
|
//线路上网电量
|
|
@@ -147,8 +147,8 @@ public class ElectricityMeteringService {
|
|
proResultList.add(PointUtil.createPointData(date,rfdl.get(),rfdlpoint.getNemCode(),rfdlpoint.getName()));
|
|
proResultList.add(PointUtil.createPointData(date,rfdl.get(),rfdlpoint.getNemCode(),rfdlpoint.getName()));
|
|
ProBasicPowerstationPoint yfdlpoint = proBasicWppointMap.get(ContantXk.YFDLSYZ);
|
|
ProBasicPowerstationPoint yfdlpoint = proBasicWppointMap.get(ContantXk.YFDLSYZ);
|
|
proResultList.add(PointUtil.createPointData(date,yfdl.get(),yfdlpoint.getNemCode(),yfdlpoint.getName()));
|
|
proResultList.add(PointUtil.createPointData(date,yfdl.get(),yfdlpoint.getNemCode(),yfdlpoint.getName()));
|
|
- ProBasicPowerstationPoint nfdlpoint = proBasicWppointMap.get(ContantXk.YFDLSYZ);
|
|
|
|
- proResultList.add(PointUtil.createPointData(date,nfdl.get(),yfdlpoint.getNemCode(),nfdlpoint.getName()));
|
|
|
|
|
|
+ ProBasicPowerstationPoint nfdlpoint = proBasicWppointMap.get(ContantXk.NFDLSYZ);
|
|
|
|
+ proResultList.add(PointUtil.createPointData(date,nfdl.get(),nfdlpoint.getNemCode(),nfdlpoint.getName()));
|
|
|
|
|
|
ProBasicPowerstationPoint rswdlpoint = proBasicWppointMap.get(ContantXk.RSWDL);
|
|
ProBasicPowerstationPoint rswdlpoint = proBasicWppointMap.get(ContantXk.RSWDL);
|
|
proResultList.add(PointUtil.createPointData(date,rswdl.get(),rswdlpoint.getNemCode(),rswdlpoint.getName()));
|
|
proResultList.add(PointUtil.createPointData(date,rswdl.get(),rswdlpoint.getNemCode(),rswdlpoint.getName()));
|
|
@@ -242,8 +242,8 @@ public class ElectricityMeteringService {
|
|
wpResultList.add(PointUtil.createPointData(date,rfdl.get(),rfdlpoint.getNemCode(),rfdlpoint.getName()));
|
|
wpResultList.add(PointUtil.createPointData(date,rfdl.get(),rfdlpoint.getNemCode(),rfdlpoint.getName()));
|
|
ProBasicPowerstationPoint yfdlpoint = wpBasicWppointMap.get(ContantXk.YFDLSYZ);
|
|
ProBasicPowerstationPoint yfdlpoint = wpBasicWppointMap.get(ContantXk.YFDLSYZ);
|
|
wpResultList.add(PointUtil.createPointData(date,yfdl.get(),yfdlpoint.getNemCode(),yfdlpoint.getName()));
|
|
wpResultList.add(PointUtil.createPointData(date,yfdl.get(),yfdlpoint.getNemCode(),yfdlpoint.getName()));
|
|
- ProBasicPowerstationPoint nfdlpoint = wpBasicWppointMap.get(ContantXk.YFDLSYZ);
|
|
|
|
- wpResultList.add(PointUtil.createPointData(date,nfdl.get(),yfdlpoint.getNemCode(),nfdlpoint.getName()));
|
|
|
|
|
|
+ ProBasicPowerstationPoint nfdlpoint = wpBasicWppointMap.get(ContantXk.NFDLSYZ);
|
|
|
|
+ wpResultList.add(PointUtil.createPointData(date,nfdl.get(),nfdlpoint.getNemCode(),nfdlpoint.getName()));
|
|
|
|
|
|
ProBasicPowerstationPoint rswdlpoint = wpBasicWppointMap.get(ContantXk.RSWDL);
|
|
ProBasicPowerstationPoint rswdlpoint = wpBasicWppointMap.get(ContantXk.RSWDL);
|
|
wpResultList.add(PointUtil.createPointData(date,rswdl.get(),rswdlpoint.getNemCode(),rswdlpoint.getName()));
|
|
wpResultList.add(PointUtil.createPointData(date,rswdl.get(),rswdlpoint.getNemCode(),rswdlpoint.getName()));
|
|
@@ -322,13 +322,15 @@ public class ElectricityMeteringService {
|
|
if (StringUtils.isEmpty(fdlList)){
|
|
if (StringUtils.isEmpty(fdlList)){
|
|
String[] lines = swdlMeterpoint.getLineId().split("\\|");
|
|
String[] lines = swdlMeterpoint.getLineId().split("\\|");
|
|
Arrays.stream(lines).forEach(l->{
|
|
Arrays.stream(lines).forEach(l->{
|
|
- getLineFdl(samedayZero, monthFirstZero, yearFirstZero, date,currentDate, fdlList, proBasicWppointMap, fdlOptional);
|
|
|
|
|
|
+ Optional<ProBasicMeterPoint> fdOptional = CacheContext.meterpoints.stream().filter(me -> me.getLineId().equals(l) && me.getUniformCode().equals("ZXYG") && me.getMeterType().equals("进线") && me.getMeterSort().equals("主")).findFirst();
|
|
|
|
+
|
|
|
|
+ getLineFdl(l,samedayZero, monthFirstZero, yearFirstZero, date,currentDate, fdlList, proBasicWppointMap, fdOptional);
|
|
});
|
|
});
|
|
}
|
|
}
|
|
//获取电量百分比,算其他电量
|
|
//获取电量百分比,算其他电量
|
|
Map<String, Double> percentageMap = getPercentage(fdlList,swdlMeterpoint,linepointmap, line);
|
|
Map<String, Double> percentageMap = getPercentage(fdlList,swdlMeterpoint,linepointmap, line);
|
|
|
|
|
|
- String pointid = swdlMeterpoint.getId();
|
|
|
|
|
|
+ String pointid = swdlMeterpoint.getNemCode();
|
|
Double real = 0.0;
|
|
Double real = 0.0;
|
|
Double sameday = 0.0;
|
|
Double sameday = 0.0;
|
|
Double month = 0.0;
|
|
Double month = 0.0;
|
|
@@ -365,10 +367,10 @@ public class ElectricityMeteringService {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- private void getLineFdl(Date samedayZero, Date monthFirstZero, Date yearFirstZero, Date date,Date currentDate, List<PointData> lineResultList, Map<String, ProBasicPowerstationPoint> proBasicWppointMap, Optional<ProBasicMeterPoint> fdlOptional) {
|
|
|
|
|
|
+ private void getLineFdl(String line,Date samedayZero, Date monthFirstZero, Date yearFirstZero, Date date,Date currentDate, List<PointData> lineResultList, Map<String, ProBasicPowerstationPoint> proBasicWppointMap, Optional<ProBasicMeterPoint> fdlOptional) {
|
|
if (fdlOptional.isPresent()){
|
|
if (fdlOptional.isPresent()){
|
|
ProBasicMeterPoint proBasicMeterPoint = fdlOptional.get();
|
|
ProBasicMeterPoint proBasicMeterPoint = fdlOptional.get();
|
|
- String pointid = proBasicMeterPoint.getId();
|
|
|
|
|
|
+ String pointid = proBasicMeterPoint.getNemCode();
|
|
Double real = 0.0;
|
|
Double real = 0.0;
|
|
Double sameday = 0.0;
|
|
Double sameday = 0.0;
|
|
Double month = 0.0;
|
|
Double month = 0.0;
|
|
@@ -381,19 +383,22 @@ public class ElectricityMeteringService {
|
|
|
|
|
|
Double magnification = fdlOptional.get().getMagnification();
|
|
Double magnification = fdlOptional.get().getMagnification();
|
|
Double xs = proBasicMeterPoint.getXs();
|
|
Double xs = proBasicMeterPoint.getXs();
|
|
|
|
+
|
|
|
|
+ Map<String, ProBasicPowerstationPoint> powerstationPointMap = CacheContext.linepointmap.get(line);
|
|
|
|
+
|
|
//线路日发电量
|
|
//线路日发电量
|
|
double xlrfdl = (real - sameday) * magnification / xs;
|
|
double xlrfdl = (real - sameday) * magnification / xs;
|
|
- ProBasicPowerstationPoint rpoint = proBasicWppointMap.get(ContantXk.RFDLSYZ);
|
|
|
|
|
|
+ ProBasicPowerstationPoint rpoint = powerstationPointMap.get(ContantXk.RFDLSYZ);
|
|
PointData r = PointUtil.createPointData(date, xlrfdl, rpoint.getNemCode(),rpoint.getName());
|
|
PointData r = PointUtil.createPointData(date, xlrfdl, rpoint.getNemCode(),rpoint.getName());
|
|
lineResultList.add(r);
|
|
lineResultList.add(r);
|
|
//线路月发电量
|
|
//线路月发电量
|
|
double xlyfdl = (real - month) * magnification / xs;
|
|
double xlyfdl = (real - month) * magnification / xs;
|
|
- ProBasicPowerstationPoint ypoint = proBasicWppointMap.get(ContantXk.YFDLSYZ);
|
|
|
|
|
|
+ ProBasicPowerstationPoint ypoint = powerstationPointMap.get(ContantXk.YFDLSYZ);
|
|
PointData y = PointUtil.createPointData(date, xlyfdl,ypoint.getNemCode(),ypoint.getName());
|
|
PointData y = PointUtil.createPointData(date, xlyfdl,ypoint.getNemCode(),ypoint.getName());
|
|
lineResultList.add(y);
|
|
lineResultList.add(y);
|
|
//线路年发电量
|
|
//线路年发电量
|
|
double xlnfdl = (real - year) * magnification / xs;
|
|
double xlnfdl = (real - year) * magnification / xs;
|
|
- ProBasicPowerstationPoint npoint = proBasicWppointMap.get(ContantXk.NFDLSYZ);
|
|
|
|
|
|
+ ProBasicPowerstationPoint npoint = powerstationPointMap.get(ContantXk.NFDLSYZ);
|
|
PointData n = PointUtil.createPointData(date, xlnfdl,npoint.getNemCode(),npoint.getName());
|
|
PointData n = PointUtil.createPointData(date, xlnfdl,npoint.getNemCode(),npoint.getName());
|
|
lineResultList.add(n);
|
|
lineResultList.add(n);
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|