X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FReportGenerator.pm;h=2b37e78f54bdae86d7da44fb9a2328c5a29fcfbd;hb=1465be33b0432ed41208b8f913f2bc4f54ef5d78;hp=e23bf77865ccbb189ca537770ad36a3d3c8440cd;hpb=c027abe65b5e9012770e2bec5edbae1930fd9917;p=kivitendo-erp.git diff --git a/SL/ReportGenerator.pm b/SL/ReportGenerator.pm index e23bf7786..2b37e78f5 100644 --- a/SL/ReportGenerator.pm +++ b/SL/ReportGenerator.pm @@ -1,16 +1,11 @@ package SL::ReportGenerator; use Data::Dumper; -use Encode; -use IO::Wrap; use List::Util qw(max); use Text::CSV_XS; -use Text::Iconv; #use PDF::API2; # these two eat up to .75s on startup. only load them if we actually need them #use PDF::Table; -use SL::Form; - use strict; # Cause locales.pl to parse these files: @@ -235,7 +230,9 @@ sub generate_with_headers { my $filename = $self->get_attachment_basename(); print qq|content-type: text/csv\n|; print qq|content-disposition: attachment; filename=${filename}.csv\n\n|; - $self->generate_csv_content(); + $::locale->with_raw_io(\*STDOUT, sub { + $self->generate_csv_content(); + }); } elsif ($format eq 'pdf') { $self->generate_pdf_content(); @@ -410,15 +407,6 @@ sub _cm2bp { return $_[0] * 72 / 2.54; } -sub _decode_text { - my $self = shift; - my $text = shift; - - $text = decode('UTF-8', $text) if ($self->{text_is_utf8}); - - return $text; -} - sub generate_pdf_content { eval { require PDF::API2; @@ -436,12 +424,11 @@ sub generate_pdf_content { my (@data, @column_props, @cell_props); my ($data_row, $cell_props_row); - my @visible_columns = $self->get_visible_columns('HTML'); + my @visible_columns = $self->get_visible_columns('PDF'); my $num_columns = scalar @visible_columns; my $num_header_rows = 1; - my $font_encoding = $main::dbcharset || 'ISO-8859-15'; - $self->{text_is_utf8} = $font_encoding =~ m/^utf-?8$/i; + my $font_encoding = $main::dbcharset || 'ISO-8859-15'; foreach my $name (@visible_columns) { push @column_props, { 'justify' => $self->{columns}->{$name}->{align} eq 'right' ? 'right' : 'left' }; @@ -456,7 +443,7 @@ sub generate_pdf_content { foreach my $name (@visible_columns) { my $column = $self->{columns}->{$name}; - push @{ $data_row }, $self->_decode_text($column->{text}); + push @{ $data_row }, $column->{text}; push @{ $cell_props_row }, {}; } @@ -470,7 +457,7 @@ sub generate_pdf_content { push @cell_props, $cell_props_row; foreach my $custom_header_col (@{ $custom_header_row }) { - push @{ $data_row }, $self->_decode_text($custom_header_col->{text}); + push @{ $data_row }, $custom_header_col->{text}; my $num_output = ($custom_header_col->{colspan} * 1 > 1) ? $custom_header_col->{colspan} : 1; if ($num_output > 1) { @@ -488,7 +475,7 @@ sub generate_pdf_content { foreach my $row_set (@{ $self->{data} }) { if ('HASH' eq ref $row_set) { if ($row_set->{type} eq 'colspan_data') { - push @data, [ $self->_decode_text($row_set->{data}) ]; + push @data, [ $row_set->{data} ]; $cell_props_row = []; push @cell_props, $cell_props_row; @@ -512,7 +499,7 @@ sub generate_pdf_content { my $col_idx = 0; foreach my $col_name (@visible_columns) { my $col = $row->{$col_name}; - push @{ $data_row }, $self->_decode_text(join("\n", @{ $col->{data} || [] })); + push @{ $data_row }, join("\n", @{ $col->{data} || [] }); $column_props[$col_idx]->{justify} = 'right' if ($col->{align} eq 'right'); @@ -583,7 +570,7 @@ sub generate_pdf_content { my $top_text_height = 0; if ($self->{options}->{top_info_text}) { - my $top_text = $self->_decode_text($self->{options}->{top_info_text}); + my $top_text = $self->{options}->{top_info_text}; $top_text =~ s/\r//g; $top_text =~ s/\n+$//; @@ -631,7 +618,7 @@ sub generate_pdf_content { my $curpage = $pdf->openpage($page_num); if ($pdfopts->{number}) { - my $label = $self->_decode_text($main::locale->text("Page #1/#2", $page_num, $pdf->pages())); + my $label = $main::locale->text("Page #1/#2", $page_num, $pdf->pages()); my $text_obj = $curpage->text(); $text_obj->font($font, $font_size); @@ -640,7 +627,7 @@ sub generate_pdf_content { } if ($opts->{title}) { - my $title = $self->_decode_text($opts->{title}); + my $title = $opts->{title}; my $text_obj = $curpage->text(); $text_obj->font($font, $title_font_size); @@ -671,7 +658,9 @@ sub generate_pdf_content { print qq|content-type: application/pdf\n|; print qq|content-disposition: attachment; filename=${filename}.pdf\n\n|; - print $content; + $::locale->with_raw_io(\*STDOUT, sub { + print $content; + }); } } @@ -698,12 +687,10 @@ sub _print_content { } sub unescape_string { - my $self = shift; - my $text = shift; - my $iconv = $main::locale->{iconv}; + my ($self, $text, $do_iconv) = @_; - $text = $main::locale->unquote_special_chars('HTML', $text); - $text = $main::locale->{iconv}->convert($text) if ($main::locale->{iconv}); + $text = $main::locale->unquote_special_chars('HTML', $text); + $text = $::locale->{iconv}->convert($text) if $do_iconv; return $text; } @@ -729,12 +716,15 @@ sub generate_csv_content { 'quote_char' => $quote_char, 'eol' => $eol, }); - my $stdout = wraphandle(\*STDOUT); my @visible_columns = $self->get_visible_columns('CSV'); + my $stdout; + open $stdout, '>-'; + binmode $stdout, ':encoding(utf8)' if $::locale->is_utf8; + if ($opts->{headers}) { if (!$self->{custom_headers}) { - $csv->print($stdout, [ map { $self->unescape_string($self->{columns}->{$_}->{text}) } @visible_columns ]); + $csv->print($stdout, [ map { $self->unescape_string($self->{columns}->{$_}->{text}, 1) } @visible_columns ]); } else { foreach my $row (@{ $self->{custom_headers} }) {