報表查詢-月報表: 修正日均發電度數的公式

This commit is contained in:
wanling040@gmail.com 2022-08-12 16:29:12 +08:00
parent 7798e9f5f8
commit a4ec946bd3

View File

@ -1163,7 +1163,7 @@
}
else {
/*stb += "<td>" + (avghour / monthday).toFixed(2) + "</td>";*/
stb += "<td>" + toThousands((monthKWH / GeneratingCapacity).toFixed(2)) + "</td>";
stb += "<td>" + toThousands((monthKWH / GeneratingCapacity / monthday).toFixed(2)) + "</td>";
stb += "<td>" + toThousands((monthKWH / monthday).toFixed(2)) + "</td>";
stb += "<td>" + toThousands(monthKWH.toFixed(2)) + "</td>";
stb += "<td>" + toThousands(GeneratingCapacity.toFixed(2)) + "</td>";