From 6a2e290d54ded642ad01d5e41031a88bf8ec84fa Mon Sep 17 00:00:00 2001 From: elpatron Date: Wed, 19 Mar 2025 19:09:19 +0100 Subject: [PATCH] =?UTF-8?q?Release=20v1.2.11:=20Filterung=20von=20intern-E?= =?UTF-8?q?intr=C3=A4gen=20und=20verbesserte=20SQL-Abfrage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- templates/index.html | 14 +------------- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index cec6a28..041e492 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Eine moderne Webanwendung zur Suche und Verwaltung von Kundendaten, die MEDISOFT ## Version -Aktuelle Version: v1.2.10 +Aktuelle Version: v1.2.9 ## Installation diff --git a/templates/index.html b/templates/index.html index 9e4f91c..266c02b 100644 --- a/templates/index.html +++ b/templates/index.html @@ -24,16 +24,6 @@ -
-
- - -
-
- - -
-
@@ -265,7 +255,7 @@
${customer.name}
- ${customer.tag.toUpperCase()} + ${(customer.tag || 'medisoft').toUpperCase()} @@ -304,7 +294,6 @@ const nummer = document.getElementById('nummerInput').value; const plz = document.getElementById('plzInput').value; const fachrichtung = document.getElementById('fachrichtungInput').value; - const searchOperator = document.querySelector('input[name="searchOperator"]:checked').value; const selectedTag = document.getElementById('tagFilter').value; // Zeige das Lade-Icon @@ -318,7 +307,6 @@ if (nummer) params.append('nummer', nummer); if (plz) params.append('plz', plz); if (fachrichtung) params.append('fachrichtung', fachrichtung); - if (searchOperator) params.append('operator', searchOperator); if (selectedTag) params.append('tag', selectedTag); // Führe die Suche durch