1. 修改 售電紀錄 及 發電效能 左邊電站列表

This commit is contained in:
Kai 2021-09-27 14:23:45 +08:00
parent e50b54cd93
commit 2deb6215d5
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ namespace SolarPower.Controllers
} }
var temp_solarType_where = $@" ps.SolarType = 0"; var temp_solarType_where = $@" ps.SolarType != 2";
where.Add(temp_solarType_where); where.Add(temp_solarType_where);
var powerStations = myPowerStationService.GetMyPowerStations(myUser, 1, null, where, where_entities); var powerStations = myPowerStationService.GetMyPowerStations(myUser, 1, null, where, where_entities);

View File

@ -47,7 +47,7 @@ namespace SolarPower.Controllers
where_entities.Add("Filter", filter); where_entities.Add("Filter", filter);
} }
var temp_solartype_where = @" ps.SolarType = 0"; var temp_solartype_where = @" ps.SolarType != 2";
where.Add(temp_solartype_where); where.Add(temp_solartype_where);
var powerStations = myPowerStationService.GetMyPowerStations(myUser, 1, null, where, where_entities); var powerStations = myPowerStationService.GetMyPowerStations(myUser, 1, null, where, where_entities);