|
@@ -11,6 +11,7 @@ import com.gyee.runeconomy.model.StationInfoMin;
|
|
import com.gyee.runeconomy.model.auto.*;
|
|
import com.gyee.runeconomy.model.auto.*;
|
|
import com.gyee.runeconomy.model.vo.*;
|
|
import com.gyee.runeconomy.model.vo.*;
|
|
import com.gyee.runeconomy.service.auto.*;
|
|
import com.gyee.runeconomy.service.auto.*;
|
|
|
|
+import org.hibernate.query.criteria.internal.expression.function.AggregationFunction;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
@@ -20,10 +21,7 @@ import java.math.RoundingMode;
|
|
import java.text.DecimalFormat;
|
|
import java.text.DecimalFormat;
|
|
import java.text.ParseException;
|
|
import java.text.ParseException;
|
|
import java.text.SimpleDateFormat;
|
|
import java.text.SimpleDateFormat;
|
|
-import java.time.LocalDate;
|
|
|
|
-import java.time.LocalDateTime;
|
|
|
|
-import java.time.Month;
|
|
|
|
-import java.time.ZoneOffset;
|
|
|
|
|
|
+import java.time.*;
|
|
import java.time.format.DateTimeFormatter;
|
|
import java.time.format.DateTimeFormatter;
|
|
import java.time.temporal.TemporalAdjusters;
|
|
import java.time.temporal.TemporalAdjusters;
|
|
import java.util.*;
|
|
import java.util.*;
|
|
@@ -75,6 +73,9 @@ public class EconomyPointHomePageService {
|
|
@Resource
|
|
@Resource
|
|
private IStationInfoDayService iStationInfoDayService;
|
|
private IStationInfoDayService iStationInfoDayService;
|
|
|
|
|
|
|
|
+ @Resource
|
|
|
|
+ private ITurbineInfoDayService iTurbineInfoDayService;
|
|
|
|
+
|
|
|
|
|
|
/**
|
|
/**
|
|
* 指标率相应类
|
|
* 指标率相应类
|
|
@@ -136,6 +137,13 @@ public class EconomyPointHomePageService {
|
|
*/
|
|
*/
|
|
private Map<String, GeneratingCapacityVo> generatingCapacity15min = new HashMap<>();
|
|
private Map<String, GeneratingCapacityVo> generatingCapacity15min = new HashMap<>();
|
|
|
|
|
|
|
|
+ private BigDecimal weekFdlCal = null;
|
|
|
|
+ private BigDecimal yfdlCal = null;
|
|
|
|
+ private BigDecimal yllfdlCal = null;
|
|
|
|
+ private BigDecimal nfdlCal = null;
|
|
|
|
+ private BigDecimal nllfdlCal = null;
|
|
|
|
+ private LocalDate lastCalDate;
|
|
|
|
+
|
|
|
|
|
|
/**
|
|
/**
|
|
* 经济运行首页聚合方法
|
|
* 经济运行首页聚合方法
|
|
@@ -1824,10 +1832,6 @@ public class EconomyPointHomePageService {
|
|
Date currentDate = DateUtils.getCurrentDate();
|
|
Date currentDate = DateUtils.getCurrentDate();
|
|
Date monthFirst = DateUtils.getMonthFirst(currentDate);
|
|
Date monthFirst = DateUtils.getMonthFirst(currentDate);
|
|
double hoursDiff = DateUtils.hoursDiff2(currentDate, monthFirst);
|
|
double hoursDiff = DateUtils.hoursDiff2(currentDate, monthFirst);
|
|
- QueryWrapper<ProEconPowerstationInfoDay1> qw = new QueryWrapper<>();
|
|
|
|
- qw.lambda().eq(ProEconPowerstationInfoDay1::getRecordDate, now)
|
|
|
|
- .eq(ProEconPowerstationInfoDay1::getForeignKeyId, companyId);
|
|
|
|
- List<ProEconPowerstationInfoDay1> day1s = proEconPowerstationInfoDay1Service.list(qw);
|
|
|
|
Map<String, Object> sbklyl = new HashMap<>();
|
|
Map<String, Object> sbklyl = new HashMap<>();
|
|
GeneratingCapacityVo genCap = generatingCapacity15min.get("年发电量");
|
|
GeneratingCapacityVo genCap = generatingCapacity15min.get("年发电量");
|
|
|
|
|
|
@@ -1891,47 +1895,392 @@ public class EconomyPointHomePageService {
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
+// public Map<String, Object> getHomeMiddle(String companyId) throws ParseException {
|
|
|
|
+// LocalDate currentDate = LocalDate.now();
|
|
|
|
+// Integer month = LocalDate.now().getMonthValue();
|
|
|
|
+// int year = LocalDate.now().getYear();
|
|
|
|
+// Map<String, Object> allmap = new HashMap<>();
|
|
|
|
+// PlanDataVo pd = new PlanDataVo();
|
|
|
|
+// List<ProBasicProjectPlan> list = iProBasicProjectPlanService.list();
|
|
|
|
+//
|
|
|
|
+// QueryWrapper<ProEconPowerstationInfoDay1> qw1 = new QueryWrapper<>();
|
|
|
|
+// qw1.lambda().eq(ProEconPowerstationInfoDay1::getRecordDate, currentDate)
|
|
|
|
+// .eq(ProEconPowerstationInfoDay1::getForeignKeyId, companyId);
|
|
|
|
+// List<ProEconPowerstationInfoDay1> days1 = proEconPowerstationInfoDay1Service.list(qw1);
|
|
|
|
+//
|
|
|
|
+// LocalDate startOfWeek = currentDate.with(TemporalAdjusters.previousOrSame(java.time.DayOfWeek.MONDAY));// 本周周一日期
|
|
|
|
+// LocalDate endOfWeek = currentDate.with(TemporalAdjusters.nextOrSame(java.time.DayOfWeek.SUNDAY));
|
|
|
|
+// QueryWrapper<ProEconPowerstationInfoDay1> qw = new QueryWrapper<>();
|
|
|
|
+// qw.lambda().between(ProEconPowerstationInfoDay1::getRecordDate, startOfWeek, endOfWeek)
|
|
|
|
+// .eq(ProEconPowerstationInfoDay1::getForeignKeyId, companyId);
|
|
|
|
+// List<ProEconPowerstationInfoDay1> day1s = proEconPowerstationInfoDay1Service.list(qw);
|
|
|
|
+// if (null == day1s || day1s.isEmpty()) {
|
|
|
|
+// pd.setZfdlsj(0.00);
|
|
|
|
+// pd.setYfdlsj(0.00);
|
|
|
|
+// pd.setNfdlsj(0.00);
|
|
|
|
+// return allmap;
|
|
|
|
+// }
|
|
|
|
+//
|
|
|
|
+// List<ProBasicProjectPlan> pp = list.stream()
|
|
|
|
+// .filter(ls -> String.valueOf(month).equals(ls.getMonth())
|
|
|
|
+// && ls.getYear().equals(String.valueOf(year)) && ls.getProjectId().equals(companyId))
|
|
|
|
+// .collect(Collectors.toList());
|
|
|
|
+// if (null == pp || pp.isEmpty()) {
|
|
|
|
+// return allmap;
|
|
|
|
+// }
|
|
|
|
+// pd.setZfdljh(pp.get(0).getGeneratingCapacity() / 4);
|
|
|
|
+// double sum = day1s.stream().map(ProEconPowerstationInfoDay1::getRfdl).mapToDouble(BigDecimal::doubleValue).sum();
|
|
|
|
+// pd.setZfdlsj(sum);
|
|
|
|
+// Double zjd = calDivide(pd.getZfdlsj(), pd.getZfdljh());
|
|
|
|
+// pd.setZjd(zjd * 100);
|
|
|
|
+// pd.setZwcl(zjd);
|
|
|
|
+// pd.setYfdljh(pp.get(0).getGeneratingCapacity());
|
|
|
|
+// pd.setYfdlsj(days1.get(0).getYfdl().doubleValue());
|
|
|
|
+// Double yjd = calDivide(pd.getYfdlsj(), pd.getYfdljh());
|
|
|
|
+// pd.setYjd(yjd * 100);
|
|
|
|
+// pd.setYwcl(yjd);
|
|
|
|
+//
|
|
|
|
+// List<ProBasicProjectPlan> pp2 = list.stream()
|
|
|
|
+// .filter(ls -> ls.getYear().equals(String.valueOf(year)) && ls.getProjectId().equals(companyId) && ls.getMonth() == null)
|
|
|
|
+// .collect(Collectors.toList());
|
|
|
|
+// pd.setNfdljh(pp2.get(0).getGeneratingCapacity());
|
|
|
|
+// pd.setNfdlsj(days1.get(0).getNfdl().doubleValue() / 1000);
|
|
|
|
+// Double njd = calDivide(pd.getNfdlsj() / 1000, pd.getNfdljh());
|
|
|
|
+// pd.setNjd(njd * 100);
|
|
|
|
+// pd.setNwcl(njd);
|
|
|
|
+// allmap.put("planData", pd);
|
|
|
|
+//
|
|
|
|
+// QueryWrapper<ProEconPowerstationInfoDay1> qw2 = new QueryWrapper<>();
|
|
|
|
+// qw2.lambda().eq(ProEconPowerstationInfoDay1::getForeignKeyId, companyId);
|
|
|
|
+// List<ProEconPowerstationInfoDay1> days3 = proEconPowerstationInfoDay1Service.list(qw2);
|
|
|
|
+//
|
|
|
|
+// Map<Date, List<ProEconPowerstationInfoDay1>> date = days3.stream().collect(Collectors.groupingBy(ProEconPowerstationInfoDay1::getRecordDate));
|
|
|
|
+// Set<Integer> year2 = new TreeSet<>();
|
|
|
|
+// for (Date date1 : date.keySet()) {
|
|
|
|
+// Calendar calendar = Calendar.getInstance();
|
|
|
|
+// calendar.setTime(date1);
|
|
|
|
+// int year3 = calendar.get(Calendar.YEAR);
|
|
|
|
+// year2.add(year3);
|
|
|
|
+// }
|
|
|
|
+// int yy = year2.iterator().next();
|
|
|
|
+// String start = yy + "-01-01";
|
|
|
|
+// String end = yy + "-12-31";
|
|
|
|
+// String start2 = yy - 1 + "-01-01";
|
|
|
|
+// String end2 = yy - 1 + "-12-31";
|
|
|
|
+// SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
|
+// Date start1 = sdf.parse(start);
|
|
|
|
+// Date end1 = sdf.parse(end);
|
|
|
|
+// Date start3 = sdf.parse(start2);
|
|
|
|
+// Date end3 = sdf.parse(end2);
|
|
|
|
+// List<ProEconPowerstationInfoDay1> thisYear = days3.stream().filter(rec -> rec.getRecordDate().after(start1) && rec.getRecordDate().before(end1)).collect(Collectors.toList());
|
|
|
|
+// List<ProEconPowerstationInfoDay1> lastYear = days3.stream().filter(rec -> rec.getRecordDate().after(start3) && rec.getRecordDate().before(end3)).collect(Collectors.toList());
|
|
|
|
+// Map<Integer, List<ProEconPowerstationInfoDay1>> day1sMap = thisYear.stream().collect(Collectors.groupingBy(record -> record.getRecordDate().getMonth() + 1));
|
|
|
|
+// List<PowertrendVo> xdl = new ArrayList<>();
|
|
|
|
+// List<PowertrendVo> ssdl = new ArrayList<>();
|
|
|
|
+// List<PowertrendVo> fdl = new ArrayList<>();
|
|
|
|
+// PowertrendVo ptxdl = new PowertrendVo();
|
|
|
|
+// PowertrendVo ptssdl = new PowertrendVo();
|
|
|
|
+// PowertrendVo ptfdl = new PowertrendVo();
|
|
|
|
+// ptxdl.setTitle("限电量");
|
|
|
|
+// ptssdl.setTitle("损失电量");
|
|
|
|
+// ptfdl.setTitle("发电量");
|
|
|
|
+// ptxdl.setYAxisIndex(0);
|
|
|
|
+// ptssdl.setYAxisIndex(0);
|
|
|
|
+// ptfdl.setYAxisIndex(0);
|
|
|
|
+// List<ValueVo> vexdl = value(year, month);
|
|
|
|
+// List<ValueVo> vessdl = value(year, month);
|
|
|
|
+// List<ValueVo> vefdl = value(year, month);
|
|
|
|
+// for (Integer mon : day1sMap.keySet()) {
|
|
|
|
+// List<ProEconPowerstationInfoDay1> day1s1 = day1sMap.get(mon);
|
|
|
|
+// List<ProEconPowerstationInfoDay1> day1s2 = day1s1.stream().sorted(Comparator.comparing(ProEconPowerstationInfoDay1::getRecordDate).reversed()).collect(Collectors.toList());
|
|
|
|
+// LocalDate localDate = day1s2.get(0).getRecordDate().toInstant().atZone(ZoneOffset.UTC).toLocalDate();
|
|
|
|
+// int year1 = localDate.getYear();
|
|
|
|
+// String text = year1 + "-" + mon;
|
|
|
|
+// for (ValueVo vv : vexdl) {
|
|
|
|
+// if (vv.getText().equals(text)) {
|
|
|
|
+// vv.setValue(day1s2.get(0).getYxdjclssdl().add(day1s2.get(0).getYxdtjssdl()));
|
|
|
|
+// }
|
|
|
|
+// }
|
|
|
|
+// for (ValueVo vv : vessdl) {
|
|
|
|
+// if (vv.getText().equals(text)) {
|
|
|
|
+// vv.setValue(day1s2.get(0).getYgzssdl().add(day1s2.get(0).getYcnslgzssdl().add(day1s2.get(0).getYjxssdl().add(day1s2.get(0).getYcnsljxssdl()
|
|
|
|
+// .add(day1s2.get(0).getYdjssdl().add(day1s2.get(0).getYqxjclssdl().add(day1s2.get(0).getYsdtjssdl().add(day1s2.get(0).getYxnssdl()
|
|
|
|
+// .add(day1s2.get(0).getYxdtjssdl().add(day1s2.get(0).getYxdjclssdl().add(day1s2.get(0).getYcwsldwssdl().add(day1s2.get(0).getYcwsltqssdl()))))))))))));
|
|
|
|
+// }
|
|
|
|
+// }
|
|
|
|
+// for (ValueVo vv : vefdl) {
|
|
|
|
+// if (vv.getText().equals(text)) {
|
|
|
|
+// vv.setValue(day1s2.get(0).getYfdl());
|
|
|
|
+// }
|
|
|
|
+// }
|
|
|
|
+//
|
|
|
|
+// }
|
|
|
|
+// ptxdl.setValue(vexdl);
|
|
|
|
+// ptssdl.setValue(vessdl);
|
|
|
|
+// ptfdl.setValue(vefdl);
|
|
|
|
+// xdl.add(ptxdl);
|
|
|
|
+// ssdl.add(ptssdl);
|
|
|
|
+// fdl.add(ptfdl);
|
|
|
|
+//
|
|
|
|
+// PowertrendVo ptxdl2 = new PowertrendVo();
|
|
|
|
+// PowertrendVo ptssdl2 = new PowertrendVo();
|
|
|
|
+// PowertrendVo ptfdl2 = new PowertrendVo();
|
|
|
|
+// ptxdl2.setTitle("去年同期限电量");
|
|
|
|
+// ptssdl2.setTitle("去年同期损失电量");
|
|
|
|
+// ptfdl2.setTitle("去年同期发电量");
|
|
|
|
+// ptxdl.setYAxisIndex(0);
|
|
|
|
+// ptssdl.setYAxisIndex(0);
|
|
|
|
+// ptfdl.setYAxisIndex(0);
|
|
|
|
+// if (null == lastYear || lastYear.isEmpty()) {
|
|
|
|
+// List<ValueVo> value = value(year - 1, month);
|
|
|
|
+// ptxdl2.setValue(value);
|
|
|
|
+// ptssdl2.setValue(value);
|
|
|
|
+// ptfdl2.setValue(value);
|
|
|
|
+// } else {
|
|
|
|
+// List<ValueVo> vxdl2 = new ArrayList<>();
|
|
|
|
+// List<ValueVo> vssdl2 = new ArrayList<>();
|
|
|
|
+// List<ValueVo> vfdl2 = new ArrayList<>();
|
|
|
|
+// Map<Integer, List<ProEconPowerstationInfoDay1>> day1sMap2 = lastYear.stream().collect(Collectors.groupingBy(record -> record.getRecordDate().getMonth() + 1));
|
|
|
|
+// for (Integer mon2 : day1sMap2.keySet()) {
|
|
|
|
+// List<ProEconPowerstationInfoDay1> day1s3 = day1sMap2.get(mon2);
|
|
|
|
+// List<ProEconPowerstationInfoDay1> day1s4 = day1s3.stream().sorted(Comparator.comparing(ProEconPowerstationInfoDay1::getRecordDate).reversed()).collect(Collectors.toList());
|
|
|
|
+// LocalDate localDate = day1s3.get(0).getRecordDate().toInstant().atZone(ZoneOffset.UTC).toLocalDate();
|
|
|
|
+// int year1 = localDate.getYear();
|
|
|
|
+// String text = year1 + "-" + mon2;
|
|
|
|
+// ValueVo vexdl2 = new ValueVo();
|
|
|
|
+// ValueVo vessdl2 = new ValueVo();
|
|
|
|
+// ValueVo vefdl2 = new ValueVo();
|
|
|
|
+// vexdl2.setText(text);
|
|
|
|
+// vessdl2.setText(text);
|
|
|
|
+// vefdl2.setText(text);
|
|
|
|
+// vexdl2.setValue(day1s4.get(0).getYxdjclssdl().add(day1s4.get(0).getYxdtjssdl()));
|
|
|
|
+// vessdl2.setValue(day1s4.get(0).getYgzssdl().add(day1s4.get(0).getYcnslgzssdl().add(day1s4.get(0).getYjxssdl().add(day1s4.get(0).getYcnsljxssdl()
|
|
|
|
+// .add(day1s4.get(0).getYdjssdl().add(day1s4.get(0).getYqxjclssdl().add(day1s4.get(0).getYsdtjssdl().add(day1s4.get(0).getYxnssdl()
|
|
|
|
+// .add(day1s4.get(0).getYxdtjssdl().add(day1s4.get(0).getYxdjclssdl().add(day1s4.get(0).getYcwsldwssdl().add(day1s4.get(0).getYcwsltqssdl()))))))))))));
|
|
|
|
+// vefdl2.setValue(day1s4.get(0).getYfdl());
|
|
|
|
+// vxdl2.add(vexdl2);
|
|
|
|
+// vssdl2.add(vessdl2);
|
|
|
|
+// vfdl2.add(vefdl2);
|
|
|
|
+// }
|
|
|
|
+// ptxdl2.setValue(vxdl2);
|
|
|
|
+// ptssdl2.setValue(vssdl2);
|
|
|
|
+// ptxdl2.setValue(vfdl2);
|
|
|
|
+// }
|
|
|
|
+// xdl.add(ptxdl2);
|
|
|
|
+// ssdl.add(ptssdl2);
|
|
|
|
+// fdl.add(ptfdl2);
|
|
|
|
+//
|
|
|
|
+// allmap.put("Powertrend", xdl);
|
|
|
|
+// allmap.put("Powerloss", ssdl);
|
|
|
|
+// allmap.put("Powersend", fdl);
|
|
|
|
+// return allmap;
|
|
|
|
+// }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+// public Map<String, Object> getHomeMiddle(String companyId) throws ParseException {
|
|
|
|
+// LocalDate currentDate = LocalDate.now();
|
|
|
|
+// Integer month = LocalDate.now().getMonthValue();
|
|
|
|
+// int year = LocalDate.now().getYear();
|
|
|
|
+// Map<String, Object> allmap = new HashMap<>();
|
|
|
|
+// PlanDataVo pd = new PlanDataVo();
|
|
|
|
+// List<ProBasicProjectPlan> list = iProBasicProjectPlanService.list();
|
|
|
|
+//
|
|
|
|
+// QueryWrapper<ProEconPowerstationInfoDay1> qw1 = new QueryWrapper<>();
|
|
|
|
+// qw1.lambda().eq(ProEconPowerstationInfoDay1::getRecordDate, currentDate)
|
|
|
|
+// .eq(ProEconPowerstationInfoDay1::getForeignKeyId, companyId);
|
|
|
|
+// List<ProEconPowerstationInfoDay1> days1 = proEconPowerstationInfoDay1Service.list(qw1);
|
|
|
|
+//
|
|
|
|
+// LocalDate startOfWeek = currentDate.with(TemporalAdjusters.previousOrSame(java.time.DayOfWeek.MONDAY));// 本周周一日期
|
|
|
|
+// LocalDate endOfWeek = currentDate.with(TemporalAdjusters.nextOrSame(java.time.DayOfWeek.SUNDAY));
|
|
|
|
+// QueryWrapper<ProEconPowerstationInfoDay1> qw = new QueryWrapper<>();
|
|
|
|
+// qw.lambda().between(ProEconPowerstationInfoDay1::getRecordDate, startOfWeek, endOfWeek)
|
|
|
|
+// .eq(ProEconPowerstationInfoDay1::getForeignKeyId, companyId);
|
|
|
|
+// List<ProEconPowerstationInfoDay1> day1s = proEconPowerstationInfoDay1Service.list(qw);
|
|
|
|
+// if (null == day1s || day1s.isEmpty()) {
|
|
|
|
+// pd.setZfdlsj(0.00);
|
|
|
|
+// pd.setYfdlsj(0.00);
|
|
|
|
+// pd.setNfdlsj(0.00);
|
|
|
|
+// return allmap;
|
|
|
|
+// }
|
|
|
|
+//
|
|
|
|
+// List<ProBasicProjectPlan> pp = list.stream()
|
|
|
|
+// .filter(ls -> String.valueOf(month).equals(ls.getMonth())
|
|
|
|
+// && ls.getYear().equals(String.valueOf(year)) && ls.getProjectId().equals(companyId))
|
|
|
|
+// .collect(Collectors.toList());
|
|
|
|
+// if (null == pp || pp.isEmpty()) {
|
|
|
|
+// return allmap;
|
|
|
|
+// }
|
|
|
|
+// pd.setZfdljh(pp.get(0).getGeneratingCapacity() / 4);
|
|
|
|
+// double sum = day1s.stream().map(ProEconPowerstationInfoDay1::getRfdl).mapToDouble(BigDecimal::doubleValue).sum();
|
|
|
|
+// pd.setZfdlsj(sum);
|
|
|
|
+// Double zjd = calDivide(pd.getZfdlsj(), pd.getZfdljh());
|
|
|
|
+// pd.setZjd(zjd * 100);
|
|
|
|
+// pd.setZwcl(zjd);
|
|
|
|
+// pd.setYfdljh(pp.get(0).getGeneratingCapacity());
|
|
|
|
+// pd.setYfdlsj(days1.get(0).getYfdl().doubleValue());
|
|
|
|
+// Double yjd = calDivide(pd.getYfdlsj(), pd.getYfdljh());
|
|
|
|
+// pd.setYjd(yjd * 100);
|
|
|
|
+// pd.setYwcl(yjd);
|
|
|
|
+//
|
|
|
|
+// List<ProBasicProjectPlan> pp2 = list.stream()
|
|
|
|
+// .filter(ls -> ls.getYear().equals(String.valueOf(year)) && ls.getProjectId().equals(companyId) && ls.getMonth() == null)
|
|
|
|
+// .collect(Collectors.toList());
|
|
|
|
+// pd.setNfdljh(pp2.get(0).getGeneratingCapacity());
|
|
|
|
+// pd.setNfdlsj(days1.get(0).getNfdl().doubleValue() / 1000);
|
|
|
|
+// Double njd = calDivide(pd.getNfdlsj() / 1000, pd.getNfdljh());
|
|
|
|
+// pd.setNjd(njd * 100);
|
|
|
|
+// pd.setNwcl(njd);
|
|
|
|
+// allmap.put("planData", pd);
|
|
|
|
+//
|
|
|
|
+// QueryWrapper<ProEconPowerstationInfoDay1> qw2 = new QueryWrapper<>();
|
|
|
|
+// qw2.lambda().eq(ProEconPowerstationInfoDay1::getForeignKeyId, companyId);
|
|
|
|
+// List<ProEconPowerstationInfoDay1> days3 = proEconPowerstationInfoDay1Service.list(qw2);
|
|
|
|
+//
|
|
|
|
+// Map<Date, List<ProEconPowerstationInfoDay1>> date = days3.stream().collect(Collectors.groupingBy(ProEconPowerstationInfoDay1::getRecordDate));
|
|
|
|
+// Set<Integer> year2 = new TreeSet<>();
|
|
|
|
+// for (Date date1 : date.keySet()) {
|
|
|
|
+// Calendar calendar = Calendar.getInstance();
|
|
|
|
+// calendar.setTime(date1);
|
|
|
|
+// int year3 = calendar.get(Calendar.YEAR);
|
|
|
|
+// year2.add(year3);
|
|
|
|
+// }
|
|
|
|
+// int yy = year2.iterator().next();
|
|
|
|
+// String start = yy + "-01-01";
|
|
|
|
+// String end = yy + "-12-31";
|
|
|
|
+// String start2 = yy - 1 + "-01-01";
|
|
|
|
+// String end2 = yy - 1 + "-12-31";
|
|
|
|
+// SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
|
+// Date start1 = sdf.parse(start);
|
|
|
|
+// Date end1 = sdf.parse(end);
|
|
|
|
+// Date start3 = sdf.parse(start2);
|
|
|
|
+// Date end3 = sdf.parse(end2);
|
|
|
|
+// List<ProEconPowerstationInfoDay1> thisYear = days3.stream().filter(rec -> rec.getRecordDate().after(start1) && rec.getRecordDate().before(end1)).collect(Collectors.toList());
|
|
|
|
+// List<ProEconPowerstationInfoDay1> lastYear = days3.stream().filter(rec -> rec.getRecordDate().after(start3) && rec.getRecordDate().before(end3)).collect(Collectors.toList());
|
|
|
|
+// Map<Integer, List<ProEconPowerstationInfoDay1>> day1sMap = thisYear.stream().collect(Collectors.groupingBy(record -> record.getRecordDate().getMonth() + 1));
|
|
|
|
+// List<PowertrendVo> xdl = new ArrayList<>();
|
|
|
|
+// List<PowertrendVo> ssdl = new ArrayList<>();
|
|
|
|
+// List<PowertrendVo> fdl = new ArrayList<>();
|
|
|
|
+// PowertrendVo ptxdl = new PowertrendVo();
|
|
|
|
+// PowertrendVo ptssdl = new PowertrendVo();
|
|
|
|
+// PowertrendVo ptfdl = new PowertrendVo();
|
|
|
|
+// ptxdl.setTitle("限电量");
|
|
|
|
+// ptssdl.setTitle("损失电量");
|
|
|
|
+// ptfdl.setTitle("发电量");
|
|
|
|
+// ptxdl.setYAxisIndex(0);
|
|
|
|
+// ptssdl.setYAxisIndex(0);
|
|
|
|
+// ptfdl.setYAxisIndex(0);
|
|
|
|
+// List<ValueVo> vexdl = value(year, month);
|
|
|
|
+// List<ValueVo> vessdl = value(year, month);
|
|
|
|
+// List<ValueVo> vefdl = value(year, month);
|
|
|
|
+// for (Integer mon : day1sMap.keySet()) {
|
|
|
|
+// List<ProEconPowerstationInfoDay1> day1s1 = day1sMap.get(mon);
|
|
|
|
+// List<ProEconPowerstationInfoDay1> day1s2 = day1s1.stream().sorted(Comparator.comparing(ProEconPowerstationInfoDay1::getRecordDate).reversed()).collect(Collectors.toList());
|
|
|
|
+// LocalDate localDate = day1s2.get(0).getRecordDate().toInstant().atZone(ZoneOffset.UTC).toLocalDate();
|
|
|
|
+// int year1 = localDate.getYear();
|
|
|
|
+// String text = year1 + "-" + mon;
|
|
|
|
+// for (ValueVo vv : vexdl) {
|
|
|
|
+// if (vv.getText().equals(text)) {
|
|
|
|
+// vv.setValue(day1s2.get(0).getYxdjclssdl().add(day1s2.get(0).getYxdtjssdl()));
|
|
|
|
+// }
|
|
|
|
+// }
|
|
|
|
+// for (ValueVo vv : vessdl) {
|
|
|
|
+// if (vv.getText().equals(text)) {
|
|
|
|
+// vv.setValue(day1s2.get(0).getYgzssdl().add(day1s2.get(0).getYcnslgzssdl().add(day1s2.get(0).getYjxssdl().add(day1s2.get(0).getYcnsljxssdl()
|
|
|
|
+// .add(day1s2.get(0).getYdjssdl().add(day1s2.get(0).getYqxjclssdl().add(day1s2.get(0).getYsdtjssdl().add(day1s2.get(0).getYxnssdl()
|
|
|
|
+// .add(day1s2.get(0).getYxdtjssdl().add(day1s2.get(0).getYxdjclssdl().add(day1s2.get(0).getYcwsldwssdl().add(day1s2.get(0).getYcwsltqssdl()))))))))))));
|
|
|
|
+// }
|
|
|
|
+// }
|
|
|
|
+// for (ValueVo vv : vefdl) {
|
|
|
|
+// if (vv.getText().equals(text)) {
|
|
|
|
+// vv.setValue(day1s2.get(0).getYfdl());
|
|
|
|
+// }
|
|
|
|
+// }
|
|
|
|
+//
|
|
|
|
+// }
|
|
|
|
+// ptxdl.setValue(vexdl);
|
|
|
|
+// ptssdl.setValue(vessdl);
|
|
|
|
+// ptfdl.setValue(vefdl);
|
|
|
|
+// xdl.add(ptxdl);
|
|
|
|
+// ssdl.add(ptssdl);
|
|
|
|
+// fdl.add(ptfdl);
|
|
|
|
+//
|
|
|
|
+// PowertrendVo ptxdl2 = new PowertrendVo();
|
|
|
|
+// PowertrendVo ptssdl2 = new PowertrendVo();
|
|
|
|
+// PowertrendVo ptfdl2 = new PowertrendVo();
|
|
|
|
+// ptxdl2.setTitle("去年同期限电量");
|
|
|
|
+// ptssdl2.setTitle("去年同期损失电量");
|
|
|
|
+// ptfdl2.setTitle("去年同期发电量");
|
|
|
|
+// ptxdl.setYAxisIndex(0);
|
|
|
|
+// ptssdl.setYAxisIndex(0);
|
|
|
|
+// ptfdl.setYAxisIndex(0);
|
|
|
|
+// if (null == lastYear || lastYear.isEmpty()) {
|
|
|
|
+// List<ValueVo> value = value(year - 1, month);
|
|
|
|
+// ptxdl2.setValue(value);
|
|
|
|
+// ptssdl2.setValue(value);
|
|
|
|
+// ptfdl2.setValue(value);
|
|
|
|
+// } else {
|
|
|
|
+// List<ValueVo> vxdl2 = new ArrayList<>();
|
|
|
|
+// List<ValueVo> vssdl2 = new ArrayList<>();
|
|
|
|
+// List<ValueVo> vfdl2 = new ArrayList<>();
|
|
|
|
+// Map<Integer, List<ProEconPowerstationInfoDay1>> day1sMap2 = lastYear.stream().collect(Collectors.groupingBy(record -> record.getRecordDate().getMonth() + 1));
|
|
|
|
+// for (Integer mon2 : day1sMap2.keySet()) {
|
|
|
|
+// List<ProEconPowerstationInfoDay1> day1s3 = day1sMap2.get(mon2);
|
|
|
|
+// List<ProEconPowerstationInfoDay1> day1s4 = day1s3.stream().sorted(Comparator.comparing(ProEconPowerstationInfoDay1::getRecordDate).reversed()).collect(Collectors.toList());
|
|
|
|
+// LocalDate localDate = day1s3.get(0).getRecordDate().toInstant().atZone(ZoneOffset.UTC).toLocalDate();
|
|
|
|
+// int year1 = localDate.getYear();
|
|
|
|
+// String text = year1 + "-" + mon2;
|
|
|
|
+// ValueVo vexdl2 = new ValueVo();
|
|
|
|
+// ValueVo vessdl2 = new ValueVo();
|
|
|
|
+// ValueVo vefdl2 = new ValueVo();
|
|
|
|
+// vexdl2.setText(text);
|
|
|
|
+// vessdl2.setText(text);
|
|
|
|
+// vefdl2.setText(text);
|
|
|
|
+// vexdl2.setValue(day1s4.get(0).getYxdjclssdl().add(day1s4.get(0).getYxdtjssdl()));
|
|
|
|
+// vessdl2.setValue(day1s4.get(0).getYgzssdl().add(day1s4.get(0).getYcnslgzssdl().add(day1s4.get(0).getYjxssdl().add(day1s4.get(0).getYcnsljxssdl()
|
|
|
|
+// .add(day1s4.get(0).getYdjssdl().add(day1s4.get(0).getYqxjclssdl().add(day1s4.get(0).getYsdtjssdl().add(day1s4.get(0).getYxnssdl()
|
|
|
|
+// .add(day1s4.get(0).getYxdtjssdl().add(day1s4.get(0).getYxdjclssdl().add(day1s4.get(0).getYcwsldwssdl().add(day1s4.get(0).getYcwsltqssdl()))))))))))));
|
|
|
|
+// vefdl2.setValue(day1s4.get(0).getYfdl());
|
|
|
|
+// vxdl2.add(vexdl2);
|
|
|
|
+// vssdl2.add(vessdl2);
|
|
|
|
+// vfdl2.add(vefdl2);
|
|
|
|
+// }
|
|
|
|
+// ptxdl2.setValue(vxdl2);
|
|
|
|
+// ptssdl2.setValue(vssdl2);
|
|
|
|
+// ptxdl2.setValue(vfdl2);
|
|
|
|
+// }
|
|
|
|
+// xdl.add(ptxdl2);
|
|
|
|
+// ssdl.add(ptssdl2);
|
|
|
|
+// fdl.add(ptfdl2);
|
|
|
|
+//
|
|
|
|
+// allmap.put("Powertrend", xdl);
|
|
|
|
+// allmap.put("Powerloss", ssdl);
|
|
|
|
+// allmap.put("Powersend", fdl);
|
|
|
|
+// return allmap;
|
|
|
|
+// }
|
|
|
|
+
|
|
|
|
+
|
|
public Map<String, Object> getHomeMiddle(String companyId) throws ParseException {
|
|
public Map<String, Object> getHomeMiddle(String companyId) throws ParseException {
|
|
- LocalDate currentDate = LocalDate.now();
|
|
|
|
Integer month = LocalDate.now().getMonthValue();
|
|
Integer month = LocalDate.now().getMonthValue();
|
|
int year = LocalDate.now().getYear();
|
|
int year = LocalDate.now().getYear();
|
|
Map<String, Object> allmap = new HashMap<>();
|
|
Map<String, Object> allmap = new HashMap<>();
|
|
PlanDataVo pd = new PlanDataVo();
|
|
PlanDataVo pd = new PlanDataVo();
|
|
|
|
+ //计划发电量
|
|
List<ProBasicProjectPlan> list = iProBasicProjectPlanService.list();
|
|
List<ProBasicProjectPlan> list = iProBasicProjectPlanService.list();
|
|
|
|
|
|
- QueryWrapper<ProEconPowerstationInfoDay1> qw1 = new QueryWrapper<>();
|
|
|
|
- qw1.lambda().eq(ProEconPowerstationInfoDay1::getRecordDate, currentDate)
|
|
|
|
- .eq(ProEconPowerstationInfoDay1::getForeignKeyId, companyId);
|
|
|
|
- List<ProEconPowerstationInfoDay1> days1 = proEconPowerstationInfoDay1Service.list(qw1);
|
|
|
|
-
|
|
|
|
- LocalDate startOfWeek = currentDate.with(TemporalAdjusters.previousOrSame(java.time.DayOfWeek.MONDAY));// 本周周一日期
|
|
|
|
- LocalDate endOfWeek = currentDate.with(TemporalAdjusters.nextOrSame(java.time.DayOfWeek.SUNDAY));
|
|
|
|
- QueryWrapper<ProEconPowerstationInfoDay1> qw = new QueryWrapper<>();
|
|
|
|
- qw.lambda().between(ProEconPowerstationInfoDay1::getRecordDate, startOfWeek, endOfWeek)
|
|
|
|
- .eq(ProEconPowerstationInfoDay1::getForeignKeyId, companyId);
|
|
|
|
- List<ProEconPowerstationInfoDay1> day1s = proEconPowerstationInfoDay1Service.list(qw);
|
|
|
|
- if (null == day1s || day1s.isEmpty()) {
|
|
|
|
- pd.setZfdlsj(0.00);
|
|
|
|
- pd.setYfdlsj(0.00);
|
|
|
|
- pd.setNfdlsj(0.00);
|
|
|
|
- return allmap;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
List<ProBasicProjectPlan> pp = list.stream()
|
|
List<ProBasicProjectPlan> pp = list.stream()
|
|
.filter(ls -> String.valueOf(month).equals(ls.getMonth())
|
|
.filter(ls -> String.valueOf(month).equals(ls.getMonth())
|
|
&& ls.getYear().equals(String.valueOf(year)) && ls.getProjectId().equals(companyId))
|
|
&& ls.getYear().equals(String.valueOf(year)) && ls.getProjectId().equals(companyId))
|
|
.collect(Collectors.toList());
|
|
.collect(Collectors.toList());
|
|
- if (null == pp || pp.isEmpty()) {
|
|
|
|
|
|
+ if (pp.isEmpty()) {
|
|
return allmap;
|
|
return allmap;
|
|
}
|
|
}
|
|
pd.setZfdljh(pp.get(0).getGeneratingCapacity() / 4);
|
|
pd.setZfdljh(pp.get(0).getGeneratingCapacity() / 4);
|
|
- double sum = day1s.stream().map(ProEconPowerstationInfoDay1::getRfdl).mapToDouble(BigDecimal::doubleValue).sum();
|
|
|
|
- pd.setZfdlsj(sum);
|
|
|
|
|
|
+ pd.setZfdlsj(weekFdlCal.add(new BigDecimal(generatingCapacity15min.get("日发电量").getValue())).doubleValue());
|
|
Double zjd = calDivide(pd.getZfdlsj(), pd.getZfdljh());
|
|
Double zjd = calDivide(pd.getZfdlsj(), pd.getZfdljh());
|
|
pd.setZjd(zjd * 100);
|
|
pd.setZjd(zjd * 100);
|
|
pd.setZwcl(zjd);
|
|
pd.setZwcl(zjd);
|
|
pd.setYfdljh(pp.get(0).getGeneratingCapacity());
|
|
pd.setYfdljh(pp.get(0).getGeneratingCapacity());
|
|
- pd.setYfdlsj(days1.get(0).getYfdl().doubleValue());
|
|
|
|
|
|
+ pd.setYfdlsj(yfdlCal.add(new BigDecimal(generatingCapacity15min.get("日发电量").getValue())).doubleValue());
|
|
Double yjd = calDivide(pd.getYfdlsj(), pd.getYfdljh());
|
|
Double yjd = calDivide(pd.getYfdlsj(), pd.getYfdljh());
|
|
pd.setYjd(yjd * 100);
|
|
pd.setYjd(yjd * 100);
|
|
pd.setYwcl(yjd);
|
|
pd.setYwcl(yjd);
|
|
@@ -1940,37 +2289,30 @@ public class EconomyPointHomePageService {
|
|
.filter(ls -> ls.getYear().equals(String.valueOf(year)) && ls.getProjectId().equals(companyId) && ls.getMonth() == null)
|
|
.filter(ls -> ls.getYear().equals(String.valueOf(year)) && ls.getProjectId().equals(companyId) && ls.getMonth() == null)
|
|
.collect(Collectors.toList());
|
|
.collect(Collectors.toList());
|
|
pd.setNfdljh(pp2.get(0).getGeneratingCapacity());
|
|
pd.setNfdljh(pp2.get(0).getGeneratingCapacity());
|
|
- pd.setNfdlsj(days1.get(0).getNfdl().doubleValue() / 1000);
|
|
|
|
- Double njd = calDivide(pd.getNfdlsj() / 1000, pd.getNfdljh());
|
|
|
|
|
|
+ pd.setNfdlsj(nfdlCal.add(new BigDecimal(generatingCapacity15min.get("日发电量").getValue())).doubleValue());
|
|
|
|
+ Double njd = calDivide(pd.getNfdlsj(), pd.getNfdljh());
|
|
pd.setNjd(njd * 100);
|
|
pd.setNjd(njd * 100);
|
|
pd.setNwcl(njd);
|
|
pd.setNwcl(njd);
|
|
allmap.put("planData", pd);
|
|
allmap.put("planData", pd);
|
|
|
|
|
|
- QueryWrapper<ProEconPowerstationInfoDay1> qw2 = new QueryWrapper<>();
|
|
|
|
- qw2.lambda().eq(ProEconPowerstationInfoDay1::getForeignKeyId, companyId);
|
|
|
|
- List<ProEconPowerstationInfoDay1> days3 = proEconPowerstationInfoDay1Service.list(qw2);
|
|
|
|
-
|
|
|
|
- Map<Date, List<ProEconPowerstationInfoDay1>> date = days3.stream().collect(Collectors.groupingBy(ProEconPowerstationInfoDay1::getRecordDate));
|
|
|
|
- Set<Integer> year2 = new TreeSet<>();
|
|
|
|
- for (Date date1 : date.keySet()) {
|
|
|
|
- Calendar calendar = Calendar.getInstance();
|
|
|
|
- calendar.setTime(date1);
|
|
|
|
- int year3 = calendar.get(Calendar.YEAR);
|
|
|
|
- year2.add(year3);
|
|
|
|
- }
|
|
|
|
- int yy = year2.iterator().next();
|
|
|
|
- String start = yy + "-01-01";
|
|
|
|
- String end = yy + "-12-31";
|
|
|
|
- String start2 = yy - 1 + "-01-01";
|
|
|
|
- String end2 = yy - 1 + "-12-31";
|
|
|
|
|
|
+ QueryWrapper<TurbineInfoDay> qw2 = new QueryWrapper<>();
|
|
|
|
+ qw2.lambda().eq(TurbineInfoDay::getStationId, companyId);
|
|
|
|
+ List<TurbineInfoDay> days3 = iTurbineInfoDayService.list(qw2);
|
|
|
|
+
|
|
|
|
+ int yearThis = LocalDate.now().getYear();
|
|
|
|
+ int yearLast = yearThis - 1;
|
|
|
|
+ String start = yearThis + "-01-01";
|
|
|
|
+ String end = yearThis + "-12-31";
|
|
|
|
+ String start2 = yearLast + "-01-01";
|
|
|
|
+ String end2 = yearLast + "-12-31";
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
|
Date start1 = sdf.parse(start);
|
|
Date start1 = sdf.parse(start);
|
|
Date end1 = sdf.parse(end);
|
|
Date end1 = sdf.parse(end);
|
|
Date start3 = sdf.parse(start2);
|
|
Date start3 = sdf.parse(start2);
|
|
Date end3 = sdf.parse(end2);
|
|
Date end3 = sdf.parse(end2);
|
|
- List<ProEconPowerstationInfoDay1> thisYear = days3.stream().filter(rec -> rec.getRecordDate().after(start1) && rec.getRecordDate().before(end1)).collect(Collectors.toList());
|
|
|
|
- List<ProEconPowerstationInfoDay1> lastYear = days3.stream().filter(rec -> rec.getRecordDate().after(start3) && rec.getRecordDate().before(end3)).collect(Collectors.toList());
|
|
|
|
- Map<Integer, List<ProEconPowerstationInfoDay1>> day1sMap = thisYear.stream().collect(Collectors.groupingBy(record -> record.getRecordDate().getMonth() + 1));
|
|
|
|
|
|
+ List<TurbineInfoDay> thisYear = days3.stream().filter(rec -> rec.getRecordDate().after(start1) && rec.getRecordDate().before(end1)).collect(Collectors.toList());
|
|
|
|
+ List<TurbineInfoDay> lastYear = days3.stream().filter(rec -> rec.getRecordDate().after(start3) && rec.getRecordDate().before(end3)).collect(Collectors.toList());
|
|
|
|
+ Map<Integer, List<TurbineInfoDay>> day1sMap = thisYear.stream().collect(Collectors.groupingBy(record -> record.getRecordDate().getMonth() + 1));
|
|
List<PowertrendVo> xdl = new ArrayList<>();
|
|
List<PowertrendVo> xdl = new ArrayList<>();
|
|
List<PowertrendVo> ssdl = new ArrayList<>();
|
|
List<PowertrendVo> ssdl = new ArrayList<>();
|
|
List<PowertrendVo> fdl = new ArrayList<>();
|
|
List<PowertrendVo> fdl = new ArrayList<>();
|
|
@@ -1983,30 +2325,34 @@ public class EconomyPointHomePageService {
|
|
ptxdl.setYAxisIndex(0);
|
|
ptxdl.setYAxisIndex(0);
|
|
ptssdl.setYAxisIndex(0);
|
|
ptssdl.setYAxisIndex(0);
|
|
ptfdl.setYAxisIndex(0);
|
|
ptfdl.setYAxisIndex(0);
|
|
- List<ValueVo> vexdl = value(year, month);
|
|
|
|
- List<ValueVo> vessdl = value(year, month);
|
|
|
|
- List<ValueVo> vefdl = value(year, month);
|
|
|
|
|
|
+ List<ValueVo> vexdl = value(year, 12);
|
|
|
|
+ List<ValueVo> vessdl = value(year, 12);
|
|
|
|
+ List<ValueVo> vefdl = value(year, 12);
|
|
for (Integer mon : day1sMap.keySet()) {
|
|
for (Integer mon : day1sMap.keySet()) {
|
|
- List<ProEconPowerstationInfoDay1> day1s1 = day1sMap.get(mon);
|
|
|
|
- List<ProEconPowerstationInfoDay1> day1s2 = day1s1.stream().sorted(Comparator.comparing(ProEconPowerstationInfoDay1::getRecordDate).reversed()).collect(Collectors.toList());
|
|
|
|
|
|
+ List<TurbineInfoDay> day1s1 = day1sMap.get(mon);
|
|
|
|
+ List<TurbineInfoDay> day1s2 = day1s1.stream().sorted(Comparator.comparing(TurbineInfoDay::getRecordDate).reversed()).collect(Collectors.toList());
|
|
LocalDate localDate = day1s2.get(0).getRecordDate().toInstant().atZone(ZoneOffset.UTC).toLocalDate();
|
|
LocalDate localDate = day1s2.get(0).getRecordDate().toInstant().atZone(ZoneOffset.UTC).toLocalDate();
|
|
int year1 = localDate.getYear();
|
|
int year1 = localDate.getYear();
|
|
String text = year1 + "-" + mon;
|
|
String text = year1 + "-" + mon;
|
|
for (ValueVo vv : vexdl) {
|
|
for (ValueVo vv : vexdl) {
|
|
if (vv.getText().equals(text)) {
|
|
if (vv.getText().equals(text)) {
|
|
- vv.setValue(day1s2.get(0).getYxdjclssdl().add(day1s2.get(0).getYxdtjssdl()));
|
|
|
|
|
|
+ vv.setValue(day1s2.stream().map(TurbineInfoDay::getXdss).reduce(BigDecimal.ZERO, BigDecimal::add));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
for (ValueVo vv : vessdl) {
|
|
for (ValueVo vv : vessdl) {
|
|
if (vv.getText().equals(text)) {
|
|
if (vv.getText().equals(text)) {
|
|
- vv.setValue(day1s2.get(0).getYgzssdl().add(day1s2.get(0).getYcnslgzssdl().add(day1s2.get(0).getYjxssdl().add(day1s2.get(0).getYcnsljxssdl()
|
|
|
|
- .add(day1s2.get(0).getYdjssdl().add(day1s2.get(0).getYqxjclssdl().add(day1s2.get(0).getYsdtjssdl().add(day1s2.get(0).getYxnssdl()
|
|
|
|
- .add(day1s2.get(0).getYxdtjssdl().add(day1s2.get(0).getYxdjclssdl().add(day1s2.get(0).getYcwsldwssdl().add(day1s2.get(0).getYcwsltqssdl()))))))))))));
|
|
|
|
|
|
+ vv.setValue(day1s2.stream().map(TurbineInfoDay::getXdss).reduce(BigDecimal.ZERO, BigDecimal::add)
|
|
|
|
+ .add(day1s2.stream().map(TurbineInfoDay::getJhjxss).reduce(BigDecimal.ZERO, BigDecimal::add)
|
|
|
|
+ .add(day1s2.stream().map(TurbineInfoDay::getFjhjxss).reduce(BigDecimal.ZERO, BigDecimal::add)
|
|
|
|
+ .add(day1s2.stream().map(TurbineInfoDay::getSlss).reduce(BigDecimal.ZERO, BigDecimal::add))
|
|
|
|
+ .add(day1s2.stream().map(TurbineInfoDay::getXnss).reduce(BigDecimal.ZERO, BigDecimal::add))
|
|
|
|
+ .add(day1s2.stream().map(TurbineInfoDay::getDjss).reduce(BigDecimal.ZERO, BigDecimal::add))
|
|
|
|
+ .add(day1s2.stream().map(TurbineInfoDay::getGzss).reduce(BigDecimal.ZERO, BigDecimal::add)))));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
for (ValueVo vv : vefdl) {
|
|
for (ValueVo vv : vefdl) {
|
|
if (vv.getText().equals(text)) {
|
|
if (vv.getText().equals(text)) {
|
|
- vv.setValue(day1s2.get(0).getYfdl());
|
|
|
|
|
|
+ vv.setValue(day1s2.stream().map(TurbineInfoDay::getRfdl).reduce(BigDecimal.ZERO, BigDecimal::add));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -2036,10 +2382,10 @@ public class EconomyPointHomePageService {
|
|
List<ValueVo> vxdl2 = new ArrayList<>();
|
|
List<ValueVo> vxdl2 = new ArrayList<>();
|
|
List<ValueVo> vssdl2 = new ArrayList<>();
|
|
List<ValueVo> vssdl2 = new ArrayList<>();
|
|
List<ValueVo> vfdl2 = new ArrayList<>();
|
|
List<ValueVo> vfdl2 = new ArrayList<>();
|
|
- Map<Integer, List<ProEconPowerstationInfoDay1>> day1sMap2 = lastYear.stream().collect(Collectors.groupingBy(record -> record.getRecordDate().getMonth() + 1));
|
|
|
|
|
|
+ Map<Integer, List<TurbineInfoDay>> day1sMap2 = lastYear.stream().collect(Collectors.groupingBy(record -> record.getRecordDate().getMonth() + 1));
|
|
for (Integer mon2 : day1sMap2.keySet()) {
|
|
for (Integer mon2 : day1sMap2.keySet()) {
|
|
- List<ProEconPowerstationInfoDay1> day1s3 = day1sMap2.get(mon2);
|
|
|
|
- List<ProEconPowerstationInfoDay1> day1s4 = day1s3.stream().sorted(Comparator.comparing(ProEconPowerstationInfoDay1::getRecordDate).reversed()).collect(Collectors.toList());
|
|
|
|
|
|
+ List<TurbineInfoDay> day1s3 = day1sMap2.get(mon2);
|
|
|
|
+ List<TurbineInfoDay> day1s4 = day1s3.stream().sorted(Comparator.comparing(TurbineInfoDay::getRecordDate).reversed()).collect(Collectors.toList());
|
|
LocalDate localDate = day1s3.get(0).getRecordDate().toInstant().atZone(ZoneOffset.UTC).toLocalDate();
|
|
LocalDate localDate = day1s3.get(0).getRecordDate().toInstant().atZone(ZoneOffset.UTC).toLocalDate();
|
|
int year1 = localDate.getYear();
|
|
int year1 = localDate.getYear();
|
|
String text = year1 + "-" + mon2;
|
|
String text = year1 + "-" + mon2;
|
|
@@ -2049,11 +2395,15 @@ public class EconomyPointHomePageService {
|
|
vexdl2.setText(text);
|
|
vexdl2.setText(text);
|
|
vessdl2.setText(text);
|
|
vessdl2.setText(text);
|
|
vefdl2.setText(text);
|
|
vefdl2.setText(text);
|
|
- vexdl2.setValue(day1s4.get(0).getYxdjclssdl().add(day1s4.get(0).getYxdtjssdl()));
|
|
|
|
- vessdl2.setValue(day1s4.get(0).getYgzssdl().add(day1s4.get(0).getYcnslgzssdl().add(day1s4.get(0).getYjxssdl().add(day1s4.get(0).getYcnsljxssdl()
|
|
|
|
- .add(day1s4.get(0).getYdjssdl().add(day1s4.get(0).getYqxjclssdl().add(day1s4.get(0).getYsdtjssdl().add(day1s4.get(0).getYxnssdl()
|
|
|
|
- .add(day1s4.get(0).getYxdtjssdl().add(day1s4.get(0).getYxdjclssdl().add(day1s4.get(0).getYcwsldwssdl().add(day1s4.get(0).getYcwsltqssdl()))))))))))));
|
|
|
|
- vefdl2.setValue(day1s4.get(0).getYfdl());
|
|
|
|
|
|
+ vexdl2.setValue(day1s4.stream().map(TurbineInfoDay::getXdss).reduce(BigDecimal.ZERO, BigDecimal::add));
|
|
|
|
+ vessdl2.setValue(day1s4.stream().map(TurbineInfoDay::getXdss).reduce(BigDecimal.ZERO, BigDecimal::add)
|
|
|
|
+ .add(day1s4.stream().map(TurbineInfoDay::getJhjxss).reduce(BigDecimal.ZERO, BigDecimal::add)
|
|
|
|
+ .add(day1s4.stream().map(TurbineInfoDay::getFjhjxss).reduce(BigDecimal.ZERO, BigDecimal::add)
|
|
|
|
+ .add(day1s4.stream().map(TurbineInfoDay::getSlss).reduce(BigDecimal.ZERO, BigDecimal::add))
|
|
|
|
+ .add(day1s4.stream().map(TurbineInfoDay::getXnss).reduce(BigDecimal.ZERO, BigDecimal::add))
|
|
|
|
+ .add(day1s4.stream().map(TurbineInfoDay::getDjss).reduce(BigDecimal.ZERO, BigDecimal::add))
|
|
|
|
+ .add(day1s4.stream().map(TurbineInfoDay::getGzss).reduce(BigDecimal.ZERO, BigDecimal::add)))));
|
|
|
|
+ vefdl2.setValue(day1s4.stream().map(TurbineInfoDay::getRfdl).reduce(BigDecimal.ZERO, BigDecimal::add));
|
|
vxdl2.add(vexdl2);
|
|
vxdl2.add(vexdl2);
|
|
vssdl2.add(vessdl2);
|
|
vssdl2.add(vessdl2);
|
|
vfdl2.add(vefdl2);
|
|
vfdl2.add(vefdl2);
|
|
@@ -2092,7 +2442,7 @@ public class EconomyPointHomePageService {
|
|
|
|
|
|
private List<ValueVo> value(int year, int month) {
|
|
private List<ValueVo> value(int year, int month) {
|
|
List<ValueVo> lv = new ArrayList<>();
|
|
List<ValueVo> lv = new ArrayList<>();
|
|
- for (int i = 1; i < month; i++) {
|
|
|
|
|
|
+ for (int i = 1; i <= month; i++) {
|
|
ValueVo vo = new ValueVo();
|
|
ValueVo vo = new ValueVo();
|
|
vo.setText(year + "-" + i);
|
|
vo.setText(year + "-" + i);
|
|
vo.setValue(new BigDecimal(0));
|
|
vo.setValue(new BigDecimal(0));
|
|
@@ -2210,6 +2560,7 @@ public class EconomyPointHomePageService {
|
|
public Map<String, Object> getGeneratingCapacity(String companyId) {
|
|
public Map<String, Object> getGeneratingCapacity(String companyId) {
|
|
Map<String, Object> allmap = new HashMap<>();
|
|
Map<String, Object> allmap = new HashMap<>();
|
|
QueryWrapper<StationInfoMin> qw = new QueryWrapper<>();
|
|
QueryWrapper<StationInfoMin> qw = new QueryWrapper<>();
|
|
|
|
+ DecimalFormat df = new DecimalFormat("#.##");
|
|
qw.lambda().ge(StationInfoMin::getRecordDate, LocalDateTime.now().toLocalDate().atStartOfDay())
|
|
qw.lambda().ge(StationInfoMin::getRecordDate, LocalDateTime.now().toLocalDate().atStartOfDay())
|
|
.le(StationInfoMin::getRecordDate, LocalDateTime.now())
|
|
.le(StationInfoMin::getRecordDate, LocalDateTime.now())
|
|
.orderByDesc(StationInfoMin::getRecordDate)
|
|
.orderByDesc(StationInfoMin::getRecordDate)
|
|
@@ -2267,30 +2618,34 @@ public class EconomyPointHomePageService {
|
|
ls.add(nfdl);
|
|
ls.add(nfdl);
|
|
generatingCapacity15min.put(nfdl.getName(), nfdl);
|
|
generatingCapacity15min.put(nfdl.getName(), nfdl);
|
|
} else {
|
|
} else {
|
|
|
|
+ if (null == lastCalDate || !lastCalDate.equals(LocalDate.now()) || null == yfdlCal) {
|
|
|
|
+ calFdl();
|
|
|
|
+ }
|
|
StationInfoMin day1 = day1s.get(0);
|
|
StationInfoMin day1 = day1s.get(0);
|
|
GeneratingCapacityVo rfdl = new GeneratingCapacityVo();
|
|
GeneratingCapacityVo rfdl = new GeneratingCapacityVo();
|
|
rfdl.setName("日发电量");
|
|
rfdl.setName("日发电量");
|
|
- rfdl.setValue(day1.getRfdl());
|
|
|
|
|
|
+ rfdl.setValue(new BigDecimal(day1.getRfdl()).setScale(2, RoundingMode.HALF_UP).doubleValue());
|
|
Double llgl = day1.getLlgl();
|
|
Double llgl = day1.getLlgl();
|
|
rfdl.setTotal(calDivide(llgl, 4.0));
|
|
rfdl.setTotal(calDivide(llgl, 4.0));
|
|
Double rbfb = calDivide(rfdl.getValue(), rfdl.getTotal());
|
|
Double rbfb = calDivide(rfdl.getValue(), rfdl.getTotal());
|
|
- rfdl.setBfb(rbfb * 100);
|
|
|
|
|
|
+ rfdl.setBfb(new BigDecimal(rbfb * 100).setScale(2, RoundingMode.HALF_UP).doubleValue());
|
|
ls.add(rfdl);
|
|
ls.add(rfdl);
|
|
generatingCapacity15min.put(rfdl.getName(), rfdl);
|
|
generatingCapacity15min.put(rfdl.getName(), rfdl);
|
|
GeneratingCapacityVo yfdl = new GeneratingCapacityVo();
|
|
GeneratingCapacityVo yfdl = new GeneratingCapacityVo();
|
|
yfdl.setName("月发电量");
|
|
yfdl.setName("月发电量");
|
|
- yfdl.setValue(CacheContext.yfdl.add(new BigDecimal(rfdl.getValue())).doubleValue());
|
|
|
|
- yfdl.setTotal(calDivide(CacheContext.yllfdl.add(new BigDecimal(rfdl.getTotal())).doubleValue(), 4.0));
|
|
|
|
|
|
+ yfdl.setValue(yfdlCal.add(new BigDecimal(rfdl.getValue())).setScale(2, RoundingMode.HALF_UP).doubleValue());
|
|
|
|
+ yfdl.setTotal(calDivide(yllfdlCal.add(new BigDecimal(rfdl.getTotal())).doubleValue(), 4.0));
|
|
Double ybfb = calDivide(yfdl.getValue(), yfdl.getTotal());
|
|
Double ybfb = calDivide(yfdl.getValue(), yfdl.getTotal());
|
|
- yfdl.setBfb(ybfb * 100);
|
|
|
|
|
|
+ yfdl.setBfb(new BigDecimal(ybfb).setScale(2, RoundingMode.HALF_UP).doubleValue());
|
|
ls.add(yfdl);
|
|
ls.add(yfdl);
|
|
generatingCapacity15min.put(yfdl.getName(), yfdl);
|
|
generatingCapacity15min.put(yfdl.getName(), yfdl);
|
|
GeneratingCapacityVo nfdl = new GeneratingCapacityVo();
|
|
GeneratingCapacityVo nfdl = new GeneratingCapacityVo();
|
|
nfdl.setName("年发电量");
|
|
nfdl.setName("年发电量");
|
|
- nfdl.setValue(CacheContext.nfdl.add(new BigDecimal(yfdl.getValue())).doubleValue());
|
|
|
|
- nfdl.setTotal(calDivide(CacheContext.nllfdl.add(new BigDecimal(yfdl.getTotal())).doubleValue(), 4.0));
|
|
|
|
|
|
+// nfdl.setValue(nfdlCal.add(new BigDecimal(yfdl.getValue())).doubleValue());
|
|
|
|
+ nfdl.setValue(nfdlCal.add(new BigDecimal(yfdl.getValue())).setScale(2, RoundingMode.HALF_UP).doubleValue());
|
|
|
|
+ nfdl.setTotal(calDivide(nllfdlCal.add(new BigDecimal(yfdl.getTotal())).doubleValue(), 4.0));
|
|
Double nbfb = calDivide(nfdl.getValue(), nfdl.getTotal());
|
|
Double nbfb = calDivide(nfdl.getValue(), nfdl.getTotal());
|
|
- nfdl.setBfb(nbfb * 100);
|
|
|
|
|
|
+ nfdl.setBfb(new BigDecimal(nbfb).setScale(2, RoundingMode.HALF_UP).doubleValue());
|
|
ls.add(nfdl);
|
|
ls.add(nfdl);
|
|
generatingCapacity15min.put(nfdl.getName(), nfdl);
|
|
generatingCapacity15min.put(nfdl.getName(), nfdl);
|
|
}
|
|
}
|
|
@@ -2369,4 +2724,52 @@ public class EconomyPointHomePageService {
|
|
return allmap;
|
|
return allmap;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ private void calFdl() {
|
|
|
|
+ LocalDate currentDate = LocalDate.now();
|
|
|
|
+// int year = currentDate.getYear();
|
|
|
|
+// int month = currentDate.getMonthValue();
|
|
|
|
+ DecimalFormat df = new DecimalFormat("#.##");
|
|
|
|
+ QueryWrapper<TurbineInfoDay> currentqw = new QueryWrapper<>();
|
|
|
|
+// currentqw.select("station_id,MAX(record_date) AS record_date,SUM(rfdl) AS rfdl,sum(llfdl) as llfdl")
|
|
|
|
+// .apply("to_char(record_date,'yyyy-MM') = {0}", year + "-" + String.format("%02d", month))
|
|
|
|
+// .like("station_id", "_FDC_")
|
|
|
|
+// .groupBy("to_char(record_date,'yyyy-MM'),station_id");
|
|
|
|
+ currentqw.select("station_id,SUM(rfdl) AS rfdl,sum(llfdl) as llfdl")
|
|
|
|
+ .ge("record_date", LocalDate.now().with(TemporalAdjusters.firstDayOfYear())) // 大于等于今年的第一天
|
|
|
|
+ .lt("record_date", LocalDate.now().atStartOfDay().toLocalDate()) // 小于今天0点的日期
|
|
|
|
+ .like("station_id", "_FDC_%") // 模糊查询 station_id
|
|
|
|
+ .groupBy("station_id");
|
|
|
|
+ List<TurbineInfoDay> monthData = iTurbineInfoDayService.list(currentqw);
|
|
|
|
+ yfdlCal = new BigDecimal(df.format(monthData.get(0).getRfdl()));
|
|
|
|
+ yllfdlCal = new BigDecimal(df.format(monthData.get(0).getLlfdl()));
|
|
|
|
+ currentqw.clear();
|
|
|
|
+// currentqw.select("station_id,MAX(record_date) AS record_date,SUM(rfdl) AS rfdl,sum(llfdl) as llfdl")
|
|
|
|
+// .ge("record_date", LocalDate.now().with(TemporalAdjusters.firstDayOfMonth()).minusMonths(1)) // 大于等于上个月的第一天
|
|
|
|
+// .lt("record_date", LocalDate.now().with(TemporalAdjusters.firstDayOfMonth())) // 小于本月的第一天
|
|
|
|
+// .like("station_id", "_FDC_%") // 模糊查询 station_id
|
|
|
|
+// .groupBy("station_id");
|
|
|
|
+ currentqw.select("station_id,MAX(record_date) AS record_date,SUM(rfdl) AS rfdl,SUM(llfdl) as llfdl")
|
|
|
|
+ .ge("record_date", LocalDate.now().with(TemporalAdjusters.firstDayOfMonth())) // 大于等于本月的第一天
|
|
|
|
+ .lt("record_date", LocalDate.now().plusDays(1).atStartOfDay().toLocalDate()) // 小于明天0点的日期
|
|
|
|
+ .like("station_id", "_FDC_%") // 模糊查询 station_id
|
|
|
|
+ .groupBy("station_id");
|
|
|
|
+ List<TurbineInfoDay> yearData = iTurbineInfoDayService.list(currentqw);
|
|
|
|
+ nfdlCal = new BigDecimal(df.format(yearData.get(0).getRfdl()));
|
|
|
|
+ nllfdlCal = new BigDecimal(df.format(yearData.get(0).getLlfdl()));
|
|
|
|
+ currentqw.clear();
|
|
|
|
+ currentqw.select("station_id,SUM(rfdl) AS rfdl,sum(llfdl) as llfdl")
|
|
|
|
+ .ge("record_date", LocalDate.now().with(TemporalAdjusters.previousOrSame(DayOfWeek.MONDAY))) // 大于等于本周一的日期
|
|
|
|
+ .lt("record_date", LocalDate.now().atStartOfDay().toLocalDate()) // 小于今天0点的日期
|
|
|
|
+ .like("station_id", "_FDC_") // 模糊查询 station_id
|
|
|
|
+ .groupBy("station_id");
|
|
|
|
+ List<TurbineInfoDay> weekData = iTurbineInfoDayService.list(currentqw);
|
|
|
|
+ if (null == weekData || weekData.isEmpty()) {
|
|
|
|
+ weekFdlCal = new BigDecimal("0");
|
|
|
|
+ } else {
|
|
|
|
+ weekFdlCal = new BigDecimal(df.format(weekData.get(0).getRfdl()));
|
|
|
|
+ }
|
|
|
|
+ lastCalDate = LocalDate.now();
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|