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:
16fc2b2
)
Bugfix: Reportgenerator csv_export hatte einen Fehler der sctrict zutage getreten...
author
Sven Schöling
<s.schoeling@linet-services.de>
Thu, 29 Oct 2009 09:41:04 +0000
(10:41 +0100)
committer
Sven Schöling
<s.schoeling@linet-services.de>
Thu, 29 Oct 2009 09:41:04 +0000
(10:41 +0100)
SL/ReportGenerator.pm
patch
|
blob
|
history
diff --git
a/SL/ReportGenerator.pm
b/SL/ReportGenerator.pm
index
402f89d
..
b90b655
100644
(file)
--- a/
SL/ReportGenerator.pm
+++ b/
SL/ReportGenerator.pm
@@
-761,7
+761,7
@@
sub generate_csv_content {
next;
}
- my $num_output = ($
col->{colspan} && ($col->{colspan} > 1)) ? $col
->{colspan} : 1;
+ my $num_output = ($
row->{$col}{colspan} && ($row->{$col}->{colspan} > 1)) ? $row->{$col}
->{colspan} : 1;
$skip_next = $num_output - 1;
push @data, join($eol, map { s/\r?\n/$eol/g; $_ } @{ $row->{$col}->{data} });