1. 修改逆變器分析 bug fix
2. 背景執行 bug fix 3. 電站總覽 底板字體修改
This commit is contained in:
parent
c93680eba3
commit
dc9023cf85
@ -131,6 +131,8 @@ namespace SolarPower.Quartz.Jobs
|
||||
#region 發電金額
|
||||
|
||||
history.MONEY = history.KWH * powerStation.PowerRate;
|
||||
history.TODAYMONEY = history.TodayKWh * powerStation.PowerRate;
|
||||
history.TOTALMONEY = history.TotalKWH * powerStation.PowerRate;
|
||||
|
||||
//即時發電金額
|
||||
switch (powerStation.SolarType)
|
||||
@ -229,6 +231,8 @@ namespace SolarPower.Quartz.Jobs
|
||||
carbonRate = Convert.ToDouble(await powerStationRepository.GetOneVariableByName("CarbonRate"));
|
||||
|
||||
history.CARBON = history.KWH * carbonRate;
|
||||
history.TODAYCARBON = history.TodayKWh * carbonRate;
|
||||
history.TOTALCARBON = history.TotalKWH * carbonRate;
|
||||
//if (lastmoneyhistorybyhour != null)
|
||||
//{
|
||||
// history.TODAYCARBON = lastmoneyhistorybyhour.TODAYCARBON + history.KWH * carbonRate;
|
||||
|
||||
@ -4473,7 +4473,7 @@ namespace SolarPower.Repository.Implement
|
||||
|
||||
sql_perSiteDB.Add(temp_sql);
|
||||
}
|
||||
sql = string.Join(" UNION ", sql_perSiteDB);
|
||||
sql = "SELECT * FROM (" + string.Join(" UNION ", sql_perSiteDB) + ") a ORDER BY a.TIMESTAMP ASC";
|
||||
|
||||
result = (await conn.QueryAsync<InverterHistory>(sql, new { NowDay = nowDay })).ToList();
|
||||
}
|
||||
@ -4504,7 +4504,7 @@ namespace SolarPower.Repository.Implement
|
||||
|
||||
var temp_sql = $@"SELECT
|
||||
DATE_FORMAT(inv.TIMESTAMP, '%Y-%m-%d') AS TIMESTAMP,
|
||||
INVERTERID,
|
||||
inv.INVERTERID,
|
||||
i.InverterName AS INVERTERName,
|
||||
inv.Irradiance,
|
||||
inv.KWH,
|
||||
@ -4523,7 +4523,7 @@ namespace SolarPower.Repository.Implement
|
||||
|
||||
sql_perSiteDB.Add(temp_sql);
|
||||
}
|
||||
sql = string.Join(" UNION ", sql_perSiteDB);
|
||||
sql = "SELECT * FROM (" + string.Join(" UNION ", sql_perSiteDB) + ") a ORDER BY a.TIMESTAMP ASC";
|
||||
|
||||
result = (await conn.QueryAsync<InverterHistory>(sql, new { StartDay = startDay, EndDay = endDay })).ToList();
|
||||
}
|
||||
@ -4554,7 +4554,7 @@ namespace SolarPower.Repository.Implement
|
||||
|
||||
var temp_sql = $@"SELECT
|
||||
DATE_FORMAT(inv.TIMESTAMP, '%Y-%m-%d') AS TIMESTAMP,
|
||||
INVERTERID,
|
||||
inv.INVERTERID,
|
||||
i.InverterName AS INVERTERName,
|
||||
inv.KWH,
|
||||
inv.TODAYKWH,
|
||||
|
||||
@ -22,12 +22,12 @@
|
||||
<div class="col-xl-2">
|
||||
<h1 class="subheader-title">
|
||||
<span id="power-station-healthStatus"></span>
|
||||
<span id="power-station-title">新竹巨城站</span>
|
||||
<span id="power-station-title">電站名稱</span>
|
||||
</h1>
|
||||
</div>
|
||||
<div class="col-xl-3 d-flex justify-content-start">
|
||||
<p class="card-text px-3"><i class="fal fa-cloud-sun-rain fa-3x" id="weather-icon"></i></p>
|
||||
<p class="font-weight-bold" id="weather-temp">27°C<br>降雨幾率: 15%</p>
|
||||
<p class="font-weight-bold" id="weather-temp">27°C<br>降雨幾率: 0%</p>
|
||||
</div>
|
||||
</div>
|
||||
<ul class="nav nav-tabs mb-5" role="tablist">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user