|
@@ -2846,50 +2846,157 @@ public class SpecificService {
|
|
|
|
|
|
public List<SpecificTarget> lyxsList(String companys, String type, String year) {
|
|
|
//获取年份所有当月的数据
|
|
|
+ QueryWrapper<TurbineInfoDay> currentqw = new QueryWrapper<>();
|
|
|
+ currentqw.select("station_id,max(record_date) record_date,sum(lyxs) lyxs");
|
|
|
+ currentqw.eq("to_char(record_date,'yyyy')", year);
|
|
|
+ if (type.equals("-1")) {
|
|
|
+ currentqw.like("station_id", "_FDC_");
|
|
|
+ } else {
|
|
|
+ currentqw.like("station_id", "_GDC_");
|
|
|
+ }
|
|
|
+ currentqw.groupBy("to_char(record_date,'yyyy-MM'),station_id");
|
|
|
+ List<TurbineInfoDay> currentList = iTurbineInfoDayService.list(currentqw);
|
|
|
+
|
|
|
+ int subYear = Integer.parseInt(year);
|
|
|
+ QueryWrapper<TurbineInfoDay> sameperiodqw = new QueryWrapper<>();
|
|
|
+ sameperiodqw.select("station_id,max(record_date) record_date,sum(lyxs) lyxs");
|
|
|
+ if (type.equals("-1")) {
|
|
|
+ currentqw.like("station_id", "_FDC_");
|
|
|
+ } else {
|
|
|
+ currentqw.like("station_id", "_GDC_");
|
|
|
+ }
|
|
|
+ sameperiodqw.eq("to_char(record_date,'yyyy')", String.valueOf(subYear-1));
|
|
|
+ sameperiodqw.groupBy("to_char(record_date,'yyyy-MM'),station_id");
|
|
|
+ List<TurbineInfoDay> sameperiodList = iTurbineInfoDayService.list(sameperiodqw);
|
|
|
+
|
|
|
+ //合并当月与同期数据为返回结果
|
|
|
+ List<SpecificTargetVo> resultList = new ArrayList<>();
|
|
|
+
|
|
|
+ currentList.stream().forEach(i -> {
|
|
|
+ SpecificTargetVo vo = new SpecificTargetVo();
|
|
|
+ String wpid = i.getStationId();
|
|
|
+ vo.setWpid(wpid);
|
|
|
+ vo.setWpname(CacheContext.wpmap.get(wpid).getAname());
|
|
|
+ vo.setYear(DateUtils.getYear(i.getRecordDate()));
|
|
|
+ vo.setMonth(DateUtils.getMonth(i.getRecordDate()));
|
|
|
+ vo.setCurrent(i.getLyxs()/50);
|
|
|
+ resultList.add(vo);
|
|
|
+ });
|
|
|
+ resultList.stream().forEach(i -> {
|
|
|
+ Optional<TurbineInfoDay> optional = sameperiodList.stream()
|
|
|
+ .filter(j -> i.getWpid().equals(j.getStationId())
|
|
|
+ && i.getMonth().equals(DateUtils.getMonthFromDate(j.getRecordDate())))
|
|
|
+ .findFirst();
|
|
|
+
|
|
|
+ if (optional.isPresent()) {
|
|
|
+ TurbineInfoDay tqinfoday = optional.get();
|
|
|
+ i.setSameperiod(tqinfoday.getLyxs()/50);
|
|
|
+ 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 {
|
|
|
+ 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;
|
|
|
+ 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);
|
|
|
+ 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);
|
|
|
+
|
|
|
+ return resultendList;
|
|
|
+ }
|
|
|
+ public List<SpecificTarget> lyxsList3(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("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);
|
|
|
-// }
|
|
|
+ // 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("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;
|
|
|
+ // int subYear = Integer.parseInt(year) - 1;
|
|
|
int subYear = Integer.parseInt(year);
|
|
|
QueryWrapper<StationInfoDay> sameperiodqw = new QueryWrapper<>();
|
|
|
sameperiodqw.select("station_id,max(record_date) record_date,sum(rfdl_fj) rfdl_fj");
|
|
|
-// sameperiodqw.eq("location", "wp");
|
|
|
+ // 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);
|
|
|
-// }
|
|
|
+ // 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("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));
|
|
@@ -2909,13 +3016,13 @@ public class SpecificService {
|
|
|
capacity = (gsrl.get(0).getJrCapacity()) + (gsrl.get(0).getJrwindCapacity());
|
|
|
}
|
|
|
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 {
|
|
|
+ // 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));
|
|
@@ -2971,14 +3078,14 @@ 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 {
|
|
|
+ // 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<>();
|
|
|
|
|
@@ -2989,13 +3096,13 @@ 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 {
|
|
|
+ // 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);
|
|
@@ -3230,8 +3337,8 @@ public class SpecificService {
|
|
|
// }
|
|
|
// Instant instant = i.getRecordDate().atStartOfDay(ZoneId.systemDefault()).toInstant();
|
|
|
// Date date2 = Date.from(instant);
|
|
|
-// vo.setYear(DateUtils.getYear(date2));
|
|
|
-// vo.setMonth(DateUtils.getMonth(date2));
|
|
|
+ vo.setYear(i.getRecordDate().getYear()+1900);
|
|
|
+ vo.setMonth(i.getRecordDate().getMonth()+1);
|
|
|
// vo.setCurrent(DoubleUtils.keepPrecision(i.getLlfdl().doubleValue() != 0 ? (i.getGzss().doubleValue()) / i.getLlfdl().doubleValue() * 100 : 0, 2));
|
|
|
double llfdl = i.getLlfdl() != null ? i.getLlfdl().doubleValue() : 0.0;
|
|
|
double rfdl = i.getGzss() != null ? i.getGzss().doubleValue() : 0.0;
|
|
@@ -3670,6 +3777,8 @@ public class SpecificService {
|
|
|
} else {
|
|
|
vo.setCurrent(0.0);
|
|
|
}
|
|
|
+ vo.setYear(i.getRecordDate().getYear()+1900);
|
|
|
+ vo.setMonth(i.getRecordDate().getMonth()+1);
|
|
|
resultList.add(vo);
|
|
|
});
|
|
|
resultList.stream().forEach(i -> {
|
|
@@ -3963,8 +4072,8 @@ public class SpecificService {
|
|
|
// }
|
|
|
// Instant instant = i.getRecordDate().atStartOfDay(ZoneId.systemDefault()).toInstant();
|
|
|
// Date date = Date.from(instant);
|
|
|
-// vo.setYear(DateUtils.getYear(date));
|
|
|
-// vo.setMonth(DateUtils.getMonth(date));
|
|
|
+ vo.setYear(i.getRecordDate().getYear()+1900);
|
|
|
+ vo.setMonth(i.getRecordDate().getMonth()+1);
|
|
|
// vo.setCurrent(DoubleUtils.keepPrecision(i.getLlfdl().doubleValue() != 0 ? (i.getXdss().doubleValue()) / i.getLlfdl().doubleValue() * 100 : 0, 2));
|
|
|
double llfdl = i.getLlfdl() != null ? i.getLlfdl().doubleValue() : 0.0;
|
|
|
double rfdl = i.getXdss() != null ? i.getXdss().doubleValue() : 0.0;
|
|
@@ -4282,8 +4391,8 @@ public class SpecificService {
|
|
|
}
|
|
|
// Instant instant = i.getRecordDate().atStartOfDay(ZoneId.systemDefault()).toInstant();
|
|
|
// Date date = Date.from(instant);
|
|
|
-// vo.setYear(DateUtils.getYear(date));
|
|
|
-// vo.setMonth(DateUtils.getMonth(date));
|
|
|
+ vo.setYear(i.getRecordDate().getYear()+1900);
|
|
|
+ vo.setMonth(i.getRecordDate().getMonth()+1);
|
|
|
// vo.setCurrent(DoubleUtils.keepPrecision(i.getLlfdl().doubleValue() != 0 ? (i.getXnss().doubleValue()) / i.getLlfdl().doubleValue() * 100 : 0, 2));
|
|
|
double llfdl = i.getLlfdl() != null ? i.getLlfdl().doubleValue() : 0.0;
|
|
|
double rfdl = i.getXnss() != null ? i.getXnss().doubleValue() : 0.0;
|
|
@@ -4604,8 +4713,8 @@ public class SpecificService {
|
|
|
// }
|
|
|
// Instant instant = i.getRecordDate().atStartOfDay(ZoneId.systemDefault()).toInstant();
|
|
|
// Date date = Date.from(instant);
|
|
|
-// vo.setYear(DateUtils.getYear(date));
|
|
|
-// vo.setMonth(DateUtils.getMonth(date));
|
|
|
+ vo.setYear(i.getRecordDate().getYear()+1900);
|
|
|
+ vo.setMonth(i.getRecordDate().getMonth()+1);
|
|
|
// vo.setCurrent(DoubleUtils.keepPrecision(i.getLlfdl().doubleValue() != 0 ? (i.getSlss().doubleValue()) / i.getLlfdl().doubleValue() * 100 : 0, 2));
|
|
|
double llfdl = i.getLlfdl() != null ? i.getLlfdl().doubleValue() : 0.0;
|
|
|
double rfdl = i.getSlss() != null ? i.getSlss().doubleValue() : 0.0;
|