From: Jan Büren Date: Mon, 13 Jul 2020 12:16:17 +0000 (+0200) Subject: Lagerbestand: Paginieren An- und Ausschalten X-Git-Tag: release-3.5.6.1~117 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=cae732b8bee471e0611a68d29978aa80551b256f;p=kivitendo-erp.git Lagerbestand: Paginieren An- und Ausschalten --- diff --git a/bin/mozilla/wh.pl b/bin/mozilla/wh.pl index e8afc5dae..1f554441b 100644 --- a/bin/mozilla/wh.pl +++ b/bin/mozilla/wh.pl @@ -835,7 +835,7 @@ sub generate_report { $form->{report_generator_output_format} = 'HTML' if !$form->{report_generator_output_format}; # manual paginating - my $allrows = !!($form->{report_generator_output_format} ne 'HTML') ; + my $allrows = $form->{report_generator_output_format} eq 'HTML' ? $form->{allrows} : 1; my $page = $::form->{page} || 1; my $pages = {}; $pages->{per_page} = $::form->{per_page} || 20; diff --git a/locale/de/all b/locale/de/all index c5f2a36c7..9e31b68b9 100755 --- a/locale/de/all +++ b/locale/de/all @@ -1849,6 +1849,7 @@ $self->{texts} = { 'List Printers' => 'Drucker anzeigen', 'List Transactions' => 'Buchungsliste', 'List Users, Clients and User Groups' => 'Benutzer, Mandanten und Benutzergruppen anzeigen', + 'List all rows' => 'Alle Reihen anzeigen', 'List current background jobs' => 'Aktuelle Hintergrund-Jobs anzeigen', 'List export' => 'Export anzeigen', 'List of bank collections' => 'Bankeinzugsliste', diff --git a/templates/webpages/wh/report_filter.html b/templates/webpages/wh/report_filter.html index fbf68554c..9d79535c6 100644 --- a/templates/webpages/wh/report_filter.html +++ b/templates/webpages/wh/report_filter.html @@ -146,6 +146,13 @@ [% L.radio_button_tag("stock_value_basis", value='list_price', checked=0, label=LxERP.t8('List Price')) %] + + [% "List all rows" | $T8 %]: + + + [% L.yes_no_tag("allrows", 1) %] + +