ReportGenerator: set_options: auch bei csv_export nur Standardwerte beibehalten
authorBernd Bleßmann <bernd@kivitendo-premium.de>
Fri, 4 Oct 2019 16:51:05 +0000 (18:51 +0200)
committerBernd Bleßmann <bernd@kivitendo-premium.de>
Fri, 4 Oct 2019 17:09:41 +0000 (19:09 +0200)
SL/ReportGenerator.pm

index f530179..75180a9 100644 (file)
@@ -166,6 +166,8 @@ sub set_options {
   while (my ($key, $value) = each %options) {
     if ($key eq 'pdf_export') {
       $self->{options}->{pdf_export}->{$_} = $value->{$_} for keys %{ $value };
+    } elsif ($key eq 'csv_export') {
+      $self->{options}->{csv_export}->{$_} = $value->{$_} for keys %{ $value };
     } else {
       $self->{options}->{$key} = $value;
     }