@@ -19,12 +27,17 @@ \ No newline at end of file diff --git a/webapp/src/components/BatteryView.vue b/webapp/src/components/BatteryView.vue index ff71b7892..d8f22ac97 100644 --- a/webapp/src/components/BatteryView.vue +++ b/webapp/src/components/BatteryView.vue @@ -106,7 +106,7 @@ 'text-bg-success': !batteryData.alarms.dischargeCurrent }"> - + @@ -115,7 +115,7 @@ 'text-bg-success': !batteryData.warnings.dischargeCurrent }"> - + @@ -127,7 +127,7 @@ 'text-bg-success': !batteryData.alarms.chargeCurrent }"> - + @@ -136,7 +136,7 @@ 'text-bg-success': !batteryData.warnings.chargeCurrent }"> - + @@ -148,7 +148,7 @@ 'text-bg-success': !batteryData.alarms.lowTemperature }"> - + @@ -157,7 +157,7 @@ 'text-bg-success': !batteryData.warnings.lowTemperature }"> - + @@ -169,7 +169,7 @@ 'text-bg-success': !batteryData.alarms.highTemperature }"> - + @@ -178,7 +178,7 @@ 'text-bg-success': !batteryData.warnings.highTemperature }"> - + @@ -190,7 +190,7 @@ 'text-bg-success': !batteryData.alarms.lowVoltage }"> - + @@ -199,7 +199,7 @@ 'text-bg-success': !batteryData.warnings.lowVoltage }"> - + @@ -211,7 +211,7 @@ 'text-bg-success': !batteryData.alarms.highVoltage }"> - + @@ -220,7 +220,7 @@ 'text-bg-success': !batteryData.warnings.highVoltage }"> - + @@ -232,7 +232,7 @@ 'text-bg-success': !batteryData.alarms.bmsInternal }"> - + @@ -241,7 +241,7 @@ 'text-bg-success': !batteryData.warnings.bmsInternal }"> - + diff --git a/webapp/src/components/FirmwareInfo.vue b/webapp/src/components/FirmwareInfo.vue index 7a127c109..9eda8935b 100644 --- a/webapp/src/components/FirmwareInfo.vue +++ b/webapp/src/components/FirmwareInfo.vue @@ -17,9 +17,9 @@ {{ $t('firmwareinfo.FirmwareVersion') }} - - {{ systemStatus.git_hash?.substring(1) }} + {{ systemStatus.git_hash }} diff --git a/webapp/src/components/InverterTotalInfo.vue b/webapp/src/components/InverterTotalInfo.vue index 5952c24cd..678312d54 100644 --- a/webapp/src/components/InverterTotalInfo.vue +++ b/webapp/src/components/InverterTotalInfo.vue @@ -1,57 +1,123 @@ \ No newline at end of file diff --git a/webapp/src/locales/de.json b/webapp/src/locales/de.json index c6ebd4d59..da25cf6b5 100644 --- a/webapp/src/locales/de.json +++ b/webapp/src/locales/de.json @@ -28,7 +28,8 @@ "Login": "Anmelden" }, "base": { - "Loading": "Lade..." + "Loading": "Lade...", + "Reload": "Aktualisieren" }, "localeswitcher": { "Dark": "Dunkel", @@ -325,9 +326,13 @@ "Unit": "Einheit" }, "invertertotalinfo": { - "TotalYieldTotal": "Gesamtertrag Insgesamt", - "TotalYieldDay": "Gesamtertrag Heute", - "TotalPower": "Gesamtleistung" + "InverterTotalYieldTotal": "Inverter Gesamtertrag Insgesamt", + "InverterTotalYieldDay": "Inverter Gesamtertrag Heute", + "InverterTotalPower": "Inverter Gesamtleistung", + "MpptTotalYieldTotal": "MPPT Gesamtertrag Insgesamt", + "MpptTotalYieldDay": "MPPT Gesamtertrag Heute", + "MpptTotalPower": "MPPT Gesamtleistung", + "BatterySoc": "Ladezustand" }, "inverterchannelproperty": { "Power": "Leistung", diff --git a/webapp/src/locales/en.json b/webapp/src/locales/en.json index 6851ca126..537db46a9 100644 --- a/webapp/src/locales/en.json +++ b/webapp/src/locales/en.json @@ -28,7 +28,8 @@ "Login": "Login" }, "base": { - "Loading": "Loading..." + "Loading": "Loading...", + "Reload": "Reload" }, "localeswitcher": { "Dark": "Dark", @@ -325,9 +326,13 @@ "Unit": "Unit" }, "invertertotalinfo": { - "TotalYieldTotal": "Total Yield Total", - "TotalYieldDay": "Total Yield Day", - "TotalPower": "Total Power" + "InverterTotalYieldTotal": "Inverter Total Yield Total", + "InverterTotalYieldDay": "Inverter Total Yield Day", + "InverterTotalPower": "Inverter Total Power", + "MpptTotalYieldTotal": "MPPT Total Yield Total", + "MpptTotalYieldDay": "MPPT Total Yield Day", + "MpptTotalPower": "MPPT Total Power", + "BatterySoc": "State of charge" }, "inverterchannelproperty": { "Power": "Power", diff --git a/webapp/src/locales/fr.json b/webapp/src/locales/fr.json index b69ab2cc1..c91fc0dc0 100644 --- a/webapp/src/locales/fr.json +++ b/webapp/src/locales/fr.json @@ -28,7 +28,8 @@ "Login": "Connexion" }, "base": { - "Loading": "Chargement..." + "Loading": "Chargement...", + "Reload": "Reload" }, "localeswitcher": { "Dark": "Dark", @@ -324,9 +325,13 @@ "Unit": "UnitΓ©" }, "invertertotalinfo": { - "TotalYieldTotal": "Rendement total", - "TotalYieldDay": "Rendement du jour", - "TotalPower": "Puissance de l'installation" + "InverterTotalYieldTotal": "Onduleurs rendement total", + "InverterTotalYieldDay": "Onduleurs rendement du jour", + "InverterTotalPower": "Onduleurs puissance de l'installation", + "MpptTotalYieldTotal": "MPPT rendement total", + "MpptTotalYieldDay": "MPPT rendement du jour", + "MpptTotalPower": "MPPT puissance de l'installation", + "BatterySoc": "State of charge" }, "inverterchannelproperty": { "Power": "Puissance", diff --git a/webapp/src/types/LiveDataStatus.ts b/webapp/src/types/LiveDataStatus.ts index 9501b34b4..a6fdac2ec 100644 --- a/webapp/src/types/LiveDataStatus.ts +++ b/webapp/src/types/LiveDataStatus.ts @@ -24,6 +24,7 @@ export interface Inverter { serial: number; name: string; data_age: number; + poll_enabled: boolean; reachable: boolean; producing: boolean; limit_relative: number; @@ -48,6 +49,7 @@ export interface Hints { export interface Vedirect { enabled: boolean; + total: Total; } export interface Huawei { @@ -56,6 +58,7 @@ export interface Huawei { export interface Battery { enabled: boolean; + soc: ValueObject; } export interface LiveData { diff --git a/webapp/src/views/ConsoleInfoView.vue b/webapp/src/views/ConsoleInfoView.vue index 54820ca9b..3ccf4cdf5 100644 --- a/webapp/src/views/ConsoleInfoView.vue +++ b/webapp/src/views/ConsoleInfoView.vue @@ -87,7 +87,7 @@ export default defineComponent({ this.socket.onopen = function (event) { console.log(event); - console.log("Successfuly connected to the echo websocket server..."); + console.log("Successfully connected to the echo websocket server..."); }; // Listen to window events , When the window closes , Take the initiative to disconnect websocket Connect diff --git a/webapp/src/views/HomeView.vue b/webapp/src/views/HomeView.vue index 28546f0be..58fe4097b 100644 --- a/webapp/src/views/HomeView.vue +++ b/webapp/src/views/HomeView.vue @@ -1,7 +1,7 @@