projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
70df0cd
)
ReportGenerator: set_options: auch bei csv_export nur Standardwerte beibehalten
author
Bernd Bleßmann
<bernd@kivitendo-premium.de>
Fri, 4 Oct 2019 16:51:05 +0000
(18:51 +0200)
committer
Bernd Bleßmann
<bernd@kivitendo-premium.de>
Fri, 4 Oct 2019 17:09:41 +0000
(19:09 +0200)
SL/ReportGenerator.pm
patch
|
blob
|
history
diff --git
a/SL/ReportGenerator.pm
b/SL/ReportGenerator.pm
index
f530179
..
75180a9
100644
(file)
--- a/
SL/ReportGenerator.pm
+++ b/
SL/ReportGenerator.pm
@@
-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;
}