|
@@ -1,6 +1,5 @@
|
|
|
package com.gyee.runeconomy.service.Electricity;
|
|
|
|
|
|
-import com.gyee.common.contant.ContantXk;
|
|
|
import com.gyee.common.util.DateUtils;
|
|
|
import com.gyee.common.util.SortUtils;
|
|
|
import com.gyee.runeconomy.dto.CoulometricVo;
|
|
@@ -50,13 +49,10 @@ public class Electricityservice {
|
|
|
private final String FD = "-1";
|
|
|
private final String GF = "-2";
|
|
|
|
|
|
- public Map<String, Object> planvalue(String wpId, String timetype) throws Exception {
|
|
|
+ public Map<String, Object> planvalue(String wpId, String timetype,String year) throws Exception {
|
|
|
|
|
|
List<ElectricityVo> vos = new ArrayList<ElectricityVo>();
|
|
|
Map<String, Object> map = new LinkedHashMap<>();
|
|
|
- Map<String, Object> map1 = new LinkedHashMap<>();
|
|
|
-
|
|
|
- List<String> hjlist = new ArrayList<>();
|
|
|
if (wpId.endsWith(QS) || wpId.endsWith(FD) || wpId.endsWith(GF) || CacheContext.wpmapls.containsKey(wpId)) {
|
|
|
|
|
|
List<ProBasicPowerstation> wplist = new ArrayList<>();
|
|
@@ -79,41 +75,22 @@ public class Electricityservice {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- Map<String, ProBasicPowerstationPoint> wtpointmap = null;
|
|
|
- Map<String, Map<String, ProBasicPowerstationPoint>> pointwpmap = CacheContext.wppointmap;
|
|
|
- Map<String, Map<String, ProBasicPowerstationPoint>> pointwpmap1 = CacheContext.companypointmap;
|
|
|
- Map<String, Map<String, ProBasicPowerstationPoint>> pointwpmap2 = CacheContext.regionpointmap;
|
|
|
- Map<String, Map<String, ProBasicPowerstationPoint>> pointwpmap3 = CacheContext.grouppointmap;
|
|
|
-
|
|
|
- if (pointwpmap.containsKey(wpId)) {
|
|
|
- wtpointmap = pointwpmap.get(wpId);
|
|
|
- } else if (pointwpmap1.containsKey(wpId)) {
|
|
|
- wtpointmap = pointwpmap1.get(wpId);
|
|
|
- } else if (pointwpmap2.containsKey(wpId)) {
|
|
|
- wtpointmap = pointwpmap2.get(wpId);
|
|
|
- } else if (pointwpmap3.containsKey(wpId)) {
|
|
|
- wtpointmap = pointwpmap3.get(wpId);
|
|
|
- }
|
|
|
-
|
|
|
- String month = wtpointmap.get(ContantXk.YFDL).getNemCode();
|
|
|
- String rfdl = wtpointmap.get(ContantXk.RFDL).getNemCode();
|
|
|
- String nfdl = wtpointmap.get(ContantXk.NFDL).getNemCode();
|
|
|
-
|
|
|
|
|
|
if (timetype.contains("month")) {
|
|
|
|
|
|
if (!wplist.isEmpty()) {
|
|
|
int day = 0;
|
|
|
- //当前天数
|
|
|
- int month2 = DateUtils.getMonth(new Date());
|
|
|
- //当前年份
|
|
|
- Calendar cal = Calendar.getInstance();
|
|
|
- int currentyear = cal.get(Calendar.YEAR);//本年
|
|
|
|
|
|
+// // 当前年份
|
|
|
+// Calendar cal = Calendar.getInstance();
|
|
|
+// int currentyear = cal.get(Calendar.YEAR);
|
|
|
+ int currentyear = Integer.parseInt(year);
|
|
|
|
|
|
- //当月第一天0点值
|
|
|
+ // 当月第一天0点值
|
|
|
Calendar calendar = Calendar.getInstance();
|
|
|
calendar.setTime(new Date());
|
|
|
+ // 设置年份为传递的currentyear
|
|
|
+ calendar.set(Calendar.YEAR, currentyear);
|
|
|
calendar.set(Calendar.DAY_OF_MONTH, 1);
|
|
|
calendar.set(Calendar.HOUR_OF_DAY, 0);
|
|
|
calendar.set(Calendar.MINUTE, 0);
|
|
@@ -125,7 +102,7 @@ public class Electricityservice {
|
|
|
// 获取当前日期
|
|
|
Calendar calendar2 = Calendar.getInstance();
|
|
|
calendar2.setTime(new Date());
|
|
|
-
|
|
|
+ calendar2.set(Calendar.YEAR, currentyear); // 根据当前年份变化
|
|
|
// 设置为本年一月一号0点
|
|
|
calendar2.set(Calendar.MONTH, Calendar.JANUARY); // 0表示一月
|
|
|
calendar2.set(Calendar.DAY_OF_MONTH, 1);
|
|
@@ -143,12 +120,11 @@ public class Electricityservice {
|
|
|
double bysjdlhjsum = 0.0;
|
|
|
BigDecimal dqzqlsum = null;
|
|
|
BigDecimal rfdlyclsum = null;
|
|
|
- double number = 100;
|
|
|
day = i;
|
|
|
for (ProBasicPowerstation wpls : wplist) {
|
|
|
|
|
|
//计划电量
|
|
|
- List<ProBasicProjectPlan> currentls = proBasicProjectPlanService.getmonthList(String.valueOf(day)); //本月所有集合
|
|
|
+ List<ProBasicProjectPlan> currentls = proBasicProjectPlanService.getmonthList1(String.valueOf(day),currentyear); //本月所有集合
|
|
|
|
|
|
List<ProBasicProjectPlan> yearls = proBasicProjectPlanService.getList(String.valueOf(currentyear));
|
|
|
List<ProBasicProjectPlan> yearjh = yearls.stream().filter(wp -> wp.getWindpowerstationId().equals(wpls.getId())).collect(Collectors.toList());
|
|
@@ -199,11 +175,18 @@ public class Electricityservice {
|
|
|
|
|
|
|
|
|
//添加当月占比
|
|
|
- vo.setDyzb(StringUtils.round(((bysjdlhjsum / 10000) / bnjhdlsum) * 100, 0));
|
|
|
+ if (bnjhdlsum != 0) {
|
|
|
+ vo.setDyzb(StringUtils.round(((bysjdlhjsum / 10000) / bnjhdlsum) * 100, 0));
|
|
|
+ }else {
|
|
|
+ vo.setDyzb(0.0);
|
|
|
+ }
|
|
|
|
|
|
//添加全年占比
|
|
|
- vo.setQnzb(StringUtils.round(((bysjdlhjsum / 10000) / yeardlsum) * 100, 0));
|
|
|
-
|
|
|
+ if (yeardlsum != 0) {
|
|
|
+ vo.setQnzb(StringUtils.round(((bysjdlhjsum / 10000) / yeardlsum) * 100, 0));
|
|
|
+ } else {
|
|
|
+ vo.setQnzb(0.0);
|
|
|
+ }
|
|
|
//添加超短期准确率
|
|
|
vo.setDqzql(dqzqlsum);
|
|
|
|
|
@@ -221,8 +204,6 @@ public class Electricityservice {
|
|
|
double bnsjdlhjsum = 0.0;
|
|
|
BigDecimal dqzqlhjsum = null;
|
|
|
BigDecimal rfdlychjsum = null;
|
|
|
- double cdqyc = 0.0;
|
|
|
-
|
|
|
|
|
|
//计算合计
|
|
|
for (ProBasicPowerstation wpls : wplist) {
|
|
@@ -237,9 +218,12 @@ public class Electricityservice {
|
|
|
// bnsjdlhjsum += bnsjdlhj.getPointValueInDouble();
|
|
|
|
|
|
List<ProEconPowerstationInfoDay5> sjdlls = proEconPowerstationInfoDay5Service.getmax(wpls.getId(), yearHour);
|
|
|
- bnsjdlhjsum += sjdlls.get(0).getNfdldb().doubleValue();
|
|
|
+ if (!sjdlls.isEmpty() && sjdlls != null) {
|
|
|
+ bnsjdlhjsum += sjdlls.get(0).getNfdldb().doubleValue();
|
|
|
+ }
|
|
|
|
|
|
Calendar calendar1 = Calendar.getInstance();
|
|
|
+ calendar1.set(Calendar.YEAR, currentyear); // 设置年份为当前传入的年份
|
|
|
calendar1.set(Calendar.DAY_OF_YEAR, 1);
|
|
|
calendar1.set(Calendar.HOUR_OF_DAY, 0);
|
|
|
calendar1.set(Calendar.MINUTE, 0);
|
|
@@ -248,7 +232,7 @@ public class Electricityservice {
|
|
|
|
|
|
Date firstDayOfYearZeroHour = calendar1.getTime();
|
|
|
|
|
|
- List<ProEconStationPower> dqyc = powerService.getlist1(wpls.getId(), firstDayOfYearZeroHour);
|
|
|
+ List<ProEconStationPower> dqyc = powerService.getlist2(wpls.getId(), firstDayOfYearZeroHour,currentyear);
|
|
|
if (!dqyc.isEmpty() && dqyc != null) {
|
|
|
dqzqlhjsum = dqyc.stream().map(ProEconStationPower::getPowerAccuracy).reduce(BigDecimal.ZERO, BigDecimal::add);
|
|
|
rfdlychjsum = dqyc.stream().map(ProEconStationPower::getDayPowerForecast).reduce(BigDecimal.ZERO, BigDecimal::add);
|
|
@@ -256,7 +240,11 @@ public class Electricityservice {
|
|
|
map.put("bnjhdlhj", MathUtil.twoBit(yeardlsum));
|
|
|
map.put("rfdlychj", rfdlychjsum);
|
|
|
map.put("bnsjdlhj", MathUtil.twoBit(bnsjdlhjsum / 10000));
|
|
|
- map.put("qnzbhj", StringUtils.round(((bnsjdlhjsum / 10000) / yeardlsum) * 100, 0));
|
|
|
+ if (yeardlsum!=0) {
|
|
|
+ map.put("qnzbhj", StringUtils.round(((bnsjdlhjsum / 10000) / yeardlsum) * 100, 0));
|
|
|
+ } else {
|
|
|
+ map.put("qnzbhj",0.0);
|
|
|
+ }
|
|
|
map.put("dqzqlhj", dqzqlhjsum);
|
|
|
|
|
|
}
|
|
@@ -270,7 +258,7 @@ public class Electricityservice {
|
|
|
|
|
|
}
|
|
|
|
|
|
- public Map<String, Object> coulometric(String wpId) throws Exception {
|
|
|
+ public Map<String, Object> coulometric(String wpId,String year) throws Exception {
|
|
|
|
|
|
List<ProBasicPowerstation> wplsG = CacheContext.wplsG.stream().filter(g -> wpId.equals(g.getId())).collect(Collectors.toList());
|
|
|
List<CoulometricVo> vos = new ArrayList<CoulometricVo>();
|
|
@@ -280,12 +268,15 @@ public class Electricityservice {
|
|
|
int ts = 1;
|
|
|
//当前年份
|
|
|
Calendar cal = Calendar.getInstance();
|
|
|
- int currentyear = cal.get(Calendar.YEAR);//本年
|
|
|
+ int dqnf = cal.get(Calendar.YEAR);//本年
|
|
|
+ int currentyear = Integer.parseInt(year);//本年
|
|
|
|
|
|
|
|
|
//当月第一天0点值
|
|
|
Calendar calendar = Calendar.getInstance();
|
|
|
calendar.setTime(new Date());
|
|
|
+ // 设置年份为传递的currentyear
|
|
|
+ calendar.set(Calendar.YEAR, currentyear);
|
|
|
calendar.set(Calendar.DAY_OF_MONTH, 1);
|
|
|
calendar.set(Calendar.HOUR_OF_DAY, 0);
|
|
|
calendar.set(Calendar.MINUTE, 0);
|
|
@@ -296,7 +287,7 @@ public class Electricityservice {
|
|
|
// 获取当前日期
|
|
|
Calendar calendar2 = Calendar.getInstance();
|
|
|
calendar2.setTime(new Date());
|
|
|
-
|
|
|
+ calendar2.set(Calendar.YEAR, currentyear); // 根据当前年份变化
|
|
|
// 设置为本年一月一号0点
|
|
|
calendar2.set(Calendar.MONTH, Calendar.JANUARY); // 0表示一月
|
|
|
calendar2.set(Calendar.DAY_OF_MONTH, 1);
|
|
@@ -342,7 +333,7 @@ public class Electricityservice {
|
|
|
//本月可研电量合计
|
|
|
double bykydlhjsum = 0.0;
|
|
|
|
|
|
- if (calFirstMonth == currentMonth) {
|
|
|
+ if (calFirstMonth == currentMonth && dqnf==currentyear) {
|
|
|
Calendar calendar5 = Calendar.getInstance();
|
|
|
ts = calendar5.get(Calendar.DAY_OF_MONTH);
|
|
|
} else {
|
|
@@ -354,14 +345,14 @@ public class Electricityservice {
|
|
|
for (ProBasicPowerstation wpls : wplsG) {
|
|
|
|
|
|
//计划电量-循环所有场站当前月集合
|
|
|
- List<ProBasicProjectPlan> currentls = proBasicProjectPlanService.getmonthList(String.valueOf(day));
|
|
|
+ List<ProBasicProjectPlan> currentls = proBasicProjectPlanService.getmonthList1(String.valueOf(day),currentyear);
|
|
|
|
|
|
//当前场站循环当前月
|
|
|
List<ProBasicProjectPlan> currentjh = currentls.stream().filter(wp -> wp.getWindpowerstationId().equals(wpls.getId())).collect(Collectors.toList());
|
|
|
byjhdlsum = currentjh.stream().mapToDouble(ProBasicProjectPlan::getGeneratingCapacity).sum(); //本月计划电量合
|
|
|
|
|
|
//可研电量-循环所有场站当前月集合
|
|
|
- List<ProBasicFeasibilityStudy> currentkyls = proBasicFeasibilityStudyService.getmonthList(String.valueOf(day));
|
|
|
+ List<ProBasicFeasibilityStudy> currentkyls = proBasicFeasibilityStudyService.getmonthList1(String.valueOf(day),currentyear);
|
|
|
|
|
|
//当前场站循环当前月
|
|
|
List<ProBasicFeasibilityStudy> currentky = currentkyls.stream().filter(wp -> wp.getWindpowerstationId().equals(wpls.getId())).collect(Collectors.toList());
|
|
@@ -393,9 +384,17 @@ public class Electricityservice {
|
|
|
vo.setSjdl(StringUtils.round(bysjdlhjsum / 10000, 2));
|
|
|
vo.setKydl(StringUtils.round(bykydlhjsum,2));
|
|
|
//添加完成情况
|
|
|
- vo.setWcqk(StringUtils.round(((bysjdlhjsum / 10000) / byjhdlsum) * 100, 0));
|
|
|
+ if (byjhdlsum != 0) {
|
|
|
+ vo.setWcqk(StringUtils.round(((bysjdlhjsum / 10000) / byjhdlsum) * 100, 0));
|
|
|
+ } else {
|
|
|
+ vo.setWcqk(0.0);
|
|
|
+ }
|
|
|
//添加完成情况
|
|
|
- vo.setKywcqk(StringUtils.round(((bysjdlhjsum / 10000) / bykydlhjsum) * 100, 0));
|
|
|
+ if (bykydlhjsum != 0) {
|
|
|
+ vo.setKywcqk(StringUtils.round(((bysjdlhjsum / 10000) / bykydlhjsum) * 100, 0));
|
|
|
+ } else {
|
|
|
+ vo.setKywcqk(0.0);
|
|
|
+ }
|
|
|
//等效小时数
|
|
|
vo.setDxfdxs(StringUtils.round(dxxss,0));
|
|
|
|
|
@@ -423,16 +422,28 @@ public class Electricityservice {
|
|
|
kyyeardlsum = kyyearjh.stream().mapToDouble(ProBasicFeasibilityStudy::getGeneratingCapacity).sum();
|
|
|
|
|
|
List<ProEconPowerstationInfoDay5> sjdlls = proEconPowerstationInfoDay5Service.getmax(wpId, yearHour);
|
|
|
- bnsjdlhjsum += sjdlls.get(0).getNfdldb().doubleValue();
|
|
|
+ if (!sjdlls.isEmpty() && sjdlls != null) {
|
|
|
+ bnsjdlhjsum += sjdlls.get(0).getNfdldb().doubleValue();
|
|
|
+ }
|
|
|
|
|
|
List<ProEconPowerstationInfoDay1> rzqddlls = proEconPowerstationInfoDay1Service.getmax(wpId, yearHour);
|
|
|
- bnrzqdhjsum += rzqddlls.get(0).getNpjfs().doubleValue();
|
|
|
+ if (!rzqddlls.isEmpty() && rzqddlls != null) {
|
|
|
+ bnrzqdhjsum += rzqddlls.get(0).getNpjfs().doubleValue();
|
|
|
+ }
|
|
|
|
|
|
map.put("jhdlhj",yeardlsum);
|
|
|
map.put("kydlhj",kyyeardlsum);
|
|
|
map.put("sjdlhj",StringUtils.round((bnsjdlhjsum / 10000),2));
|
|
|
- map.put("wcqkhj",StringUtils.round(((bnsjdlhjsum / 10000) / yeardlsum) * 100,0));
|
|
|
- map.put("kywcqkhj",StringUtils.round(((bnsjdlhjsum / 10000) / kyyeardlsum) * 100,0));
|
|
|
+ if (yeardlsum != 0) {
|
|
|
+ map.put("wcqkhj", StringUtils.round(((bnsjdlhjsum / 10000) / yeardlsum) * 100, 0));
|
|
|
+ }else {
|
|
|
+ map.put("wcqkhj",0.0);
|
|
|
+ }
|
|
|
+ if (kyyeardlsum != 0) {
|
|
|
+ map.put("kywcqkhj", StringUtils.round(((bnsjdlhjsum / 10000) / kyyeardlsum) * 100, 0));
|
|
|
+ } else {
|
|
|
+ map.put("kywcqkhj",0.0);
|
|
|
+ }
|
|
|
map.put("rzqdhj",StringUtils.round(bnrzqdhjsum,2));
|
|
|
map.put("dxxsshj",StringUtils.round(dxxsssum,0));
|
|
|
|