From 6736b9c405448c6d80e6a0f5898096fae720b270 Mon Sep 17 00:00:00 2001 From: data Date: Tue, 3 Feb 2026 15:22:08 +0100 Subject: [PATCH] Filter korrigiert --- buchung_list.php | 17 +++++++++++++++-- core/modules/modSteuer.class.php | 2 +- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/buchung_list.php b/buchung_list.php index 85057ec..4d07b69 100644 --- a/buchung_list.php +++ b/buchung_list.php @@ -77,6 +77,20 @@ if (empty($page) || $page < 0) { } $offset = $limit * $page; +// Parameter für Links (Filter erhalten) +$param = ''; +$param .= '&jahr='.$jahr; +$param .= '&monat='.$monat; +if ($typ) { + $param .= '&search_typ='.urlencode($typ); +} +if ($search_ref) { + $param .= '&search_ref='.urlencode($search_ref); +} +if ($search_beschreibung) { + $param .= '&search_beschreibung='.urlencode($search_beschreibung); +} + /* * View */ @@ -178,8 +192,7 @@ if ($resql_count) { } // Filter-Formular -print '
'; -print ''; +print ''; print ''; print ''; diff --git a/core/modules/modSteuer.class.php b/core/modules/modSteuer.class.php index 3b9a9cc..a01d001 100755 --- a/core/modules/modSteuer.class.php +++ b/core/modules/modSteuer.class.php @@ -76,7 +76,7 @@ class modSteuer extends DolibarrModules $this->editor_squarred_logo = ''; // Must be image filename into the module/img directory followed with @modulename. Example: 'myimage.png@steuer' // Possible values for version are: 'development', 'experimental', 'dolibarr', 'dolibarr_deprecated', 'experimental_deprecated' or a version string like 'x.y.z' - $this->version = '1.1'; + $this->version = '1.2'; // Url to the file with your last numberversion of this module //$this->url_last_version = 'http://www.example.com/versionmodule.txt';