1 package SL::ReportGenerator;
 
   4 use List::Util qw(max);
 
   6 #use PDF::API2;    # these two eat up to .75s on startup. only load them if we actually need them
 
  10 use SL::Helper::GlAttachments qw(append_gl_pdf_attachments);
 
  11 use SL::Helper::CreatePDF     qw(merge_pdfs);
 
  13 # Cause locales.pl to parse these files:
 
  14 # parse_html_template('report_generator/html_report')
 
  21   $self->{myconfig} = shift;
 
  22   $self->{form}     = shift;
 
  26     'std_column_visibility' => 0,
 
  27     'output_format'         => 'HTML',
 
  28     'controller_class   '   => '',
 
  29     'allow_pdf_export'      => 1,
 
  30     'allow_csv_export'      => 1,
 
  31     'html_template'         => 'report_generator/html_report',
 
  34       'orientation'         => 'landscape',
 
  35       'font_name'           => 'Verdana',
 
  39       'margin_bottom'       => 1.5,
 
  40       'margin_right'        => 1.5,
 
  50       'eol_style'           => 'Unix',
 
  52       'encoding'            => 'UTF-8',
 
  57     'variable_list' => [],
 
  60   $self->{data_present} = 0;
 
  64   $self->set_options(@_) if (@_);
 
  73   $self->{columns} = \%columns;
 
  75   foreach my $column (values %{ $self->{columns} }) {
 
  76     $column->{visible} = $self->{options}->{std_column_visibility} unless defined $column->{visible};
 
  79   if( $::form->{report_generator_csv_options_for_import} ) {
 
  80     foreach my $key (keys %{ $self->{columns} }) {
 
  81       $self->{columns}{$key}{text} = $key;
 
  85   $self->set_column_order(sort keys %{ $self->{columns} });
 
  88 sub set_column_order {
 
  91   $self->{column_order} = [ grep { !$seen{$_}++ } @_, sort keys %{ $self->{columns} } ];
 
  94 sub set_sort_indicator {
 
  97   $self->{options}->{sort_indicator_column}    = shift;
 
  98   $self->{options}->{sort_indicator_direction} = shift;
 
 106   while (my $arg = shift) {
 
 109     if ('ARRAY' eq ref $arg) {
 
 112     } elsif ('HASH' eq ref $arg) {
 
 116       $self->{form}->error('Incorrect usage -- expecting hash or array ref');
 
 119     my @columns_with_default_alignment = grep { defined $self->{columns}->{$_}->{align} } keys %{ $self->{columns} };
 
 121     foreach my $row (@{ $row_set }) {
 
 122       foreach my $column (@columns_with_default_alignment) {
 
 123         $row->{$column}          ||= { };
 
 124         $row->{$column}->{align}   = $self->{columns}->{$column}->{align} unless (defined $row->{$column}->{align});
 
 127       foreach my $field (qw(data link link_class)) {
 
 128         map { $row->{$_}->{$field} = [ $row->{$_}->{$field} ] if (ref $row->{$_}->{$field} ne 'ARRAY') } keys %{ $row };
 
 132     push @{ $self->{data} }, $row_set;
 
 133     $last_row_set = $row_set;
 
 135     $self->{data_present} = 1;
 
 138   return $last_row_set;
 
 144   push @{ $self->{data} }, { 'type' => 'separator' };
 
 151   push @{ $self->{data} }, $data;
 
 158   $self->{data_present} = 0;
 
 165   while (my ($key, $value) = each %options) {
 
 166     if ($key eq 'pdf_export') {
 
 167       map { $self->{options}->{pdf_export}->{$_} = $value->{$_} } keys %{ $value };
 
 169       $self->{options}->{$key} = $value;
 
 174 sub set_options_from_form {
 
 177   my $form     = $self->{form};
 
 178   my $myconfig = $self->{myconfig};
 
 180   foreach my $key (qw(output_format)) {
 
 181     my $full_key = "report_generator_${key}";
 
 182     $self->{options}->{$key} = $form->{$full_key} if (defined $form->{$full_key});
 
 185   foreach my $format (qw(pdf csv)) {
 
 186     my $opts = $self->{options}->{"${format}_export"};
 
 187     foreach my $key (keys %{ $opts }) {
 
 188       my $full_key = "report_generator_${format}_options_${key}";
 
 189       $opts->{$key} = $key =~ /^margin/ ? $form->parse_amount($myconfig, $form->{$full_key}) : $form->{$full_key};
 
 194 sub set_export_options {
 
 199     'variable_list' => [ @_ ],
 
 203 sub set_custom_headers {
 
 207     $self->{custom_headers} = [ @_ ];
 
 209     delete $self->{custom_headers};
 
 213 sub get_attachment_basename {
 
 215   my $filename =  $self->{options}->{attachment_basename} || 'report';
 
 217   # FIXME: this is bonkers. add a real sluggify method somewhere or import one.
 
 218   $filename    =~ s|.*\\||;
 
 219   $filename    =~ s|.*/||;
 
 220   $filename    =~ s| |_|g;
 
 225 sub generate_with_headers {
 
 226   my ($self, %params) = @_;
 
 227   my $format = lc $self->{options}->{output_format};
 
 228   my $form   = $self->{form};
 
 230   if (!$self->{columns}) {
 
 231     $form->error('Incorrect usage -- no columns specified');
 
 234   if ($format eq 'html') {
 
 235     my $title      = $form->{title};
 
 236     $form->{title} = $self->{title} if ($self->{title});
 
 237     $form->header(no_layout => $params{no_layout});
 
 238     $form->{title} = $title;
 
 240     print $self->generate_html_content();
 
 242   } elsif ($format eq 'csv') {
 
 243     # FIXME: don't do mini http in here
 
 244     my $filename = $self->get_attachment_basename();
 
 245     print qq|content-type: text/csv\n|;
 
 246     print qq|content-disposition: attachment; filename=${filename}.csv\n\n|;
 
 247     $::locale->with_raw_io(\*STDOUT, sub {
 
 248       $self->generate_csv_content();
 
 251   } elsif ($format eq 'pdf') {
 
 252     $self->generate_pdf_content();
 
 255     $form->error('Incorrect usage -- unknown format (supported are HTML, CSV, PDF)');
 
 259 sub get_visible_columns {
 
 263   return grep { my $c = $self->{columns}->{$_}; $c && $c->{visible} && (($c->{visible} == 1) || ($c->{visible} =~ /\Q${format}\E/i)) } @{ $self->{column_order} };
 
 270   $value =  $main::locale->quote_special_chars('HTML', $value);
 
 272   $value =~ s/\n/<br>/g;
 
 277 sub prepare_html_content {
 
 280   my ($column, $name, @column_headers);
 
 282   my $opts            = $self->{options};
 
 283   my @visible_columns = $self->get_visible_columns('HTML');
 
 285   foreach $name (@visible_columns) {
 
 286     $column = $self->{columns}->{$name};
 
 290       'align'                    => $column->{align},
 
 291       'link'                     => $column->{link},
 
 292       'text'                     => $column->{text},
 
 293       'raw_header_data'          => $column->{raw_header_data},
 
 294       'show_sort_indicator'      => $name eq $opts->{sort_indicator_column},
 
 295       'sort_indicator_direction' => $opts->{sort_indicator_direction},
 
 298     push @column_headers, $header;
 
 302   if ($self->{custom_headers}) {
 
 303     $header_rows = $self->{custom_headers};
 
 305     $header_rows = [ \@column_headers ];
 
 308   my ($outer_idx, $inner_idx) = (0, 0);
 
 312   foreach my $row_set (@{ $self->{data} }) {
 
 313     if ('HASH' eq ref $row_set) {
 
 314       if ($row_set->{type} eq 'separator') {
 
 315         if (! scalar @rows) {
 
 316           $next_border_top = 1;
 
 318           $rows[-1]->{BORDER_BOTTOM} = 1;
 
 326         'IS_COLSPAN_DATA' => $row_set->{type} eq 'colspan_data',
 
 327         'NUM_COLUMNS'     => scalar @visible_columns,
 
 328         'BORDER_TOP'      => $next_border_top,
 
 329         'data'            => $row_set->{data},
 
 332       push @rows, $row_data;
 
 334       $next_border_top = 0;
 
 341     foreach my $row (@{ $row_set }) {
 
 344       my $output_columns = [ ];
 
 346       foreach my $col_name (@visible_columns) {
 
 352         my $col = $row->{$col_name} || { data => [] };
 
 353         $col->{CELL_ROWS} = [ ];
 
 354         foreach my $i (0 .. scalar(@{ $col->{data} }) - 1) {
 
 355           push @{ $col->{CELL_ROWS} }, {
 
 356             'data' => '' . $self->html_format($col->{data}->[$i]),
 
 357             'link' => $col->{link}->[$i],
 
 358             link_class => $col->{link_class}->[$i],
 
 362         # Force at least a   to be displayed so that browsers
 
 363         # will format the table cell (e.g. borders etc).
 
 364         if (!scalar @{ $col->{CELL_ROWS} }) {
 
 365           push @{ $col->{CELL_ROWS} }, { 'data' => ' ' };
 
 366         } elsif ((1 == scalar @{ $col->{CELL_ROWS} }) && (!defined $col->{CELL_ROWS}->[0]->{data} || ($col->{CELL_ROWS}->[0]->{data} eq ''))) {
 
 367           $col->{CELL_ROWS}->[0]->{data} = ' ';
 
 370         push @{ $output_columns }, $col;
 
 371         $skip_next = $col->{colspan} ? $col->{colspan} - 1 : 0;
 
 375         'COLUMNS'       => $output_columns,
 
 376         'outer_idx'     => $outer_idx,
 
 377         'outer_idx_odd' => $outer_idx % 2,
 
 378         'inner_idx'     => $inner_idx,
 
 379         'BORDER_TOP'    => $next_border_top,
 
 382       push @rows, $row_data;
 
 384       $next_border_top = 0;
 
 388   my @export_variables = $self->{form}->flatten_variables(@{ $self->{export}->{variable_list} });
 
 390   my $allow_pdf_export = $opts->{allow_pdf_export};
 
 393     'TITLE'                => $opts->{title},
 
 394     'TOP_INFO_TEXT'        => $self->html_format($opts->{top_info_text}),
 
 395     'RAW_TOP_INFO_TEXT'    => $opts->{raw_top_info_text},
 
 396     'BOTTOM_INFO_TEXT'     => $self->html_format($opts->{bottom_info_text}),
 
 397     'RAW_BOTTOM_INFO_TEXT' => $opts->{raw_bottom_info_text},
 
 398     'ALLOW_PDF_EXPORT'     => $allow_pdf_export,
 
 399     'ALLOW_CSV_EXPORT'     => $opts->{allow_csv_export},
 
 400     'SHOW_EXPORT_BUTTONS'  => ($allow_pdf_export || $opts->{allow_csv_export}) && $self->{data_present},
 
 401     'HEADER_ROWS'          => $header_rows,
 
 402     'NUM_COLUMNS'          => scalar @column_headers,
 
 404     'EXPORT_VARIABLES'     => \@export_variables,
 
 405     'EXPORT_VARIABLE_LIST' => join(' ', @{ $self->{export}->{variable_list} }),
 
 406     'EXPORT_NEXTSUB'       => $self->{export}->{nextsub},
 
 407     'DATA_PRESENT'         => $self->{data_present},
 
 408     'CONTROLLER_DISPATCH'  => $opts->{controller_class},
 
 409     'TABLE_CLASS'          => $opts->{table_class},
 
 415 sub generate_html_content {
 
 417   my $variables = $self->prepare_html_content();
 
 419   my $stuff  = $self->{form}->parse_html_template($self->{options}->{html_template}, $variables);
 
 426   return $_[0] * 72 / 2.54;
 
 429 sub generate_pdf_content {
 
 436   my $variables  = $self->prepare_html_content();
 
 437   my $form       = $self->{form};
 
 438   my $myconfig   = $self->{myconfig};
 
 440   my $opts       = $self->{options};
 
 441   my $pdfopts    = $opts->{pdf_export};
 
 443   my (@data, @column_props, @cell_props);
 
 445   my ($data_row, $cell_props_row);
 
 446   my @visible_columns = $self->get_visible_columns('PDF');
 
 447   my $num_columns     = scalar @visible_columns;
 
 448   my $num_header_rows = 1;
 
 450   my $font_encoding   = 'UTF-8';
 
 452   foreach my $name (@visible_columns) {
 
 453     push @column_props, { 'justify' => $self->{columns}->{$name}->{align} eq 'right' ? 'right' : 'left' };
 
 456   if (!$self->{custom_headers}) {
 
 458     $cell_props_row = [];
 
 459     push @data,       $data_row;
 
 460     push @cell_props, $cell_props_row;
 
 462     foreach my $name (@visible_columns) {
 
 463       my $column = $self->{columns}->{$name};
 
 465       push @{ $data_row },       $column->{text};
 
 466       push @{ $cell_props_row }, {};
 
 470     $num_header_rows = scalar @{ $self->{custom_headers} };
 
 472     foreach my $custom_header_row (@{ $self->{custom_headers} }) {
 
 474       $cell_props_row = [];
 
 475       push @data,       $data_row;
 
 476       push @cell_props, $cell_props_row;
 
 478       foreach my $custom_header_col (@{ $custom_header_row }) {
 
 479         push @{ $data_row }, $custom_header_col->{text};
 
 481         my $num_output  = ($custom_header_col->{colspan} * 1 > 1) ? $custom_header_col->{colspan} : 1;
 
 482         if ($num_output > 1) {
 
 483           push @{ $data_row },       ('') x ($num_output - 1);
 
 484           push @{ $cell_props_row }, { 'colspan' => $num_output };
 
 485           push @{ $cell_props_row }, ({ }) x ($num_output - 1);
 
 488           push @{ $cell_props_row }, {};
 
 494   foreach my $row_set (@{ $self->{data} }) {
 
 495     if ('HASH' eq ref $row_set) {
 
 496       if ($row_set->{type} eq 'colspan_data') {
 
 497         push @data, [ $row_set->{data} ];
 
 499         $cell_props_row = [];
 
 500         push @cell_props, $cell_props_row;
 
 502         foreach (0 .. $num_columns - 1) {
 
 503           push @{ $cell_props_row }, { 'background_color' => '#666666',
 
 504                                        'font_color'       => '#ffffff',
 
 505                                        'colspan'          => $_ == 0 ? -1 : undef, };
 
 511     foreach my $row (@{ $row_set }) {
 
 513       $cell_props_row = [];
 
 515       push @data,       $data_row;
 
 516       push @cell_props, $cell_props_row;
 
 519       foreach my $col_name (@visible_columns) {
 
 520         my $col = $row->{$col_name};
 
 521         push @{ $data_row }, join("\n", @{ $col->{data} || [] });
 
 523         $column_props[$col_idx]->{justify} = 'right' if ($col->{align} eq 'right');
 
 525         my $cell_props = { };
 
 526         push @{ $cell_props_row }, $cell_props;
 
 528         if ($col->{colspan} && $col->{colspan} > 1) {
 
 529           $cell_props->{colspan} = $col->{colspan};
 
 537   foreach my $i (0 .. scalar(@data) - 1) {
 
 538     my $aref             = $data[$i];
 
 539     my $num_columns_here = scalar @{ $aref };
 
 541     if ($num_columns_here < $num_columns) {
 
 542       push @{ $aref }, ('') x ($num_columns - $num_columns_here);
 
 543     } elsif ($num_columns_here > $num_columns) {
 
 544       splice @{ $aref }, $num_columns;
 
 549     'a3'         => [ 842, 1190 ],
 
 550     'a4'         => [ 595,  842 ],
 
 551     'a5'         => [ 420,  595 ],
 
 552     'letter'     => [ 612,  792 ],
 
 553     'legal'      => [ 612, 1008 ],
 
 556   my %supported_fonts = map { $_ => 1 } qw(courier georgia helvetica times verdana);
 
 558   my $paper_size  = defined $pdfopts->{paper_size} && defined $papersizes->{lc $pdfopts->{paper_size}} ? lc $pdfopts->{paper_size} : 'a4';
 
 559   my ($paper_width, $paper_height);
 
 561   if (lc $pdfopts->{orientation} eq 'landscape') {
 
 562     ($paper_width, $paper_height) = @{$papersizes->{$paper_size}}[1, 0];
 
 564     ($paper_width, $paper_height) = @{$papersizes->{$paper_size}}[0, 1];
 
 567   my $margin_top        = _cm2bp($pdfopts->{margin_top}    || 1.5);
 
 568   my $margin_bottom     = _cm2bp($pdfopts->{margin_bottom} || 1.5);
 
 569   my $margin_left       = _cm2bp($pdfopts->{margin_left}   || 1.5);
 
 570   my $margin_right      = _cm2bp($pdfopts->{margin_right}  || 1.5);
 
 572   my $table             = PDF::Table->new();
 
 573   my $pdf               = PDF::API2->new();
 
 574   my $page              = $pdf->page();
 
 576   $pdf->mediabox($paper_width, $paper_height);
 
 578   my $font              = $pdf->corefont(defined $pdfopts->{font_name} && $supported_fonts{lc $pdfopts->{font_name}} ? ucfirst $pdfopts->{font_name} : 'Verdana',
 
 579                                          '-encoding' => $font_encoding);
 
 580   my $font_size         = $pdfopts->{font_size} || 7;
 
 581   my $title_font_size   = $font_size + 1;
 
 583   my $font_height       = $font_size + 2 * $padding;
 
 584   my $title_font_height = $font_size + 2 * $padding;
 
 586   my $header_height     = $opts->{title}     ? 2 * $title_font_height : undef;
 
 587   my $footer_height     = $pdfopts->{number} ? 2 * $font_height       : undef;
 
 589   my $top_text_height   = 0;
 
 591   if ($self->{options}->{top_info_text}) {
 
 592     my $top_text     =  $self->{options}->{top_info_text};
 
 593     $top_text        =~ s/\r//g;
 
 594     $top_text        =~ s/\n+$//;
 
 596     my @lines        =  split m/\n/, $top_text;
 
 597     $top_text_height =  $font_height * scalar @lines;
 
 599     foreach my $line_no (0 .. scalar(@lines) - 1) {
 
 600       my $y_pos    = $paper_height - $margin_top - $header_height - $line_no * $font_height;
 
 601       my $text_obj = $page->text();
 
 603       $text_obj->font($font, $font_size);
 
 604       $text_obj->translate($margin_left, $y_pos);
 
 605       $text_obj->text($lines[$line_no]);
 
 613                 'w'                     => $paper_width - $margin_left - $margin_right,
 
 614                 'start_y'               => $paper_height - $margin_top                  - $header_height                  - $top_text_height,
 
 615                 'next_y'                => $paper_height - $margin_top                  - $header_height,
 
 616                 'start_h'               => $paper_height - $margin_top - $margin_bottom - $header_height - $footer_height - $top_text_height,
 
 617                 'next_h'                => $paper_height - $margin_top - $margin_bottom - $header_height - $footer_height,
 
 619                 'background_color_odd'  => '#ffffff',
 
 620                 'background_color_even' => '#eeeeee',
 
 622                 'font_size'             => $font_size,
 
 623                 'font_color'            => '#000000',
 
 624                 'num_header_rows'       => $num_header_rows,
 
 626                   'bg_color'            => '#ffffff',
 
 628                   'font_color'          => '#000000',
 
 630                 'column_props'          => \@column_props,
 
 631                 'cell_props'            => \@cell_props,
 
 632                 'max_word_length'       => 60,
 
 636   foreach my $page_num (1..$pdf->pages()) {
 
 637     my $curpage  = $pdf->openpage($page_num);
 
 639     if ($pdfopts->{number}) {
 
 640       my $label    = $main::locale->text("Page #1/#2", $page_num, $pdf->pages());
 
 641       my $text_obj = $curpage->text();
 
 643       $text_obj->font($font, $font_size);
 
 644       $text_obj->translate(($paper_width - $margin_left - $margin_right) / 2 + $margin_left - $text_obj->advancewidth($label) / 2, $margin_bottom);
 
 645       $text_obj->text($label);
 
 648     if ($opts->{title}) {
 
 649       my $title    = $opts->{title};
 
 650       my $text_obj = $curpage->text();
 
 652       $text_obj->font($font, $title_font_size);
 
 653       $text_obj->translate(($paper_width - $margin_left - $margin_right) / 2 + $margin_left - $text_obj->advancewidth($title) / 2,
 
 654                            $paper_height - $margin_top);
 
 655       $text_obj->text($title, '-underline' => 1);
 
 659   my $content = $pdf->stringify();
 
 661   $main::lxdebug->message(LXDebug->DEBUG2(),"addattachments ?? =".$form->{report_generator_addattachments}." GL=".$form->{GL});
 
 662   if ( $form->{report_generator_addattachments} eq 'yes' && $form->{GL}) {
 
 663     $content = $self->append_gl_pdf_attachments($form,$content);
 
 667   if ($pdfopts->{print} && $pdfopts->{printer_id}) {
 
 668     $form->{printer_id} = $pdfopts->{printer_id};
 
 669     $form->get_printer_code($myconfig);
 
 670     $printer_command = $form->{printer_command};
 
 673   if ($printer_command) {
 
 674     $self->_print_content('printer_command' => $printer_command,
 
 675                           'content'         => $content,
 
 676                           'copies'          => $pdfopts->{copies});
 
 677     $form->{report_generator_printed} = 1;
 
 680     my $filename = $self->get_attachment_basename();
 
 682     print qq|content-type: application/pdf\n|;
 
 683     print qq|content-disposition: attachment; filename=${filename}.pdf\n\n|;
 
 685     $::locale->with_raw_io(\*STDOUT, sub {
 
 691 sub verify_paper_size {
 
 693   my $requested_paper_size = lc shift;
 
 694   my $default_paper_size   = shift;
 
 696   my %allowed_paper_sizes  = map { $_ => 1 } qw(a3 a4 a5 letter legal);
 
 698   return $allowed_paper_sizes{$requested_paper_size} ? $requested_paper_size : $default_paper_size;
 
 705   foreach my $i (1 .. max $params{copies}, 1) {
 
 706     my $printer = IO::File->new("| $params{printer_command}");
 
 707     $main::form->error($main::locale->text('Could not spawn the printer command.')) if (!$printer);
 
 708     $printer->print($params{content});
 
 713 sub _handle_quoting_and_encoding {
 
 714   my ($self, $text, $do_unquote, $encoding) = @_;
 
 716   $text = $main::locale->unquote_special_chars('HTML', $text) if $do_unquote;
 
 717   $text = Encode::encode($encoding || 'UTF-8', $text);
 
 722 sub generate_csv_content {
 
 724   my $stdout = ($::dispatcher->get_standard_filehandles)[1];
 
 726   # Text::CSV_XS seems to downgrade to bytes already (see
 
 727   # SL/FCGIFixes.pm). Therefore don't let FCGI do that again.
 
 728   $::locale->with_raw_io($stdout, sub { $self->_generate_csv_content($stdout) });
 
 731 sub _generate_csv_content {
 
 732   my ($self, $stdout) = @_;
 
 734   my %valid_sep_chars    = (';' => ';', ',' => ',', ':' => ':', 'TAB' => "\t");
 
 735   my %valid_escape_chars = ('"' => 1, "'" => 1);
 
 736   my %valid_quote_chars  = ('"' => 1, "'" => 1);
 
 738   my $opts        = $self->{options}->{csv_export};
 
 739   my $eol         = $opts->{eol_style} eq 'DOS'               ? "\r\n"                              : "\n";
 
 740   my $sep_char    = $valid_sep_chars{$opts->{sep_char}}       ? $valid_sep_chars{$opts->{sep_char}} : ';';
 
 741   my $escape_char = $valid_escape_chars{$opts->{escape_char}} ? $opts->{escape_char}                : '"';
 
 742   my $quote_char  = $valid_quote_chars{$opts->{quote_char}}   ? $opts->{quote_char}                 : '"';
 
 744   $escape_char    = $quote_char if ($opts->{escape_char} eq 'QUOTE_CHAR');
 
 746   my $csv = Text::CSV_XS->new({ 'binary'      => 1,
 
 747                                 'sep_char'    => $sep_char,
 
 748                                 'escape_char' => $escape_char,
 
 749                                 'quote_char'  => $quote_char,
 
 752   my @visible_columns = $self->get_visible_columns('CSV');
 
 754   if ($opts->{headers}) {
 
 755     if (!$self->{custom_headers}) {
 
 756       $csv->print($stdout, [ map { $self->_handle_quoting_and_encoding($self->{columns}->{$_}->{text}, 1, $opts->{encoding}) } @visible_columns ]);
 
 759       foreach my $row (@{ $self->{custom_headers} }) {
 
 762         foreach my $col (@{ $row }) {
 
 763           my $num_output = ($col->{colspan} && ($col->{colspan} > 1)) ? $col->{colspan} : 1;
 
 764           push @{ $fields }, ($self->_handle_quoting_and_encoding($col->{text}, 1, $opts->{encoding})) x $num_output;
 
 767         $csv->print($stdout, $fields);
 
 772   foreach my $row_set (@{ $self->{data} }) {
 
 773     next if ('ARRAY' ne ref $row_set);
 
 774     foreach my $row (@{ $row_set }) {
 
 777       foreach my $col (@visible_columns) {
 
 783         my $num_output = ($row->{$col}{colspan} && ($row->{$col}->{colspan} > 1)) ? $row->{$col}->{colspan} : 1;
 
 784         $skip_next     = $num_output - 1;
 
 786         push @data, join($eol, map { s/\r?\n/$eol/g; $self->_handle_quoting_and_encoding($_, 0, $opts->{encoding}) } @{ $row->{$col}->{data} });
 
 787         push @data, ('') x $skip_next if ($skip_next);
 
 790       $csv->print($stdout, \@data);
 
 795 sub check_for_pdf_api {
 
 796   return eval { require PDF::API2; 1; } ? 1 : 0;
 
 805 SL::ReportGenerator.pm: the kivitendo way of getting data in shape
 
 809   my $report = SL::ReportGenerator->new(\%myconfig, $form);
 
 810      $report->set_options(%options);                         # optional
 
 811      $report->set_columns(%column_defs);
 
 812      $report->set_sort_indicator($column, $direction);       # optional
 
 813      $report->add_data($row1, $row2, @more_rows);
 
 814      $report->generate_with_headers();
 
 816 This creates a report object, sets a few columns, adds some data and generates a standard report.
 
 817 Sorting of columns will be alphabetic, and options will be set to their defaults.
 
 818 The report will be printed including table headers, html headers and http headers.
 
 822 Imagine the following scenario:
 
 823 There's a simple form, which loads some data from the database, and needs to print it out. You write a template for it.
 
 824 Then there may be more than one line. You add a loop in the template.
 
 825 Then there are some options made by the user, such as hidden columns. You add more to the template.
 
 826 Then it lacks usability. You want it to be able to sort the data. You add code for that.
 
 827 Then there are too many results, you need pagination, you want to print or export that data..... and so on.
 
 829 The ReportGenerator class was designed because this exact scenario happened about half a dozen times in kivitendo.
 
 830 It's purpose is to manage all those formating, culling, sorting, and templating.
 
 831 Which makes it almost as complicated to use as doing the work by yourself.
 
 837 =item new \%myconfig,$form,%options
 
 839 Creates a new ReportGenerator object, sets all given options, and returns it.
 
 841 =item set_columns %columns
 
 843 Sets the columns available to this report.
 
 845 =item set_column_order @columns
 
 847 Sets the order of columns. Any columns not present here are appended in alphabetic order.
 
 849 =item set_sort_indicator $column,$direction
 
 851 Sets sorting of the table by specifying a column and a direction, where the direction will be evaluated to ascending if true.
 
 852 Note that this is only for displaying. The data has to have already been sorted when it was added.
 
 854 =item add_data \@data
 
 856 =item add_data \%data
 
 858 Adds data to the report. A given hash_ref is interpreted as a single line of
 
 859 data, every array_ref as a collection of lines.  Every line will be expected to
 
 860 be in a key => value format. Note that the rows have to already have been
 
 863 The ReportGenerator is only able to display pre-sorted data and to indicate by
 
 864 which column and in which direction the data has been sorted via visual clues
 
 865 in the column headers. It also provides links to invert the sort direction.
 
 869 Adds a separator line to the report.
 
 871 =item add_control \%data
 
 873 Adds a control element to the data. Control elements are an experimental feature to add functionality to a report the regular data cannot.
 
 874 Every control element needs to set IS_CONTROL_DATA, in order to be recognized by the template.
 
 875 Currently the only control element is a colspan element, which can be used as a mini header further down the report.
 
 879 Deletes all data added to the report, but keeps options set.
 
 881 =item set_options %options
 
 883 Sets options. For an incomplete list of options, see section configuration.
 
 885 =item set_options_from_form
 
 887 Tries to import options from the $form object given at creation
 
 889 =item set_export_options $next_sub,@variable_list
 
 891 Sets next_sub and additional variables needed for export.
 
 893 =item get_attachment_basename
 
 895 Returns the set attachment_basename option, or 'report' if nothing was set. See configuration for the option.
 
 897 =item generate_with_headers
 
 899 Parses the report, adds headers and prints it out. Headers depend on the option 'output_format',
 
 900 for example 'HTML' will add proper table headers, html headers and http headers. See configuration for this option.
 
 902 =item get_visible_columns $format
 
 904 Returns a list of columns that will be visible in the report after considering all options or match the given format.
 
 906 =item html_format $value
 
 908 Escapes HTML characters in $value and substitutes newlines with '<br>'. Returns the escaped $value.
 
 910 =item prepare_html_content $column,$name,@column_headers
 
 912 Parses the data, and sets internal data needed for certain output format. Must be called once before the template is invoked.
 
 913 Should not be called externally, since all render and generate functions invoke it anyway.
 
 915 =item generate_html_content
 
 917 The html generation function. Is invoked by generate_with_headers.
 
 919 =item generate_pdf_content
 
 921 The PDF generation function. It is invoked by generate_with_headers and renders the PDF with the PDF::API2 library.
 
 923 =item generate_csv_content
 
 925 The CSV generation function. Uses XS_CSV to parse the information into csv.
 
 931 These are known options and their defaults. Options for pdf export and csv export need to be set as a hashref inside the export option.
 
 933 =head2 General Options
 
 937 =item std_column_visibility
 
 939 Standard column visibility. Used if no visibility is set. Use this to save the trouble of enabling every column. Default is no.
 
 943 Output format. Used by generate_with_headers to determine the format. Supported options are HTML, CSV, and PDF. Default is HTML.
 
 945 =item allow_pdf_export
 
 947 Used to determine if a button for PDF export should be displayed. Default is yes.
 
 949 =item allow_csv_export
 
 951 Used to determine if a button for CSV export should be displayed. Default is yes.
 
 955 The template to be used for HTML reports. Default is 'report_generator/html_report'.
 
 957 =item controller_class
 
 959 If this is used from a C<SL::Controller::Base> based controller class, pass the
 
 960 class name here and make sure C<SL::Controller::Helper::ReportGenerator> is
 
 961 used in the controller. That way the exports stay functional.
 
 971 Paper size. Default is a4. Supported paper sizes are a3, a4, a5, letter and legal.
 
 973 =item orientation (landscape)
 
 975 Landscape or portrait. Default is landscape.
 
 979 Default is Verdana. Supported font names are Courier, Georgia, Helvetica, Times and Verdana. This option only affects the rendering with PDF::API2.
 
 983 Default is 7. This option only affects the rendering with PDF::API2.
 
 993 The paper margins in cm. They all default to 1.5.
 
 997 Set to a true value if the pages should be numbered. Default is 1.
 
1001 If set then the resulting PDF will be output to a printer. If not it will be downloaded by the user. Default is no.
 
1019 Character to enclose entries. Default is double quote (").
 
1023 Character to separate entries. Default is semicolon (;).
 
1027 Character to escape the quote_char. Default is double quote (").
 
1031 End of line style. Default is Unix.
 
1035 Include headers? Default is yes.
 
1039 Character encoding. Default is UTF-8.
 
1047 =head1 MODULE AUTHORS
 
1049 Moritz Bunkus E<lt>mbunkus@linet-services.deE<gt>
 
1051 L<http://linet-services.de>