|
@@ -11,6 +11,7 @@ import com.gyee.runeconomy.model.StationInfoMin;
|
|
|
import com.gyee.runeconomy.model.auto.*;
|
|
|
import com.gyee.runeconomy.model.vo.*;
|
|
|
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.stereotype.Service;
|
|
|
|
|
@@ -20,10 +21,7 @@ import java.math.RoundingMode;
|
|
|
import java.text.DecimalFormat;
|
|
|
import java.text.ParseException;
|
|
|
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.temporal.TemporalAdjusters;
|
|
|
import java.util.*;
|
|
@@ -75,6 +73,9 @@ public class EconomyPointHomePageService {
|
|
|
@Resource
|
|
|
private IStationInfoDayService iStationInfoDayService;
|
|
|
|
|
|
+ @Resource
|
|
|
+ private ITurbineInfoDayService iTurbineInfoDayService;
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 指标率相应类
|
|
@@ -135,6 +136,13 @@ public class EconomyPointHomePageService {
|
|
|
* 15分钟发电量
|
|
|
*/
|
|
|
private Map<String, GeneratingCapacityVo> generatingCapacity15min = new HashMap<>();
|
|
|
+ private Map<String, BigDecimal> yfdlCal = new HashMap<>();
|
|
|
+ private Map<String, BigDecimal> yllfdlCal = new HashMap<>();
|
|
|
+ private Map<Integer, BigDecimal> nfdlCal = new HashMap<>();
|
|
|
+ private Map<Integer, BigDecimal> nllfdlCal = new HashMap<>();
|
|
|
+ private LocalDate lastCalDate;
|
|
|
+
|
|
|
+ private Map<LocalDate, BigDecimal> fnlyl = new HashMap<>();
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -1562,274 +1570,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);
|
|
|
- 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<>();
|
|
|
- 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 = {"排名", "名称", "风能利用率%", "去年同期%", "涨跌%"};
|
|
@@ -1839,11 +1586,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);
|
|
@@ -1851,27 +1619,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);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -1892,46 +1683,34 @@ public class EconomyPointHomePageService {
|
|
|
|
|
|
|
|
|
public Map<String, Object> getHomeMiddle(String companyId) throws ParseException {
|
|
|
- LocalDate currentDate = LocalDate.now();
|
|
|
+ double rfdl = generatingCapacity15min.get("日发电量").getValue();
|
|
|
Integer month = LocalDate.now().getMonthValue();
|
|
|
int year = LocalDate.now().getYear();
|
|
|
Map<String, Object> allmap = new HashMap<>();
|
|
|
PlanDataVo pd = new PlanDataVo();
|
|
|
+ Double week = getWeekFdlCal();
|
|
|
+ pd.setZfdlsj(week);
|
|
|
+ String s = year + "-" + month;
|
|
|
+ BigDecimal monCache = yfdlCal.get(s);
|
|
|
+ pd.setYfdlsj(monCache.add(new BigDecimal(rfdl)).doubleValue());
|
|
|
+ BigDecimal yearCache = nfdlCal.get(year);
|
|
|
+ pd.setNfdlsj(yearCache.add(new BigDecimal(rfdl)).doubleValue());
|
|
|
+ //计划发电量
|
|
|
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;
|
|
|
+ if (pp.isEmpty()) {
|
|
|
+ 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);
|
|
|
- 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);
|
|
@@ -1939,38 +1718,34 @@ 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(days1.get(0).getNfdl().doubleValue() / 1000);
|
|
|
- Double njd = calDivide(pd.getNfdlsj() / 1000, pd.getNfdljh());
|
|
|
+ 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);
|
|
|
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");
|
|
|
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<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> ssdl = new ArrayList<>();
|
|
|
List<PowertrendVo> fdl = new ArrayList<>();
|
|
@@ -1983,30 +1758,34 @@ public class EconomyPointHomePageService {
|
|
|
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);
|
|
|
+ List<ValueVo> vexdl = value(year, 12);
|
|
|
+ List<ValueVo> vessdl = value(year, 12);
|
|
|
+ List<ValueVo> vefdl = value(year, 12);
|
|
|
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();
|
|
|
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()));
|
|
|
+ vv.setValue(day1s2.stream().map(TurbineInfoDay::getXdss).reduce(BigDecimal.ZERO, BigDecimal::add));
|
|
|
}
|
|
|
}
|
|
|
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()))))))))))));
|
|
|
+ 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) {
|
|
|
if (vv.getText().equals(text)) {
|
|
|
- vv.setValue(day1s2.get(0).getYfdl());
|
|
|
+ vv.setValue(day1s2.stream().map(TurbineInfoDay::getRfdl).reduce(BigDecimal.ZERO, BigDecimal::add));
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -2027,40 +1806,47 @@ public class EconomyPointHomePageService {
|
|
|
ptxdl.setYAxisIndex(0);
|
|
|
ptssdl.setYAxisIndex(0);
|
|
|
ptfdl.setYAxisIndex(0);
|
|
|
- if (null == lastYear || lastYear.isEmpty()) {
|
|
|
+ if (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));
|
|
|
+ List<ValueVo> vxdl2 = value(year - 1, 12);
|
|
|
+ List<ValueVo> vssdl2 = value(year - 1, 12);
|
|
|
+ List<ValueVo> vfdl2 = value(year - 1, 12);
|
|
|
+ Map<Integer, List<TurbineInfoDay>> 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());
|
|
|
+ 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();
|
|
|
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);
|
|
|
+ for (ValueVo vv : vxdl2) {
|
|
|
+ if (vv.getText().equals(text)) {
|
|
|
+ vv.setValue(day1s4.stream().map(TurbineInfoDay::getXdss).reduce(BigDecimal.ZERO, BigDecimal::add));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ for (ValueVo vv : vssdl2) {
|
|
|
+ if (vv.getText().equals(text)) {
|
|
|
+ vv.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)))));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ for (ValueVo vv : vfdl2) {
|
|
|
+ if (vv.getText().equals(text)) {
|
|
|
+ vv.setValue(day1s4.stream().map(TurbineInfoDay::getRfdl).reduce(BigDecimal.ZERO, BigDecimal::add));
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
ptxdl2.setValue(vxdl2);
|
|
|
ptssdl2.setValue(vssdl2);
|
|
|
- ptxdl2.setValue(vfdl2);
|
|
|
+ ptfdl2.setValue(vfdl2);
|
|
|
}
|
|
|
xdl.add(ptxdl2);
|
|
|
ssdl.add(ptssdl2);
|
|
@@ -2092,7 +1878,7 @@ public class EconomyPointHomePageService {
|
|
|
|
|
|
private List<ValueVo> value(int year, int month) {
|
|
|
List<ValueVo> lv = new ArrayList<>();
|
|
|
- for (int i = 1; i < month; i++) {
|
|
|
+ for (int i = 1; i <= month; i++) {
|
|
|
ValueVo vo = new ValueVo();
|
|
|
vo.setText(year + "-" + i);
|
|
|
vo.setValue(new BigDecimal(0));
|
|
@@ -2103,110 +1889,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<>();
|
|
@@ -2270,27 +1952,30 @@ public class EconomyPointHomePageService {
|
|
|
StationInfoMin day1 = day1s.get(0);
|
|
|
GeneratingCapacityVo rfdl = new GeneratingCapacityVo();
|
|
|
rfdl.setName("日发电量");
|
|
|
- rfdl.setValue(day1.getRfdl());
|
|
|
+ rfdl.setValue(Double.valueOf(String.format("%.2f", day1.getRfdl())));
|
|
|
Double llgl = day1.getLlgl();
|
|
|
rfdl.setTotal(calDivide(llgl, 4.0));
|
|
|
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);
|
|
|
generatingCapacity15min.put(rfdl.getName(), rfdl);
|
|
|
GeneratingCapacityVo yfdl = new GeneratingCapacityVo();
|
|
|
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));
|
|
|
+
|
|
|
+ String s = LocalDate.now().getYear() + "-" + LocalDate.now().getMonthValue();
|
|
|
+ BigDecimal monCache = yfdlCal.get(s);
|
|
|
+ yfdl.setValue(monCache.add(new BigDecimal(rfdl.getValue())).setScale(2, RoundingMode.HALF_UP).doubleValue());
|
|
|
+ yfdl.setTotal(calDivide(yllfdlCal.get(s).add(new BigDecimal(rfdl.getTotal())).doubleValue(), 4.0));
|
|
|
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);
|
|
|
generatingCapacity15min.put(yfdl.getName(), yfdl);
|
|
|
GeneratingCapacityVo nfdl = new GeneratingCapacityVo();
|
|
|
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.get(LocalDate.now().getYear()).add(new BigDecimal(rfdl.getValue())).setScale(2, RoundingMode.HALF_UP).doubleValue());
|
|
|
+ nfdl.setTotal(calDivide(nllfdlCal.get(LocalDate.now().getYear()).add(new BigDecimal(rfdl.getTotal())).doubleValue(), 4.0));
|
|
|
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);
|
|
|
generatingCapacity15min.put(nfdl.getName(), nfdl);
|
|
|
}
|
|
@@ -2369,4 +2054,57 @@ public class EconomyPointHomePageService {
|
|
|
return allmap;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 缓存月、年发电量
|
|
|
+ */
|
|
|
+ public void calFdl() {
|
|
|
+ if (null != lastCalDate || LocalDate.now().equals(lastCalDate) || !yfdlCal.isEmpty()) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ DecimalFormat df = new DecimalFormat("#.##");
|
|
|
+ LocalDate yesterday = LocalDate.now().atStartOfDay().toLocalDate();
|
|
|
+ QueryWrapper<TurbineInfoDay> currentqw = new QueryWrapper<>();
|
|
|
+ currentqw.select("station_id,SUM(rfdl) AS rfdl,sum(llfdl) as llfdl")
|
|
|
+ .ge("record_date", LocalDate.now().with(TemporalAdjusters.firstDayOfYear())) // 大于等于今年的第一天
|
|
|
+ .lt("record_date", yesterday) // 小于今天0点的日期
|
|
|
+ .like("station_id", "_FDC_%")
|
|
|
+ .groupBy("station_id");
|
|
|
+ List<TurbineInfoDay> yearData = iTurbineInfoDayService.list(currentqw);
|
|
|
+ Integer intYear = LocalDate.now().getYear();
|
|
|
+ nfdlCal.put(intYear, new BigDecimal(df.format(yearData.get(0).getRfdl())));
|
|
|
+ nllfdlCal.put(intYear, new BigDecimal(df.format(yearData.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())) // 大于等于本月的第一天
|
|
|
+ .lt("record_date", yesterday) // 小于今天0点的日期
|
|
|
+ .like("station_id", "_FDC_%")
|
|
|
+ .groupBy("station_id");
|
|
|
+ List<TurbineInfoDay> monthData = iTurbineInfoDayService.list(currentqw);
|
|
|
+ String yearAndMonth = LocalDate.now().getYear() + "-" + LocalDate.now().getMonthValue();
|
|
|
+ yfdlCal.put(yearAndMonth, new BigDecimal(df.format(monthData.get(0).getRfdl())));
|
|
|
+ yllfdlCal.put(yearAndMonth, new BigDecimal(df.format(monthData.get(0).getLlfdl())));
|
|
|
+ currentqw.clear();
|
|
|
+ lastCalDate = LocalDate.now();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ private Double getWeekFdlCal() {
|
|
|
+ LocalDate week = LocalDate.now().with(TemporalAdjusters.previousOrSame(DayOfWeek.MONDAY));
|
|
|
+ LocalDate yesterday = LocalDate.now().atStartOfDay().toLocalDate();
|
|
|
+ if (week.equals(LocalDate.now())) {
|
|
|
+ return generatingCapacity15min.get("日发电量").getValue();
|
|
|
+ }
|
|
|
+ QueryWrapper<TurbineInfoDay> currentqw = new QueryWrapper<>();
|
|
|
+ currentqw.select("station_id,SUM(rfdl) AS rfdl")
|
|
|
+ .ge("record_date", LocalDate.now().with(TemporalAdjusters.previousOrSame(DayOfWeek.MONDAY))) // 大于等于本周一的日期
|
|
|
+ .lt("record_date", yesterday)
|
|
|
+ .groupBy("station_id");
|
|
|
+ List<TurbineInfoDay> weekData = iTurbineInfoDayService.list(currentqw);
|
|
|
+ if (null == weekData || weekData.isEmpty()) {
|
|
|
+ return 0.0;
|
|
|
+ }
|
|
|
+ return weekData.get(0).getRfdl().add(new BigDecimal(generatingCapacity15min.get("日发电量").getValue())).doubleValue();
|
|
|
+ }
|
|
|
+
|
|
|
}
|