Lagerbestand: Paginieren An- und Ausschalten
authorJan Büren <jan@kivitendo.de>
Mon, 13 Jul 2020 12:16:17 +0000 (14:16 +0200)
committerJan Büren <jan@kivitendo.de>
Fri, 24 Jul 2020 11:43:23 +0000 (13:43 +0200)
bin/mozilla/wh.pl
locale/de/all
templates/webpages/wh/report_filter.html

index e8afc5d..1f55444 100644 (file)
@@ -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;
index c5f2a36..9e31b68 100755 (executable)
@@ -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',
index fbf6855..9d79535 100644 (file)
          [% L.radio_button_tag("stock_value_basis", value='list_price',     checked=0, label=LxERP.t8('List Price')) %]
         </td>
        </tr>
+        <th align="right">
+          [% "List all rows" | $T8 %]:
+        </th>
+        <td align="left">
+         [% L.yes_no_tag("allrows", 1) %]
+        </td>
+       </tr>
 
       </table>
      </td>