From db4325ad2c053265a859ee06510d256a9236c56a Mon Sep 17 00:00:00 2001 From: Jens Cornelsen Date: Sun, 7 Sep 2025 13:46:11 +0200 Subject: [PATCH 1/3] =?UTF-8?q?Fernw=C3=A4rme=20Erfurt=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Ausweis/brennstoffListe.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Ausweis/brennstoffListe.ts b/src/components/Ausweis/brennstoffListe.ts index 0bbae001..3448c190 100644 --- a/src/components/Ausweis/brennstoffListe.ts +++ b/src/components/Ausweis/brennstoffListe.ts @@ -42,6 +42,7 @@ const brennstoffe: [ ["Fernwärme HKW FB", "kWh", 1.0, 1.3, 0.4], ["Fernwärme HKW EB", "kWh", 1.0, 0.1, 0.06], ["Fernwärme Hamburg", "kWh", 1.0, 0.33, 0.064], + ["Fernwärme Erfurt", "kWh", 1.0, 0.3, 0], ["Erdgas", "kWh", 1.0, 1.1, 0.24], ["Heizöl", "kWh", 1.0, 1.1, 0.31], ["Heizöl", "l", 10.0, 1.1, 0.31], -- 2.49.1 From d31c8c2fb2d569fac71b7f2876a87cff2e13cad0 Mon Sep 17 00:00:00 2001 From: Jens Cornelsen Date: Mon, 8 Sep 2025 14:05:27 +0200 Subject: [PATCH 2/3] =?UTF-8?q?Fernw=C3=A4rme=20Neum=C3=BCnster?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Ausweis/brennstoffListe.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Ausweis/brennstoffListe.ts b/src/components/Ausweis/brennstoffListe.ts index 3448c190..cd9fd9c0 100644 --- a/src/components/Ausweis/brennstoffListe.ts +++ b/src/components/Ausweis/brennstoffListe.ts @@ -43,6 +43,7 @@ const brennstoffe: [ ["Fernwärme HKW EB", "kWh", 1.0, 0.1, 0.06], ["Fernwärme Hamburg", "kWh", 1.0, 0.33, 0.064], ["Fernwärme Erfurt", "kWh", 1.0, 0.3, 0], + ["Fernwärme Neumünster", "kWh", 1.0, 0.28, 0.0133], ["Erdgas", "kWh", 1.0, 1.1, 0.24], ["Heizöl", "kWh", 1.0, 1.1, 0.31], ["Heizöl", "l", 10.0, 1.1, 0.31], -- 2.49.1 From 9e6e893c28da93973a477a52abb220ca77c38ed4 Mon Sep 17 00:00:00 2001 From: Moritz Utcke Date: Wed, 17 Sep 2025 10:25:15 -0400 Subject: [PATCH 3/3] Reseller kann sich nicht einloggen --- src/pages/dashboard/objekte/index.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/dashboard/objekte/index.astro b/src/pages/dashboard/objekte/index.astro index 58f3f013..b09676a4 100644 --- a/src/pages/dashboard/objekte/index.astro +++ b/src/pages/dashboard/objekte/index.astro @@ -12,7 +12,7 @@ if (!user) { const totalPageCount = await prisma.aufnahme.count({ where: - ((user.rolle !== Enums.BenutzerRolle.ADMIN) && (user.rolle !== Enums.BenutzerRolle.RESELLER)) + (user.rolle !== Enums.BenutzerRolle.ADMIN) ? { benutzer: { id: user.id, -- 2.49.1