|
@@ -3044,4 +3044,168 @@ public class SpecificService {
|
|
|
|
|
|
return resultendList;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ public List<SpecificTarget> Utilization(String companys, String type, String year) {
|
|
|
+
|
|
|
+ List<ProBasicOrganizeTree> wpls = CacheContext.wpls;
|
|
|
+
|
|
|
+ //获取年份所有当月的数据
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay1> currentqw = new QueryWrapper<>();
|
|
|
+ currentqw.select("foreign_key_id,max(record_date) record_date,max(yfdl) yfdl");
|
|
|
+ currentqw.eq("location","wp");
|
|
|
+ currentqw.eq("to_char(record_date,'yyyy')",year);
|
|
|
+ if (type.equals("-1")){
|
|
|
+ currentqw.like("foreign_key_id","_FDC_");
|
|
|
+ }else {
|
|
|
+ currentqw.like("foreign_key_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'),foreign_key_id");
|
|
|
+ List<ProEconPowerstationInfoDay1> currentList = proEconPowerstationInfoDay1Service.list(currentqw);
|
|
|
+ currentqw.clear();
|
|
|
+ currentqw.select("foreign_key_id,max(record_date) record_date,max(yfdl) yfdl");
|
|
|
+ currentqw.eq("foreign_key_id",companys+type);
|
|
|
+ currentqw.eq("to_char(record_date,'yyyy')",year);
|
|
|
+ currentqw.groupBy("to_char(record_date,'yyyy-MM'),foreign_key_id");
|
|
|
+ currentList.addAll(proEconPowerstationInfoDay1Service.list(currentqw));
|
|
|
+
|
|
|
+ int subYear = Integer.parseInt(year) - 1;
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay1> sameperiodqw = new QueryWrapper<>();
|
|
|
+ sameperiodqw.select("foreign_key_id,max(record_date) record_date,max(yfdl) yfdl");
|
|
|
+ sameperiodqw.eq("location","wp");
|
|
|
+ if (type.equals("-1")){
|
|
|
+ currentqw.like("foreign_key_id","_FDC_");
|
|
|
+ }else {
|
|
|
+ currentqw.like("foreign_key_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'),foreign_key_id");
|
|
|
+ List<ProEconPowerstationInfoDay1> sameperiodList = proEconPowerstationInfoDay1Service.list(sameperiodqw);
|
|
|
+ sameperiodqw.clear();
|
|
|
+ sameperiodqw.select("foreign_key_id,max(record_date) record_date,max(yfdl) yfdl");
|
|
|
+ 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'),foreign_key_id");
|
|
|
+ sameperiodList.addAll(proEconPowerstationInfoDay1Service.list(sameperiodqw));
|
|
|
+
|
|
|
+ //合并当月与同期数据为返回结果
|
|
|
+ List<SpecificTargetVo> resultList = new ArrayList<>();
|
|
|
+
|
|
|
+ currentList.stream().forEach(i->{
|
|
|
+ SpecificTargetVo vo = new SpecificTargetVo();
|
|
|
+ String wpid = i.getForeignKeyId();
|
|
|
+ vo.setWpid(wpid);
|
|
|
+ if(wpid.contains("_ZGS")){
|
|
|
+ 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());
|
|
|
+ }
|
|
|
+ vo.setYear(DateUtils.getYear(i.getRecordDate()));
|
|
|
+ vo.setMonth(DateUtils.getMonth(i.getRecordDate()));
|
|
|
+ for (ProBasicOrganizeTree wp : wpls) {
|
|
|
+ if (i.getForeignKeyId().equals(wp.getId())) {
|
|
|
+ vo.setCurrent(DoubleUtils.keepPrecision((i.getYfdl().doubleValue() / 10000)/wp.getJrCapacity(), 2));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ resultList.add(vo);
|
|
|
+ });
|
|
|
+
|
|
|
+ resultList.stream().forEach(i->{
|
|
|
+ Optional<ProEconPowerstationInfoDay1> optional = sameperiodList.stream()
|
|
|
+ .filter(j -> j.getForeignKeyId().equals(i.getWpid()) && DateUtils.getMonth(j.getRecordDate())==(i.getMonth()))
|
|
|
+ .findFirst();
|
|
|
+ if (optional.isPresent()){
|
|
|
+ ProEconPowerstationInfoDay1 tqinfoday = optional.get();
|
|
|
+ for (ProBasicOrganizeTree wp : wpls) {
|
|
|
+ if (i.getWpid().equals(wp.getId())) {
|
|
|
+ i.setSameperiod(DoubleUtils.keepPrecision((tqinfoday.getYfdl().doubleValue() / 10000) /wp.getJrCapacity(), 2));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (i.getSameperiod()==null) {
|
|
|
+ i.setSameperiod(0.0);
|
|
|
+ }else {
|
|
|
+ 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")){
|
|
|
+ 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")){
|
|
|
+ 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;
|
|
|
+ }
|
|
|
+
|
|
|
}
|