|
@@ -4,10 +4,8 @@ import com.gyee.common.util.DateUtils;
|
|
|
import com.gyee.common.util.SortUtils;
|
|
|
import com.gyee.runeconomy.dto.CoulometricVo;
|
|
|
import com.gyee.runeconomy.init.CacheContext;
|
|
|
-import com.gyee.runeconomy.model.auto.ProBasicPowerstation;
|
|
|
-import com.gyee.runeconomy.model.auto.ProBasicProjectPlan;
|
|
|
-import com.gyee.runeconomy.model.auto.ProEconPowerstationInfoDay1;
|
|
|
-import com.gyee.runeconomy.model.auto.ProEconPowerstationInfoDay5;
|
|
|
+import com.gyee.runeconomy.model.auto.*;
|
|
|
+import com.gyee.runeconomy.service.auto.IProBasicFeasibilityStudyService;
|
|
|
import com.gyee.runeconomy.service.auto.IProBasicProjectPlanService;
|
|
|
import com.gyee.runeconomy.service.auto.IProEconPowerstationInfoDay1Service;
|
|
|
import com.gyee.runeconomy.service.auto.IProEconPowerstationInfoDay5Service;
|
|
@@ -30,6 +28,8 @@ public class StudyElectricityService {
|
|
|
@Resource
|
|
|
private IProBasicProjectPlanService proBasicProjectPlanService;
|
|
|
|
|
|
+ @Resource
|
|
|
+ private IProBasicFeasibilityStudyService proBasicFeasibilityStudyService;
|
|
|
|
|
|
public Map<String, Object> studyelectricity(String wpId) throws Exception {
|
|
|
|
|
@@ -64,12 +64,19 @@ public class StudyElectricityService {
|
|
|
for (ProBasicPowerstation wpls : wplsG) {
|
|
|
|
|
|
//计划电量-循环所有场站当前月集合
|
|
|
- List<ProBasicProjectPlan> currentls = proBasicProjectPlanService.getmonthList(String.valueOf(day));
|
|
|
+ List<ProBasicProjectPlan> currentjhls = proBasicProjectPlanService.getmonthList(String.valueOf(day));
|
|
|
|
|
|
//当前场站循环当前月
|
|
|
- List<ProBasicProjectPlan> currentjh = currentls.stream().filter(wp -> wp.getWindpowerstationId().equals(wpls.getId())).collect(Collectors.toList());
|
|
|
+ List<ProBasicProjectPlan> currentjh = currentjhls.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> currentky = currentkyls.stream().filter(wp -> wp.getWindpowerstationId().equals(wpls.getId())).collect(Collectors.toList());
|
|
|
+ bykydlhjsum = currentky.stream().mapToDouble(ProBasicFeasibilityStudy::getGeneratingCapacity).sum(); //本月计划电量合
|
|
|
+
|
|
|
|
|
|
//当前场站循环月实际电量
|
|
|
List<ProEconPowerstationInfoDay5> sjdlls = proEconPowerstationInfoDay5Service.getmax(wpls.getId(), firstDayZeroHour);
|
|
@@ -77,11 +84,6 @@ public class StudyElectricityService {
|
|
|
bysjdlhjsum = sjdlls.get(0).getYfdldb().doubleValue();
|
|
|
}
|
|
|
|
|
|
- //当前场站循环月日照强度
|
|
|
- List<ProEconPowerstationInfoDay1> rzqdls = proEconPowerstationInfoDay1Service.getmax(wpls.getId(), firstDayZeroHour);
|
|
|
- if (!rzqdls.isEmpty() && rzqdls != null) {
|
|
|
- bykydlhjsum = rzqdls.get(0).getYpjfs().doubleValue();
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
|
|
@@ -94,6 +96,8 @@ public class StudyElectricityService {
|
|
|
vo.setSjdl(StringUtils.round(bysjdlhjsum / 10000, 2));
|
|
|
//添加完成情况
|
|
|
vo.setWcqk(StringUtils.round(((bysjdlhjsum / 10000) / byjhdlsum) * 100, 0));
|
|
|
+ //添加可研电量
|
|
|
+ vo.setRzqd(StringUtils.round(bykydlhjsum,2));
|
|
|
vos.add(vo);
|
|
|
|
|
|
SortUtils.sort(vos, "hours", SortUtils.ASC);
|