|
@@ -1489,27 +1489,171 @@ public class SpecificService {
|
|
|
}
|
|
|
|
|
|
|
|
|
+// public List<SpecificTarget> fdlList(String companys, String type, String year) {
|
|
|
+// //获取年份所有当月的数据
|
|
|
+// QueryWrapper<StationInfoDay> currentqw = new QueryWrapper<>();
|
|
|
+// currentqw.select("station_id,max(record_date) record_date,sum(rfdl_fj) rfdl_fj");
|
|
|
+//// currentqw.eq("location", "wp");
|
|
|
+// currentqw.eq("to_char(record_date,'yyyy')", year);
|
|
|
+// if (type.equals("-1")) {
|
|
|
+// currentqw.like("station_id", "_FDC_");
|
|
|
+// } else {
|
|
|
+// currentqw.like("station_id", "_GDC_");
|
|
|
+// }
|
|
|
+//// if (companys.endsWith("ZGS")) {
|
|
|
+//// currentqw.eq("company_id", companys);
|
|
|
+//// } else {
|
|
|
+//// currentqw.eq("region_id", companys);
|
|
|
+//// }
|
|
|
+// currentqw.groupBy("to_char(record_date,'yyyy-MM'),station_id");
|
|
|
+// List<StationInfoDay> currentList = iStationInfoDayService.list(currentqw);
|
|
|
+// currentqw.clear();
|
|
|
+// currentqw.select("station_id,max(record_date) record_date,sum(rfdl_fj) rfdl_fj");
|
|
|
+//// currentqw.eq("foreign_key_id", companys + type);
|
|
|
+// currentqw.eq("to_char(record_date,'yyyy')", year);
|
|
|
+// currentqw.groupBy("to_char(record_date,'yyyy-MM'),station_id");
|
|
|
+// currentList.addAll(iStationInfoDayService.list(currentqw));
|
|
|
+//
|
|
|
+// int subYear = Integer.parseInt(year) - 1;
|
|
|
+// QueryWrapper<StationInfoDay> sameperiodqw = new QueryWrapper<>();
|
|
|
+// sameperiodqw.select("station_id,max(record_date) record_date,sum(rfdl_fj) rfdl_fj");
|
|
|
+//// sameperiodqw.eq("location", "wp");
|
|
|
+// if (type.equals("-1")) {
|
|
|
+// currentqw.like("station_id", "_FDC_");
|
|
|
+// } else {
|
|
|
+// currentqw.like("station_id", "_GDC_");
|
|
|
+// }
|
|
|
+//// if (companys.endsWith("ZGS")) {
|
|
|
+//// currentqw.eq("company_id", companys);
|
|
|
+//// } else {
|
|
|
+//// currentqw.eq("region_id", companys);
|
|
|
+//// }
|
|
|
+// sameperiodqw.eq("to_char(record_date,'yyyy')", String.valueOf(subYear));
|
|
|
+// sameperiodqw.groupBy("to_char(record_date,'yyyy-MM'),station_id");
|
|
|
+// List<StationInfoDay> sameperiodList = iStationInfoDayService.list(sameperiodqw);
|
|
|
+// sameperiodqw.clear();
|
|
|
+// sameperiodqw.select("station_id,max(record_date) record_date,sum(rfdl_fj) rfdl_fj");
|
|
|
+//// sameperiodqw.eq("foreign_key_id", companys + type);
|
|
|
+// sameperiodqw.eq("to_char(record_date,'yyyy')", String.valueOf(subYear));
|
|
|
+// sameperiodqw.groupBy("to_char(record_date,'yyyy-MM'),station_id");
|
|
|
+// sameperiodList.addAll(iStationInfoDayService.list(sameperiodqw));
|
|
|
+//
|
|
|
+// //合并当月与同期数据为返回结果
|
|
|
+// List<SpecificTargetVo> resultList = new ArrayList<>();
|
|
|
+//
|
|
|
+// currentList.stream().forEach(i -> {
|
|
|
+// SpecificTargetVo vo = new SpecificTargetVo();
|
|
|
+// String wpid = i.getStationId();
|
|
|
+// vo.setWpid(wpid);
|
|
|
+//// if (wpid.contains("_ZGS") || wpid.contains("_FGS" + type)) {
|
|
|
+//// vo.setWpname(CacheContext.cpmap.get(companys).getAname());
|
|
|
+//// } else if (wpid.contains("_RGN")) {
|
|
|
+//// vo.setWpname(CacheContext.rgmap.get(companys).getAname());
|
|
|
+//// } else {
|
|
|
+// vo.setWpname(CacheContext.wpmap.get(wpid).getAname());
|
|
|
+//// }
|
|
|
+// Instant instant = i.getRecordDate().atStartOfDay(ZoneId.systemDefault()).toInstant();
|
|
|
+// Date date = Date.from(instant);
|
|
|
+// vo.setYear(DateUtils.getYear(date));
|
|
|
+// vo.setMonth(DateUtils.getMonth(date));
|
|
|
+// vo.setCurrent(DoubleUtils.keepPrecision(i.getRfdlFj().doubleValue(), 2));
|
|
|
+// resultList.add(vo);
|
|
|
+// });
|
|
|
+// resultList.stream().forEach(i -> {
|
|
|
+// Optional<StationInfoDay> optional = sameperiodList.stream()
|
|
|
+// .filter(j -> i.getWpid().equals(j.getStationId())
|
|
|
+// && i.getMonth().equals(DateUtils.getMonthFromDate(Date.from(j.getRecordDate().atStartOfDay(ZoneId.systemDefault()).toInstant()))))
|
|
|
+// .findFirst();
|
|
|
+//
|
|
|
+// if (optional.isPresent()) {
|
|
|
+// StationInfoDay tqinfoday = optional.get();
|
|
|
+// i.setSameperiod(DoubleUtils.keepPrecision(tqinfoday.getRfdlFj().doubleValue(), 2));
|
|
|
+// i.setCompare(i.getCurrent().compareTo(i.getSameperiod()));
|
|
|
+// } else {
|
|
|
+// i.setSameperiod(0.0);
|
|
|
+// i.setCompare(0);
|
|
|
+// }
|
|
|
+// });
|
|
|
+// List<SpecificTarget> resultendList = new ArrayList<>();
|
|
|
+//
|
|
|
+// Map<String, Map<Integer, SpecificTargetVo>> map = new HashMap<>();
|
|
|
+//
|
|
|
+// resultList.stream().forEach(i -> {
|
|
|
+// if (map.containsKey(i.getWpid())) {
|
|
|
+// Map<Integer, SpecificTargetVo> integerListMap = map.get(i.getWpid());
|
|
|
+// if (!integerListMap.containsKey(i.getMonth())) {
|
|
|
+// map.get(i.getWpid()).put(i.getMonth(), i);
|
|
|
+// } else {
|
|
|
+//
|
|
|
+// }
|
|
|
+// } else {
|
|
|
+// Map<Integer, SpecificTargetVo> tempMap = new HashMap<>();
|
|
|
+// tempMap.put(i.getMonth(), i);
|
|
|
+// map.put(i.getWpid(), tempMap);
|
|
|
+// }
|
|
|
+// });
|
|
|
+// Set<String> wpids = map.keySet();
|
|
|
+// if (StringUtils.isNotNull(wpids)) {
|
|
|
+// wpids.stream().forEach(wpid -> {
|
|
|
+// SpecificTarget vo = new SpecificTarget();
|
|
|
+// vo.setWpid(wpid);
|
|
|
+// int orderNum = 100;
|
|
|
+//// if (wpid.contains("_ZGS")|| wpid.contains("_FGS" + type)) {
|
|
|
+//// vo.setWpname(CacheContext.cpmap.get(companys).getAname());
|
|
|
+//// } else if (wpid.contains("_RGN")) {
|
|
|
+//// vo.setWpname(CacheContext.rgmap.get(companys).getAname());
|
|
|
+//// } else {
|
|
|
+// vo.setWpname(CacheContext.wpmap.get(wpid).getAname());
|
|
|
+// orderNum = CacheContext.wpmap.get(wpid).getOrderNum();
|
|
|
+//// }
|
|
|
+// vo.setOrderNum(orderNum);
|
|
|
+// List<SpecificTargetVo> tempList = new ArrayList<>();
|
|
|
+//
|
|
|
+// Map<Integer, SpecificTargetVo> listMap = map.get(wpid);
|
|
|
+// for (int x = 1; x <= 12; x++) {
|
|
|
+// if (listMap.containsKey(x)) {
|
|
|
+// tempList.add(listMap.get(x));
|
|
|
+// } else {
|
|
|
+// SpecificTargetVo vo1 = new SpecificTargetVo();
|
|
|
+// vo1.setWpid(wpid);
|
|
|
+//// if (wpid.contains("_ZGS")|| wpid.contains("_FGS" + type)) {
|
|
|
+//// vo1.setWpname(CacheContext.cpmap.get(companys).getAname());
|
|
|
+//// } else if (wpid.contains("_RGN")) {
|
|
|
+//// vo1.setWpname(CacheContext.rgmap.get(companys).getAname());
|
|
|
+//// } else {
|
|
|
+// vo1.setWpname(CacheContext.wpmap.get(wpid).getAname());
|
|
|
+//// }
|
|
|
+// vo1.setYear(Integer.parseInt(year));
|
|
|
+// vo1.setMonth(x);
|
|
|
+// tempList.add(vo1);
|
|
|
+// }
|
|
|
+// }
|
|
|
+//
|
|
|
+//
|
|
|
+// vo.setTargetList(tempList);
|
|
|
+// resultendList.add(vo);
|
|
|
+// });
|
|
|
+// }
|
|
|
+// SortUtils.sort(resultendList, "orderNum", SortUtils.ASC);
|
|
|
+//
|
|
|
+// return resultendList;
|
|
|
+// }
|
|
|
+
|
|
|
+
|
|
|
public List<SpecificTarget> fdlList(String companys, String type, String year) {
|
|
|
//获取年份所有当月的数据
|
|
|
QueryWrapper<StationInfoDay> currentqw = new QueryWrapper<>();
|
|
|
currentqw.select("station_id,max(record_date) record_date,sum(rfdl_fj) rfdl_fj");
|
|
|
-// currentqw.eq("location", "wp");
|
|
|
currentqw.eq("to_char(record_date,'yyyy')", year);
|
|
|
if (type.equals("-1")) {
|
|
|
currentqw.like("station_id", "_FDC_");
|
|
|
} else {
|
|
|
currentqw.like("station_id", "_GDC_");
|
|
|
}
|
|
|
-// if (companys.endsWith("ZGS")) {
|
|
|
-// currentqw.eq("company_id", companys);
|
|
|
-// } else {
|
|
|
-// currentqw.eq("region_id", companys);
|
|
|
-// }
|
|
|
currentqw.groupBy("to_char(record_date,'yyyy-MM'),station_id");
|
|
|
List<StationInfoDay> currentList = iStationInfoDayService.list(currentqw);
|
|
|
currentqw.clear();
|
|
|
currentqw.select("station_id,max(record_date) record_date,sum(rfdl_fj) rfdl_fj");
|
|
|
-// currentqw.eq("foreign_key_id", companys + type);
|
|
|
currentqw.eq("to_char(record_date,'yyyy')", year);
|
|
|
currentqw.groupBy("to_char(record_date,'yyyy-MM'),station_id");
|
|
|
currentList.addAll(iStationInfoDayService.list(currentqw));
|
|
@@ -1517,41 +1661,26 @@ public class SpecificService {
|
|
|
int subYear = Integer.parseInt(year) - 1;
|
|
|
QueryWrapper<StationInfoDay> sameperiodqw = new QueryWrapper<>();
|
|
|
sameperiodqw.select("station_id,max(record_date) record_date,sum(rfdl_fj) rfdl_fj");
|
|
|
-// sameperiodqw.eq("location", "wp");
|
|
|
if (type.equals("-1")) {
|
|
|
currentqw.like("station_id", "_FDC_");
|
|
|
} else {
|
|
|
currentqw.like("station_id", "_GDC_");
|
|
|
}
|
|
|
-// if (companys.endsWith("ZGS")) {
|
|
|
-// currentqw.eq("company_id", companys);
|
|
|
-// } else {
|
|
|
-// currentqw.eq("region_id", companys);
|
|
|
-// }
|
|
|
sameperiodqw.eq("to_char(record_date,'yyyy')", String.valueOf(subYear));
|
|
|
sameperiodqw.groupBy("to_char(record_date,'yyyy-MM'),station_id");
|
|
|
List<StationInfoDay> sameperiodList = iStationInfoDayService.list(sameperiodqw);
|
|
|
sameperiodqw.clear();
|
|
|
sameperiodqw.select("station_id,max(record_date) record_date,sum(rfdl_fj) rfdl_fj");
|
|
|
-// sameperiodqw.eq("foreign_key_id", companys + type);
|
|
|
sameperiodqw.eq("to_char(record_date,'yyyy')", String.valueOf(subYear));
|
|
|
sameperiodqw.groupBy("to_char(record_date,'yyyy-MM'),station_id");
|
|
|
sameperiodList.addAll(iStationInfoDayService.list(sameperiodqw));
|
|
|
-
|
|
|
//合并当月与同期数据为返回结果
|
|
|
List<SpecificTargetVo> resultList = new ArrayList<>();
|
|
|
-
|
|
|
currentList.stream().forEach(i -> {
|
|
|
SpecificTargetVo vo = new SpecificTargetVo();
|
|
|
String wpid = i.getStationId();
|
|
|
vo.setWpid(wpid);
|
|
|
-// if (wpid.contains("_ZGS") || wpid.contains("_FGS" + type)) {
|
|
|
-// vo.setWpname(CacheContext.cpmap.get(companys).getAname());
|
|
|
-// } else if (wpid.contains("_RGN")) {
|
|
|
-// vo.setWpname(CacheContext.rgmap.get(companys).getAname());
|
|
|
-// } else {
|
|
|
vo.setWpname(CacheContext.wpmap.get(wpid).getAname());
|
|
|
-// }
|
|
|
Instant instant = i.getRecordDate().atStartOfDay(ZoneId.systemDefault()).toInstant();
|
|
|
Date date = Date.from(instant);
|
|
|
vo.setYear(DateUtils.getYear(date));
|
|
@@ -1598,14 +1727,8 @@ public class SpecificService {
|
|
|
SpecificTarget vo = new SpecificTarget();
|
|
|
vo.setWpid(wpid);
|
|
|
int orderNum = 100;
|
|
|
-// if (wpid.contains("_ZGS")|| wpid.contains("_FGS" + type)) {
|
|
|
-// vo.setWpname(CacheContext.cpmap.get(companys).getAname());
|
|
|
-// } else if (wpid.contains("_RGN")) {
|
|
|
-// vo.setWpname(CacheContext.rgmap.get(companys).getAname());
|
|
|
-// } else {
|
|
|
vo.setWpname(CacheContext.wpmap.get(wpid).getAname());
|
|
|
orderNum = CacheContext.wpmap.get(wpid).getOrderNum();
|
|
|
-// }
|
|
|
vo.setOrderNum(orderNum);
|
|
|
List<SpecificTargetVo> tempList = new ArrayList<>();
|
|
|
|
|
@@ -1616,22 +1739,21 @@ public class SpecificService {
|
|
|
} else {
|
|
|
SpecificTargetVo vo1 = new SpecificTargetVo();
|
|
|
vo1.setWpid(wpid);
|
|
|
-// if (wpid.contains("_ZGS")|| wpid.contains("_FGS" + type)) {
|
|
|
-// vo1.setWpname(CacheContext.cpmap.get(companys).getAname());
|
|
|
-// } else if (wpid.contains("_RGN")) {
|
|
|
-// vo1.setWpname(CacheContext.rgmap.get(companys).getAname());
|
|
|
-// } else {
|
|
|
vo1.setWpname(CacheContext.wpmap.get(wpid).getAname());
|
|
|
-// }
|
|
|
vo1.setYear(Integer.parseInt(year));
|
|
|
vo1.setMonth(x);
|
|
|
tempList.add(vo1);
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
vo.setTargetList(tempList);
|
|
|
resultendList.add(vo);
|
|
|
+
|
|
|
+ SpecificTarget vo2 = new SpecificTarget();
|
|
|
+ vo2.setWpid(vo.getWpid());
|
|
|
+ vo2.setTargetList(vo.getTargetList());
|
|
|
+ vo2.setOrderNum(vo.getOrderNum() + 1);
|
|
|
+ vo2.setWpname(CacheContext.cpmap.get(companys).getAname());
|
|
|
+ resultendList.add(vo2);
|
|
|
});
|
|
|
}
|
|
|
SortUtils.sort(resultendList, "orderNum", SortUtils.ASC);
|
|
@@ -1639,6 +1761,7 @@ public class SpecificService {
|
|
|
return resultendList;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
public List<SpecificTarget> zhcydlList2(String companys, String type, String year) {
|
|
|
//获取年份所有当月的数据
|
|
|
QueryWrapper<ProEconPowerstationInfoDay5> currentqw = new QueryWrapper<>();
|
|
@@ -1929,6 +2052,13 @@ public class SpecificService {
|
|
|
|
|
|
vo.setTargetList(tempList);
|
|
|
resultendList.add(vo);
|
|
|
+
|
|
|
+ SpecificTarget vo2 = new SpecificTarget();
|
|
|
+ vo2.setWpid(vo.getWpid());
|
|
|
+ vo2.setTargetList(vo.getTargetList());
|
|
|
+ vo2.setOrderNum(vo.getOrderNum() + 1);
|
|
|
+ vo2.setWpname(CacheContext.cpmap.get(companys).getAname());
|
|
|
+ resultendList.add(vo2);
|
|
|
});
|
|
|
}
|
|
|
SortUtils.sort(resultendList, "orderNum", SortUtils.ASC);
|
|
@@ -2227,6 +2357,13 @@ public class SpecificService {
|
|
|
|
|
|
vo.setTargetList(tempList);
|
|
|
resultendList.add(vo);
|
|
|
+
|
|
|
+ SpecificTarget vo2 = new SpecificTarget();
|
|
|
+ vo2.setWpid(vo.getWpid());
|
|
|
+ vo2.setTargetList(vo.getTargetList());
|
|
|
+ vo2.setOrderNum(vo.getOrderNum() + 1);
|
|
|
+ vo2.setWpname(CacheContext.cpmap.get(companys).getAname());
|
|
|
+ resultendList.add(vo2);
|
|
|
});
|
|
|
}
|
|
|
SortUtils.sort(resultendList, "orderNum", SortUtils.ASC);
|
|
@@ -2525,6 +2662,13 @@ public class SpecificService {
|
|
|
|
|
|
vo.setTargetList(tempList);
|
|
|
resultendList.add(vo);
|
|
|
+
|
|
|
+ SpecificTarget vo2 = new SpecificTarget();
|
|
|
+ vo2.setWpid(vo.getWpid());
|
|
|
+ vo2.setTargetList(vo.getTargetList());
|
|
|
+ vo2.setOrderNum(vo.getOrderNum() + 1);
|
|
|
+ vo2.setWpname(CacheContext.cpmap.get(companys).getAname());
|
|
|
+ resultendList.add(vo2);
|
|
|
});
|
|
|
}
|
|
|
SortUtils.sort(resultendList, "orderNum", SortUtils.ASC);
|
|
@@ -2860,6 +3004,13 @@ public class SpecificService {
|
|
|
|
|
|
vo.setTargetList(tempList);
|
|
|
resultendList.add(vo);
|
|
|
+
|
|
|
+ SpecificTarget vo2 = new SpecificTarget();
|
|
|
+ vo2.setWpid(vo.getWpid());
|
|
|
+ vo2.setTargetList(vo.getTargetList());
|
|
|
+ vo2.setOrderNum(vo.getOrderNum() + 1);
|
|
|
+ vo2.setWpname(CacheContext.cpmap.get(companys).getAname());
|
|
|
+ resultendList.add(vo2);
|
|
|
});
|
|
|
}
|
|
|
SortUtils.sort(resultendList, "orderNum", SortUtils.ASC);
|