|
@@ -144,6 +144,8 @@ public class EconomyPointHomePageService {
|
|
|
private BigDecimal nllfdlCal = null;
|
|
|
private LocalDate lastCalDate;
|
|
|
|
|
|
+ private Map<LocalDate, BigDecimal> fnlyl = new HashMap<>();
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 经济运行首页聚合方法
|
|
@@ -1570,270 +1572,13 @@ public class EconomyPointHomePageService {
|
|
|
}
|
|
|
|
|
|
|
|
|
-// public Map<String, Object> getGeneratingCapacity2(String companyId) {
|
|
|
-// Map<String, Object> allmap = new HashMap<>();
|
|
|
-// List<GeneratingCapacityVo> ls = new ArrayList<>();
|
|
|
-// LocalDate now = LocalDate.now();
|
|
|
-// QueryWrapper<ProEconPowerstationInfoDay1> qw = new QueryWrapper<>();
|
|
|
-// qw.lambda().eq(ProEconPowerstationInfoDay1::getRecordDate, now)
|
|
|
-// .eq(ProEconPowerstationInfoDay1::getForeignKeyId, companyId);
|
|
|
-// List<ProEconPowerstationInfoDay1> day1s = proEconPowerstationInfoDay1Service.list(qw);
|
|
|
-// for (ProEconPowerstationInfoDay1 day1 : day1s) {
|
|
|
-// GeneratingCapacityVo rfdl = new GeneratingCapacityVo();
|
|
|
-// rfdl.setName("日发电量");
|
|
|
-// rfdl.setValue(day1.getRfdl());
|
|
|
-// rfdl.setTotal(day1.getRllfdl());
|
|
|
-// BigDecimal rbfb = (day1.getRfdl().compareTo(BigDecimal.ZERO) == 0 || day1.getRllfdl().compareTo(BigDecimal.ZERO) == 0)
|
|
|
-// ? BigDecimal.ZERO
|
|
|
-// : day1.getRllfdl().divide(day1.getRfdl(), 2, RoundingMode.HALF_UP).multiply(new BigDecimal("100"));
|
|
|
-// rfdl.setBfb(rbfb);
|
|
|
-// rfdl.setBfb(rbfb);
|
|
|
-// ls.add(rfdl);
|
|
|
-//
|
|
|
-// GeneratingCapacityVo yfdl = new GeneratingCapacityVo();
|
|
|
-// yfdl.setName("月发电量");
|
|
|
-// yfdl.setValue(day1.getYfdl());
|
|
|
-// yfdl.setTotal(day1.getYllfdl());
|
|
|
-// BigDecimal ybfb = (day1.getYfdl().compareTo(BigDecimal.ZERO) == 0 || day1.getYllfdl().compareTo(BigDecimal.ZERO) == 0)
|
|
|
-// ? BigDecimal.ZERO
|
|
|
-// : day1.getYllfdl().divide(day1.getYfdl(), 2, RoundingMode.HALF_UP).multiply(new BigDecimal("100"));
|
|
|
-// rfdl.setBfb(rbfb);
|
|
|
-// yfdl.setBfb(ybfb);
|
|
|
-// ls.add(yfdl);
|
|
|
-//
|
|
|
-// GeneratingCapacityVo nfdl = new GeneratingCapacityVo();
|
|
|
-// nfdl.setName("年发电量");
|
|
|
-// nfdl.setValue(day1.getNfdl().divide(new BigDecimal(1000)));
|
|
|
-// nfdl.setTotal(day1.getNllfdl().divide(new BigDecimal(1000)));
|
|
|
-// BigDecimal nbfb = (day1.getNfdl().compareTo(BigDecimal.ZERO) == 0 || day1.getNllfdl().compareTo(BigDecimal.ZERO) == 0)
|
|
|
-// ? BigDecimal.ZERO
|
|
|
-// : day1.getNllfdl().divide(day1.getNfdl(), 2, RoundingMode.HALF_UP).multiply(new BigDecimal("100"));
|
|
|
-// rfdl.setBfb(rbfb);
|
|
|
-// nfdl.setBfb(nbfb);
|
|
|
-// ls.add(nfdl);
|
|
|
-//
|
|
|
-// Map<String, Object> zbtqdb = new HashMap<>();
|
|
|
-// List<ColumnVo> ls1 = new ArrayList<>();
|
|
|
-// ColumnVo cl1 = new ColumnVo();
|
|
|
-// cl1.setName("指标名称");
|
|
|
-// cl1.setField("wtId");
|
|
|
-// ColumnVo cl2 = new ColumnVo();
|
|
|
-// cl2.setName(String.valueOf(LocalDate.now().getYear()));
|
|
|
-// cl2.setField("recodedate");
|
|
|
-// ColumnVo cl3 = new ColumnVo();
|
|
|
-// cl3.setName(String.valueOf(LocalDate.now().getYear() - 1));
|
|
|
-// cl3.setField("recodedate2");
|
|
|
-// ColumnVo cl4 = new ColumnVo();
|
|
|
-// cl4.setName("涨跌%");
|
|
|
-// cl4.setField("operation");
|
|
|
-// ls1.add(cl1);
|
|
|
-// ls1.add(cl2);
|
|
|
-// ls1.add(cl3);
|
|
|
-// ls1.add(cl4);
|
|
|
-//
|
|
|
-// List<ComparetqVo> ls2 = new ArrayList<>();
|
|
|
-// ComparetqVo cv = new ComparetqVo();
|
|
|
-// cv.setWtId("发电量");
|
|
|
-// cv.setRecodedate(String.valueOf(day1.getNfdl().divide(new BigDecimal(1000))));
|
|
|
-// cv.setRecodedate2(String.valueOf(0));
|
|
|
-// cv.setOperation("100");
|
|
|
-// ComparetqVo cv1 = new ComparetqVo();
|
|
|
-// cv1.setWtId("上网电量");
|
|
|
-// cv1.setRecodedate(String.valueOf(0.00));
|
|
|
-// cv1.setRecodedate2(String.valueOf(0));
|
|
|
-// cv1.setOperation("0");
|
|
|
-// ComparetqVo cv2 = new ComparetqVo();
|
|
|
-// cv2.setWtId("网购电量");
|
|
|
-// cv2.setRecodedate(String.valueOf(0.00));
|
|
|
-// cv2.setRecodedate2(String.valueOf(0));
|
|
|
-// cv2.setOperation("0");
|
|
|
-// ComparetqVo cv3 = new ComparetqVo();
|
|
|
-// cv3.setWtId("损失电量");
|
|
|
-// cv3.setRecodedate(String.valueOf(0.00));
|
|
|
-// cv3.setRecodedate2(String.valueOf(0));
|
|
|
-// cv3.setOperation("0");
|
|
|
-// ComparetqVo cv4 = new ComparetqVo();
|
|
|
-// cv4.setWtId("场用电量");
|
|
|
-// cv4.setRecodedate(String.valueOf(0.00));
|
|
|
-// cv4.setRecodedate2(String.valueOf(0));
|
|
|
-// cv4.setOperation("0");
|
|
|
-// ls2.add(cv);
|
|
|
-// ls2.add(cv1);
|
|
|
-// ls2.add(cv2);
|
|
|
-// ls2.add(cv3);
|
|
|
-// ls2.add(cv4);
|
|
|
-//
|
|
|
-// zbtqdb.put("column", ls1);
|
|
|
-// zbtqdb.put("data", ls2);
|
|
|
-// allmap.put("fdl", ls);
|
|
|
-// allmap.put("zbtqdb", zbtqdb);
|
|
|
-// }
|
|
|
-//
|
|
|
-// return allmap;
|
|
|
-// }
|
|
|
-
|
|
|
-
|
|
|
-// public Map<String, Object> getHomeRight(String companyId) {
|
|
|
-// Map<String, Object> allmap = new HashMap<>();
|
|
|
-// LocalDate now = LocalDate.now();
|
|
|
-// Date currentDate = DateUtils.getCurrentDate();
|
|
|
-// Date monthFirst = DateUtils.getMonthFirst(currentDate);
|
|
|
-// 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<>();
|
|
|
-// for (ProEconPowerstationInfoDay1 day1 : day1s) {
|
|
|
-// Map<String, Object> zbtqdb = new HashMap<>();
|
|
|
-// String[] title = {"排名", "名称", "风能利用率%", "去年同期%", "涨跌%"};
|
|
|
-// List<ColumnVo> ls1 = getTitle(title);
|
|
|
-// String[] title2 = {"排名", "名称", "设备利用率%", "去年同期%", "涨跌%"};
|
|
|
-// List<ColumnVo> ls3 = getTitle(title2);
|
|
|
-// List<HomeRightVo> ls2 = new ArrayList<>();
|
|
|
-// HomeRightVo hv = new HomeRightVo();
|
|
|
-// hv.setIndex("1");
|
|
|
-// hv.setName("惠安风场");
|
|
|
-// BigDecimal fnlyl = (day1.getNfdl().compareTo(BigDecimal.ZERO) == 0 || day1.getNllfdl().compareTo(BigDecimal.ZERO) == 0)
|
|
|
-// ? BigDecimal.ZERO
|
|
|
-// : day1.getNfdl().divide(day1.getNllfdl(), 2, RoundingMode.HALF_UP).multiply(new BigDecimal("100"));
|
|
|
-// hv.setFnlyl(String.valueOf(fnlyl));
|
|
|
-// hv.setYearTq("0");
|
|
|
-// hv.setOperation(String.valueOf(fnlyl));
|
|
|
-// ls2.add(hv);
|
|
|
-//
|
|
|
-// zbtqdb.put("column", ls1);
|
|
|
-// zbtqdb.put("data", ls2);
|
|
|
-// sbklyl.put("column", ls3);
|
|
|
-// allmap.put("fnlyl", zbtqdb);
|
|
|
-//
|
|
|
-// }
|
|
|
-//
|
|
|
-// QueryWrapper<ProEconPowerstationInfoDay2> qw2 = new QueryWrapper<>();
|
|
|
-// qw2.lambda().eq(ProEconPowerstationInfoDay2::getRecordDate, now)
|
|
|
-// .eq(ProEconPowerstationInfoDay2::getForeignKeyId, companyId);
|
|
|
-// List<ProEconPowerstationInfoDay2> list = iProEconPowerstationInfoDay2Service.list(qw2);
|
|
|
-// for (ProEconPowerstationInfoDay2 day2 : list) {
|
|
|
-// List<HomeRightVo> ls3 = new ArrayList<>();
|
|
|
-// HomeRightVo hv2 = new HomeRightVo();
|
|
|
-// hv2.setIndex("1");
|
|
|
-// hv2.setName("惠安风场");
|
|
|
-// BigDecimal hoursDiffDecimal = BigDecimal.valueOf(hoursDiff);
|
|
|
-// BigDecimal result = hoursDiffDecimal.subtract(day2.getNhjgztjxs()).subtract(day2.getNhjjxtjxs());
|
|
|
-// BigDecimal ysbklyl = result.divide(hoursDiffDecimal, 2, RoundingMode.HALF_UP).multiply(new BigDecimal(100));
|
|
|
-// hv2.setFnlyl(String.valueOf(ysbklyl));
|
|
|
-// hv2.setYearTq("0");
|
|
|
-// hv2.setOperation(String.valueOf(ysbklyl));
|
|
|
-// ls3.add(hv2);
|
|
|
-// sbklyl.put("data", ls3);
|
|
|
-// allmap.put("sbklyl", sbklyl);
|
|
|
-// }
|
|
|
-//
|
|
|
-// Map<String, Object> lgxzkh = new HashMap<>();
|
|
|
-// String[] title = {"排名", "名称", "考核分数", "去年同期%", "涨跌%"};
|
|
|
-// List<ColumnVo> ls1 = getTitle(title);
|
|
|
-// List<HomeRightVo> ls2 = new ArrayList<>();
|
|
|
-// HomeRightVo hv = new HomeRightVo();
|
|
|
-// hv.setIndex("1");
|
|
|
-// hv.setName("惠安风场");
|
|
|
-// hv.setFnlyl("98");
|
|
|
-// hv.setYearTq("0");
|
|
|
-// hv.setOperation("100");
|
|
|
-// ls2.add(hv);
|
|
|
-//
|
|
|
-// lgxzkh.put("column", ls1);
|
|
|
-// lgxzkh.put("data", ls2);
|
|
|
-// allmap.put("lgxzkh", lgxzkh);
|
|
|
-//
|
|
|
-// return allmap;
|
|
|
-//
|
|
|
-// }
|
|
|
-
|
|
|
-// public Map<String, Object> getHomeRight(String companyId) {
|
|
|
-// Map<String, Object> allmap = new HashMap<>();
|
|
|
-// LocalDate now = LocalDate.now();
|
|
|
-// Date currentDate = DateUtils.getCurrentDate();
|
|
|
-// Date monthFirst = DateUtils.getMonthFirst(currentDate);
|
|
|
-// 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<>();
|
|
|
-// for (ProEconPowerstationInfoDay1 day1 : day1s) {
|
|
|
-// Map<String, Object> zbtqdb = new HashMap<>();
|
|
|
-// String[] title = {"排名", "名称", "风能利用率%", "去年同期%", "涨跌%"};
|
|
|
-// List<ColumnVo> ls1 = getTitle(title);
|
|
|
-// String[] title2 = {"排名", "名称", "设备利用率%", "去年同期%", "涨跌%"};
|
|
|
-// List<ColumnVo> ls3 = getTitle(title2);
|
|
|
-// List<HomeRightVo> ls2 = new ArrayList<>();
|
|
|
-// HomeRightVo hv = new HomeRightVo();
|
|
|
-// hv.setIndex("1");
|
|
|
-// hv.setName("惠安风场");
|
|
|
-// BigDecimal fnlyl = (day1.getNfdl().compareTo(BigDecimal.ZERO) == 0 || day1.getNllfdl().compareTo(BigDecimal.ZERO) == 0)
|
|
|
-// ? BigDecimal.ZERO
|
|
|
-// : day1.getNfdl().divide(day1.getNllfdl(), 2, RoundingMode.HALF_UP).multiply(new BigDecimal("100"));
|
|
|
-// hv.setFnlyl(String.valueOf(fnlyl));
|
|
|
-// hv.setYearTq("0");
|
|
|
-// hv.setOperation(String.valueOf(fnlyl));
|
|
|
-// ls2.add(hv);
|
|
|
-//
|
|
|
-// zbtqdb.put("column", ls1);
|
|
|
-// zbtqdb.put("data", ls2);
|
|
|
-// sbklyl.put("column", ls3);
|
|
|
-// allmap.put("fnlyl", zbtqdb);
|
|
|
-//
|
|
|
-// }
|
|
|
-//
|
|
|
-// QueryWrapper<ProEconPowerstationInfoDay2> qw2 = new QueryWrapper<>();
|
|
|
-// qw2.lambda().eq(ProEconPowerstationInfoDay2::getRecordDate, now)
|
|
|
-// .eq(ProEconPowerstationInfoDay2::getForeignKeyId, companyId);
|
|
|
-// List<ProEconPowerstationInfoDay2> list = iProEconPowerstationInfoDay2Service.list(qw2);
|
|
|
-// for (ProEconPowerstationInfoDay2 day2 : list) {
|
|
|
-// List<HomeRightVo> ls3 = new ArrayList<>();
|
|
|
-// HomeRightVo hv2 = new HomeRightVo();
|
|
|
-// hv2.setIndex("1");
|
|
|
-// hv2.setName("惠安风场");
|
|
|
-// BigDecimal hoursDiffDecimal = BigDecimal.valueOf(hoursDiff);
|
|
|
-// BigDecimal result = hoursDiffDecimal.subtract(day2.getNhjgztjxs()).subtract(day2.getNhjjxtjxs());
|
|
|
-// BigDecimal ysbklyl = result.divide(hoursDiffDecimal, 2, RoundingMode.HALF_UP).multiply(new BigDecimal(100));
|
|
|
-// hv2.setFnlyl(String.valueOf(ysbklyl));
|
|
|
-// hv2.setYearTq("0");
|
|
|
-// hv2.setOperation(String.valueOf(ysbklyl));
|
|
|
-// ls3.add(hv2);
|
|
|
-// sbklyl.put("data", ls3);
|
|
|
-// allmap.put("sbklyl", sbklyl);
|
|
|
-// }
|
|
|
-//
|
|
|
-// Map<String, Object> lgxzkh = new HashMap<>();
|
|
|
-// String[] title = {"排名", "名称", "考核分数", "去年同期%", "涨跌%"};
|
|
|
-// List<ColumnVo> ls1 = getTitle(title);
|
|
|
-// List<HomeRightVo> ls2 = new ArrayList<>();
|
|
|
-// HomeRightVo hv = new HomeRightVo();
|
|
|
-// hv.setIndex("1");
|
|
|
-// hv.setName("惠安风场");
|
|
|
-// hv.setFnlyl("98");
|
|
|
-// hv.setYearTq("0");
|
|
|
-// hv.setOperation("100");
|
|
|
-// ls2.add(hv);
|
|
|
-//
|
|
|
-// lgxzkh.put("column", ls1);
|
|
|
-// lgxzkh.put("data", ls2);
|
|
|
-// allmap.put("lgxzkh", lgxzkh);
|
|
|
-//
|
|
|
-// return allmap;
|
|
|
-//
|
|
|
-// }
|
|
|
-
|
|
|
-
|
|
|
public Map<String, Object> getHomeRight(String companyId) {
|
|
|
Map<String, Object> allmap = new HashMap<>();
|
|
|
- LocalDate now = LocalDate.now();
|
|
|
- Date currentDate = DateUtils.getCurrentDate();
|
|
|
- Date monthFirst = DateUtils.getMonthFirst(currentDate);
|
|
|
- double hoursDiff = DateUtils.hoursDiff2(currentDate, monthFirst);
|
|
|
Map<String, Object> sbklyl = new HashMap<>();
|
|
|
- GeneratingCapacityVo genCap = generatingCapacity15min.get("年发电量");
|
|
|
+ LocalDate nowStart = LocalDate.now().with(TemporalAdjusters.firstDayOfYear());
|
|
|
+ LocalDate nowEnd = LocalDate.now();
|
|
|
+ LocalDate lastYearStartDate = LocalDate.now().minusYears(1).with(TemporalAdjusters.firstDayOfYear());
|
|
|
+ LocalDate lastYearEndDate = LocalDate.now().minusYears(1).atStartOfDay().toLocalDate();
|
|
|
|
|
|
Map<String, Object> zbtqdb = new HashMap<>();
|
|
|
String[] title = {"排名", "名称", "风能利用率%", "去年同期%", "涨跌%"};
|
|
@@ -1843,11 +1588,32 @@ public class EconomyPointHomePageService {
|
|
|
List<HomeRightVo> ls2 = new ArrayList<>();
|
|
|
HomeRightVo hv = new HomeRightVo();
|
|
|
hv.setIndex("1");
|
|
|
- hv.setName("惠安风场");
|
|
|
- Double fnlyl = calDivide(genCap.getValue(), genCap.getTotal());
|
|
|
- hv.setFnlyl(String.valueOf(fnlyl));
|
|
|
- hv.setYearTq("0");
|
|
|
- hv.setOperation(String.valueOf(fnlyl));
|
|
|
+ hv.setName(CacheContext.wplsf.get(0).getName());
|
|
|
+
|
|
|
+ List<TurbineInfoDay> currentResults1 = getFnlyl("*", nowStart, nowEnd);
|
|
|
+ if (null == currentResults1 || currentResults1.isEmpty()) {
|
|
|
+ hv.setFnlyl("0.00");
|
|
|
+ } else {
|
|
|
+ List<TurbineInfoDay> currentResults = getFnlyl("AVG(fnlyl) AS fnlyl", nowStart, nowEnd);
|
|
|
+ hv.setFnlyl(String.format("%.2f", currentResults.get(0).getFnlyl()));
|
|
|
+ }
|
|
|
+ List<TurbineInfoDay> lastYearResults1 = getFnlyl("*", lastYearStartDate, lastYearEndDate);
|
|
|
+ if (null == lastYearResults1 || lastYearResults1.isEmpty()) {
|
|
|
+ hv.setYearTq("0.00");
|
|
|
+ } else {
|
|
|
+ List<TurbineInfoDay> lastYearResults = getFnlyl("AVG(fnlyl) AS fnlyl", lastYearStartDate, lastYearEndDate);
|
|
|
+ hv.setYearTq(String.format("%.2f", lastYearResults.get(0).getFnlyl()));
|
|
|
+ }
|
|
|
+ if (Double.parseDouble(hv.getFnlyl()) == 0 && Double.parseDouble(hv.getYearTq()) == 0) {
|
|
|
+ hv.setOperation("0.00");
|
|
|
+ } else if (Double.parseDouble(hv.getYearTq()) == 0) {
|
|
|
+ hv.setOperation("100");
|
|
|
+ } else if (Double.parseDouble(hv.getFnlyl()) == 0) {
|
|
|
+ hv.setOperation("-100");
|
|
|
+ } else {
|
|
|
+ Double operation = calDivide(Double.parseDouble(hv.getFnlyl()) - Double.parseDouble(hv.getYearTq()), Double.valueOf(hv.getYearTq()));
|
|
|
+ hv.setOperation(String.valueOf(operation));
|
|
|
+ }
|
|
|
ls2.add(hv);
|
|
|
|
|
|
zbtqdb.put("column", ls1);
|
|
@@ -1855,27 +1621,50 @@ public class EconomyPointHomePageService {
|
|
|
sbklyl.put("column", ls3);
|
|
|
allmap.put("fnlyl", zbtqdb);
|
|
|
|
|
|
- QueryWrapper<ProEconPowerstationInfoDay2> qw2 = new QueryWrapper<>();
|
|
|
- qw2.lambda().eq(ProEconPowerstationInfoDay2::getRecordDate, now)
|
|
|
- .eq(ProEconPowerstationInfoDay2::getForeignKeyId, companyId);
|
|
|
- List<ProEconPowerstationInfoDay2> list = iProEconPowerstationInfoDay2Service.list(qw2);
|
|
|
- for (ProEconPowerstationInfoDay2 day2 : list) {
|
|
|
- List<HomeRightVo> ls4 = new ArrayList<>();
|
|
|
- HomeRightVo hv2 = new HomeRightVo();
|
|
|
- hv2.setIndex("1");
|
|
|
- hv2.setName("惠安风场");
|
|
|
- BigDecimal hoursDiffDecimal = BigDecimal.valueOf(hoursDiff);
|
|
|
- BigDecimal result = hoursDiffDecimal.subtract(day2.getNhjgztjxs()).subtract(day2.getNhjjxtjxs());
|
|
|
- BigDecimal ysbklyl = result.divide(hoursDiffDecimal, 2, RoundingMode.HALF_UP).multiply(new BigDecimal(100));
|
|
|
- hv2.setFnlyl(String.valueOf(ysbklyl));
|
|
|
- hv2.setYearTq("0");
|
|
|
- hv2.setOperation(String.valueOf(ysbklyl));
|
|
|
- ls4.add(hv2);
|
|
|
- sbklyl.put("data", ls4);
|
|
|
- allmap.put("sbklyl", sbklyl);
|
|
|
+ List<HomeRightVo> ls4 = new ArrayList<>();
|
|
|
+ HomeRightVo hv2 = new HomeRightVo();
|
|
|
+ hv2.setIndex("1");
|
|
|
+ hv2.setName(CacheContext.wplsf.get(0).getName());
|
|
|
+
|
|
|
+ List<TurbineInfoDay> currentSbResults1 = getFnlyl("*", nowStart, nowEnd);
|
|
|
+ if (null == currentSbResults1 || currentSbResults1.isEmpty()) {
|
|
|
+ hv2.setFnlyl("0.00");
|
|
|
+ } else {
|
|
|
+ List<TurbineInfoDay> currentSbResults = getFnlyl("AVG(klyl) AS klyl", nowStart, nowEnd);
|
|
|
+ hv2.setFnlyl(String.format("%.2f", currentSbResults.get(0).getKlyl()));
|
|
|
}
|
|
|
+ List<TurbineInfoDay> lastYearQwSb1 = getFnlyl("*", lastYearStartDate, lastYearEndDate);
|
|
|
+ if (null == lastYearQwSb1 || lastYearQwSb1.isEmpty()) {
|
|
|
+ hv2.setYearTq("0.00");
|
|
|
+ } else {
|
|
|
+ List<TurbineInfoDay> lastYearQwSb = getFnlyl("AVG(klyl) AS klyl", lastYearStartDate, lastYearEndDate);
|
|
|
+ hv2.setYearTq(String.format("%.2f", lastYearQwSb.get(0).getKlyl()));
|
|
|
+ }
|
|
|
+ if (Double.parseDouble(hv2.getFnlyl()) == 0 && Double.parseDouble(hv2.getYearTq()) == 0) {
|
|
|
+ hv2.setOperation("0.00");
|
|
|
+ } else if (Double.parseDouble(hv2.getYearTq()) == 0) {
|
|
|
+ hv2.setOperation("100");
|
|
|
+ } else if (Double.parseDouble(hv2.getFnlyl()) == 0) {
|
|
|
+ hv2.setOperation("-100");
|
|
|
+ } else {
|
|
|
+ Double aDouble1 = calDivide(Double.parseDouble(hv2.getFnlyl()) - Double.parseDouble(hv2.getYearTq()), Double.valueOf(hv2.getYearTq()));
|
|
|
+ hv2.setOperation(String.valueOf(aDouble1));
|
|
|
+ }
|
|
|
+ ls4.add(hv2);
|
|
|
+ sbklyl.put("data", ls4);
|
|
|
+ allmap.put("sbklyl", sbklyl);
|
|
|
+
|
|
|
return allmap;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
+ private List<TurbineInfoDay> getFnlyl(String select, LocalDate start, LocalDate end) {
|
|
|
+ QueryWrapper<TurbineInfoDay> currentQw = new QueryWrapper<>();
|
|
|
+ currentQw.clear();
|
|
|
+ currentQw.select(select)
|
|
|
+ .ge("record_date", start)
|
|
|
+ .lt("record_date", end);
|
|
|
+ return iTurbineInfoDayService.list(currentQw);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -1895,392 +1684,30 @@ 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 {
|
|
|
Integer month = LocalDate.now().getMonthValue();
|
|
|
int year = LocalDate.now().getYear();
|
|
|
Map<String, Object> allmap = new HashMap<>();
|
|
|
PlanDataVo pd = new PlanDataVo();
|
|
|
+ pd.setZfdlsj(weekFdlCal.add(new BigDecimal(generatingCapacity15min.get("日发电量").getValue())).doubleValue());
|
|
|
+ pd.setYfdlsj(yfdlCal.add(new BigDecimal(generatingCapacity15min.get("月发电量").getValue())).doubleValue());
|
|
|
+ pd.setNfdlsj(nfdlCal.add(new BigDecimal(generatingCapacity15min.get("年发电量").getValue())).doubleValue());
|
|
|
//计划发电量
|
|
|
List<ProBasicProjectPlan> list = iProBasicProjectPlanService.list();
|
|
|
-
|
|
|
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 (pp.isEmpty()) {
|
|
|
- return allmap;
|
|
|
+ pd.setZfdljh(0.0);
|
|
|
+ pd.setYfdljh(0.0);
|
|
|
+ } else {
|
|
|
+ pd.setZfdljh(pp.get(0).getGeneratingCapacity() / 4);
|
|
|
+ pd.setYfdljh(pp.get(0).getGeneratingCapacity());
|
|
|
}
|
|
|
- pd.setZfdljh(pp.get(0).getGeneratingCapacity() / 4);
|
|
|
- pd.setZfdlsj(weekFdlCal.add(new BigDecimal(generatingCapacity15min.get("日发电量").getValue())).doubleValue());
|
|
|
Double zjd = calDivide(pd.getZfdlsj(), pd.getZfdljh());
|
|
|
pd.setZjd(zjd * 100);
|
|
|
pd.setZwcl(zjd);
|
|
|
- pd.setYfdljh(pp.get(0).getGeneratingCapacity());
|
|
|
- pd.setYfdlsj(yfdlCal.add(new BigDecimal(generatingCapacity15min.get("日发电量").getValue())).doubleValue());
|
|
|
Double yjd = calDivide(pd.getYfdlsj(), pd.getYfdljh());
|
|
|
pd.setYjd(yjd * 100);
|
|
|
pd.setYwcl(yjd);
|
|
@@ -2288,8 +1715,11 @@ public class EconomyPointHomePageService {
|
|
|
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(nfdlCal.add(new BigDecimal(generatingCapacity15min.get("日发电量").getValue())).doubleValue());
|
|
|
+ if (pp2.isEmpty()) {
|
|
|
+ pd.setNfdljh(0.0);
|
|
|
+ } else {
|
|
|
+ pd.setNfdljh(pp2.get(0).getGeneratingCapacity());
|
|
|
+ }
|
|
|
Double njd = calDivide(pd.getNfdlsj(), pd.getNfdljh());
|
|
|
pd.setNjd(njd * 100);
|
|
|
pd.setNwcl(njd);
|
|
@@ -2379,9 +1809,9 @@ public class EconomyPointHomePageService {
|
|
|
ptssdl2.setValue(value);
|
|
|
ptfdl2.setValue(value);
|
|
|
} else {
|
|
|
- List<ValueVo> vxdl2 = new ArrayList<>();
|
|
|
- List<ValueVo> vssdl2 = new ArrayList<>();
|
|
|
- List<ValueVo> vfdl2 = new ArrayList<>();
|
|
|
+ List<ValueVo> vxdl2 = value(year, 12);
|
|
|
+ List<ValueVo> vssdl2 = value(year, 12);
|
|
|
+ List<ValueVo> vfdl2 = value(year, 12);
|
|
|
Map<Integer, List<TurbineInfoDay>> day1sMap2 = lastYear.stream().collect(Collectors.groupingBy(record -> record.getRecordDate().getMonth() + 1));
|
|
|
for (Integer mon2 : day1sMap2.keySet()) {
|
|
|
List<TurbineInfoDay> day1s3 = day1sMap2.get(mon2);
|
|
@@ -2410,7 +1840,7 @@ public class EconomyPointHomePageService {
|
|
|
}
|
|
|
ptxdl2.setValue(vxdl2);
|
|
|
ptssdl2.setValue(vssdl2);
|
|
|
- ptxdl2.setValue(vfdl2);
|
|
|
+ ptfdl2.setValue(vfdl2);
|
|
|
}
|
|
|
xdl.add(ptxdl2);
|
|
|
ssdl.add(ptssdl2);
|
|
@@ -2453,110 +1883,6 @@ public class EconomyPointHomePageService {
|
|
|
}
|
|
|
|
|
|
|
|
|
-// public Map<String, Object> getGeneratingCapacity(String companyId) {
|
|
|
-// Map<String, Object> allmap = new HashMap<>();
|
|
|
-// List<GeneratingCapacityVo> ls = new ArrayList<>();
|
|
|
-// LocalDate now = LocalDate.now();
|
|
|
-// LocalDate tomorrow = LocalDate.now().plusDays(1);
|
|
|
-// QueryWrapper<StationInfoMin> qw = new QueryWrapper<>();
|
|
|
-// qw.lambda().between(StationInfoMin::getRecordDate, now,tomorrow)
|
|
|
-// .eq(StationInfoMin::getStationId, companyId)
|
|
|
-// .orderByDesc(StationInfoMin::getRecordDate);
|
|
|
-// List<StationInfoMin> day1s = iStationInfoMinService.list(qw);
|
|
|
-// StationInfoMin day1 = day1s.get(0);
|
|
|
-// GeneratingCapacityVo rfdl = new GeneratingCapacityVo();
|
|
|
-// rfdl.setName("日发电量");
|
|
|
-//// rfdl.setValue(day1.getRfdl());
|
|
|
-//// rfdl.setTotal(day1.getRllfdl());
|
|
|
-//// Double rbfb = (day1.getRfdl()== 0 || day1.getRllfdl() == 0)
|
|
|
-//// ? 0.0
|
|
|
-//// : calDivide(day1.getRllfdl(), day1.getRfdl());
|
|
|
-//// rfdl.setBfb(rbfb);
|
|
|
-// ls.add(rfdl);
|
|
|
-//
|
|
|
-// GeneratingCapacityVo yfdl = new GeneratingCapacityVo();
|
|
|
-// yfdl.setName("月发电量");
|
|
|
-//// yfdl.setValue(day1.getYfdl());
|
|
|
-//// yfdl.setTotal(day1.getYllfdl());
|
|
|
-//// BigDecimal ybfb = (day1.getYfdl().compareTo(BigDecimal.ZERO) == 0 || day1.getYllfdl().compareTo(BigDecimal.ZERO) == 0)
|
|
|
-//// ? BigDecimal.ZERO
|
|
|
-//// : day1.getYllfdl().divide(day1.getYfdl(), 2, RoundingMode.HALF_UP).multiply(new BigDecimal("100"));
|
|
|
-//// rfdl.setBfb(rbfb);
|
|
|
-//// yfdl.setBfb(ybfb);
|
|
|
-//// ls.add(yfdl);
|
|
|
-////
|
|
|
-//// GeneratingCapacityVo nfdl = new GeneratingCapacityVo();
|
|
|
-//// nfdl.setName("年发电量");
|
|
|
-//// nfdl.setValue(day1.getNfdl().divide(new BigDecimal(1000)));
|
|
|
-//// nfdl.setTotal(day1.getNllfdl().divide(new BigDecimal(1000)));
|
|
|
-//// BigDecimal nbfb = (day1.getNfdl().compareTo(BigDecimal.ZERO) == 0 || day1.getNllfdl().compareTo(BigDecimal.ZERO) == 0)
|
|
|
-//// ? BigDecimal.ZERO
|
|
|
-//// : day1.getNllfdl().divide(day1.getNfdl(), 2, RoundingMode.HALF_UP).multiply(new BigDecimal("100"));
|
|
|
-//// rfdl.setBfb(rbfb);
|
|
|
-//// nfdl.setBfb(nbfb);
|
|
|
-//// ls.add(nfdl);
|
|
|
-////
|
|
|
-//// Map<String, Object> zbtqdb = new HashMap<>();
|
|
|
-//// List<ColumnVo> ls1 = new ArrayList<>();
|
|
|
-//// ColumnVo cl1 = new ColumnVo();
|
|
|
-//// cl1.setName("指标名称");
|
|
|
-//// cl1.setField("wtId");
|
|
|
-//// ColumnVo cl2 = new ColumnVo();
|
|
|
-//// cl2.setName(String.valueOf(LocalDate.now().getYear()));
|
|
|
-//// cl2.setField("recodedate");
|
|
|
-//// ColumnVo cl3 = new ColumnVo();
|
|
|
-//// cl3.setName(String.valueOf(LocalDate.now().getYear() - 1));
|
|
|
-//// cl3.setField("recodedate2");
|
|
|
-//// ColumnVo cl4 = new ColumnVo();
|
|
|
-//// cl4.setName("涨跌%");
|
|
|
-//// cl4.setField("operation");
|
|
|
-//// ls1.add(cl1);
|
|
|
-//// ls1.add(cl2);
|
|
|
-//// ls1.add(cl3);
|
|
|
-//// ls1.add(cl4);
|
|
|
-////
|
|
|
-//// List<ComparetqVo> ls2 = new ArrayList<>();
|
|
|
-//// ComparetqVo cv = new ComparetqVo();
|
|
|
-//// cv.setWtId("发电量");
|
|
|
-//// cv.setRecodedate(String.valueOf(day1.getNfdl().divide(new BigDecimal(1000))));
|
|
|
-//// cv.setRecodedate2(String.valueOf(0));
|
|
|
-//// cv.setOperation("100");
|
|
|
-//// ComparetqVo cv1 = new ComparetqVo();
|
|
|
-//// cv1.setWtId("上网电量");
|
|
|
-//// cv1.setRecodedate(String.valueOf(0.00));
|
|
|
-//// cv1.setRecodedate2(String.valueOf(0));
|
|
|
-//// cv1.setOperation("0");
|
|
|
-//// ComparetqVo cv2 = new ComparetqVo();
|
|
|
-//// cv2.setWtId("网购电量");
|
|
|
-//// cv2.setRecodedate(String.valueOf(0.00));
|
|
|
-//// cv2.setRecodedate2(String.valueOf(0));
|
|
|
-//// cv2.setOperation("0");
|
|
|
-//// ComparetqVo cv3 = new ComparetqVo();
|
|
|
-//// cv3.setWtId("损失电量");
|
|
|
-//// cv3.setRecodedate(String.valueOf(0.00));
|
|
|
-//// cv3.setRecodedate2(String.valueOf(0));
|
|
|
-//// cv3.setOperation("0");
|
|
|
-//// ComparetqVo cv4 = new ComparetqVo();
|
|
|
-//// cv4.setWtId("场用电量");
|
|
|
-//// cv4.setRecodedate(String.valueOf(0.00));
|
|
|
-//// cv4.setRecodedate2(String.valueOf(0));
|
|
|
-//// cv4.setOperation("0");
|
|
|
-//// ls2.add(cv);
|
|
|
-//// ls2.add(cv1);
|
|
|
-//// ls2.add(cv2);
|
|
|
-//// ls2.add(cv3);
|
|
|
-//// ls2.add(cv4);
|
|
|
-////
|
|
|
-//// zbtqdb.put("column", ls1);
|
|
|
-//// zbtqdb.put("data", ls2);
|
|
|
-//// allmap.put("fdl", ls);
|
|
|
-//// allmap.put("zbtqdb", zbtqdb);
|
|
|
-//
|
|
|
-//
|
|
|
-// return allmap;
|
|
|
-// }
|
|
|
-
|
|
|
-
|
|
|
public Map<String, Object> getGeneratingCapacity(String companyId) {
|
|
|
Map<String, Object> allmap = new HashMap<>();
|
|
|
QueryWrapper<StationInfoMin> qw = new QueryWrapper<>();
|
|
@@ -2725,16 +2051,12 @@ public class EconomyPointHomePageService {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
+ * 缓存月、年发电量
|
|
|
+ */
|
|
|
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点的日期
|
|
@@ -2744,11 +2066,6 @@ public class EconomyPointHomePageService {
|
|
|
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点的日期
|