From 49e01683ad1d16ec9788a5c70b123a30feb47f2e Mon Sep 17 00:00:00 2001 From: rene Date: Fri, 15 May 2026 13:51:26 +0200 Subject: [PATCH] =?UTF-8?q?Fix:=20'F=C3=A4llig=20bis'=20Umlaut=20korrigier?= =?UTF-8?q?t=20im=20PDF-Info-Block?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/routes/invoices.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/routes/invoices.py b/backend/routes/invoices.py index cb7bd90..4aceda3 100644 --- a/backend/routes/invoices.py +++ b/backend/routes/invoices.py @@ -160,7 +160,7 @@ def _generate_pdf(invoice, items) -> bytes: info_rows = [ ("Rechnungsnummer", invoice["invoice_number"]), ("Datum", fdate(invoice.get("created_at", ""))), - ("Faellig bis", due_date), + ("Fällig bis", due_date), ] if invoice.get("service_period"): info_rows.append(("Leistungszeitraum", invoice["service_period"]))