ReportGenerator: set_options: auch bei csv_export nur Standardwerte beibehalten
[kivitendo-erp.git] / 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;
     }