From c9076c9e1e403757845b551ee6fbc21ff2f18762 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bernd=20Ble=C3=9Fmann?= Date: Sat, 16 Mar 2019 18:15:22 +0100 Subject: [PATCH] Berichte Kunden/Lieferanten u. Artikel: CVars von Typ Datum als hidden mitnehmen Damit die Filter beim Export oder beim Sortieren nicht verschwinden. Behebt #215 (redmine). --- bin/mozilla/ct.pl | 2 ++ bin/mozilla/ic.pl | 2 ++ 2 files changed, 4 insertions(+) diff --git a/bin/mozilla/ct.pl b/bin/mozilla/ct.pl index 11c81ee0d..77770d8b8 100644 --- a/bin/mozilla/ct.pl +++ b/bin/mozilla/ct.pl @@ -229,6 +229,8 @@ sub list_names { addr_city addr_country addr_gln business_id salesman_id insertdateto insertdatefrom all ), "$form->{db}number", map({ "cvar_$_->{name}" } @searchable_custom_variables), + map({'cvar_'. $_->{name} .'_from'} grep({$_->{type} eq 'date'} @searchable_custom_variables)), + map({'cvar_'. $_->{name} .'_to'} grep({$_->{type} eq 'date'} @searchable_custom_variables)), map({'cvar_'. $_->{name} .'_qtyop'} grep({$_->{type} eq 'number'} @searchable_custom_variables)), map({ "l_$_" } @columns), ); diff --git a/bin/mozilla/ic.pl b/bin/mozilla/ic.pl index 9e3da5125..9803f0c07 100644 --- a/bin/mozilla/ic.pl +++ b/bin/mozilla/ic.pl @@ -420,6 +420,8 @@ sub generate_report { @itemstatus_keys, @callback_keys, map({ "cvar_$_->{name}" } @searchable_custom_variables), + map({'cvar_'. $_->{name} .'_from'} grep({$_->{type} eq 'date'} @searchable_custom_variables)), + map({'cvar_'. $_->{name} .'_to'} grep({$_->{type} eq 'date'} @searchable_custom_variables)), map({'cvar_'. $_->{name} .'_qtyop'} grep({$_->{type} eq 'number'} @searchable_custom_variables)), map({ "l_$_" } @columns), ); -- 2.20.1