bug修改

This commit is contained in:
2026-01-28 17:06:07 +08:00
parent 8439ec5bdf
commit 93a15e497f

View File

@ -818,7 +818,7 @@ public class StationHomeServiceImpl implements StationHomeService {
if(DataCollectConstant.ONE.equals(station.getInverterFlag())){
//当前功率(光伏)、总发电量、日发电量
MpptActiveVo pv = openStationService.getPvActivePower(stationId);
data.setCurrentPower(pv.getPvActivePower());
data.setPvCurrentPower(pv.getPvActivePower());
data.setDailyReleaseElec(pv.getDailyReleaseElec());
//计算累计发电量
BigDecimal totalReleaseElec = elecMeterValueService.selectSumValue(station.getId(),DeviceTypeConstant.ELEC_METER_VALUE_TYPE.PV_CHARGE,null);