X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=modules%2Foverride%2FPDF%2FTable.pm;h=a805f77678512dc6619c381aecc266ab00b1e8b9;hb=6ecf138db5fceea08d68dbcd539344797cd43939;hp=0dc7e7d36b7dddf680498a2401f2088b6c82bc06;hpb=3b5dc7b68b53ea153b9716f9b85c3b6dc3a71574;p=kivitendo-erp.git diff --git a/modules/override/PDF/Table.pm b/modules/override/PDF/Table.pm index 0dc7e7d36..a805f7767 100755 --- a/modules/override/PDF/Table.pm +++ b/modules/override/PDF/Table.pm @@ -614,11 +614,9 @@ sub table if( ref $header_props and $header_props->{'repeat'}) { - for my $idx (0 .. $header_props->{num_header_rows} - 1) { - unshift @$data, [ @{ $header_rows[$idx] } ]; - unshift @$row_col_widths, [ @{ $header_row_widths[$idx] } ]; - unshift @$rows_height, $header_row_heights[$idx]; - } + unshift @$data, @header_rows; + unshift @$row_col_widths, @header_row_widths; + unshift @$rows_height, @header_row_heights; $remaining_header_rows = $header_props->{num_header_rows}; $first_row = 1; } @@ -673,8 +671,8 @@ sub table # Choose colors for this row - $background_color = $row_index % 2 ? $background_color_even : $background_color_odd; - $font_color = $row_index % 2 ? $font_color_even : $font_color_odd; + $background_color = ($row_index - $header_props->{num_header_rows}) % 2 ? $background_color_even : $background_color_odd; + $font_color = ($row_index - $header_props->{num_header_rows}) % 2 ? $font_color_even : $font_color_odd; #Determine current row height my $current_row_height = $pad_top + $pre_calculated_row_height + $pad_bot; @@ -746,9 +744,9 @@ sub table // $default_text; my $this_width; - if (!$remaining_header_rows && $cell_props->[$row_index][$column_idx]->{colspan}) { - $colspan = $cell_props->[$row_index][$column_idx]->{colspan}; - } elsif ($remaining_header_rows && $header_row_cell_props[$header_props->{num_header_rows} - $remaining_header_rows][$column_idx]->{colspan}) { + if (!$remaining_header_rows && $cell_props->[$row_index + $header_props->{num_header_rows}][$column_idx]->{colspan}) { + $colspan = $cell_props->[$row_index + $header_props->{num_header_rows}][$column_idx]->{colspan}; + } elsif ($remaining_header_rows && ($header_row_cell_props[$header_props->{num_header_rows} - $remaining_header_rows][$column_idx]->{colspan})) { $colspan = $header_row_cell_props[$header_props->{num_header_rows} - $remaining_header_rows][$column_idx]->{colspan}; } @@ -846,7 +844,7 @@ sub table } # Get the most specific value if none was already set from header_props - $cell_bg_color ||= $cell_props->[$row_index][$column_idx]->{'background_color'} + $cell_bg_color ||= $cell_props->[$row_index + $header_props->{num_header_rows}][$column_idx]->{'background_color'} || $col_props->[$column_idx]->{'background_color'} || $background_color; @@ -939,32 +937,11 @@ sub CalcColumnWidths $calc_widths->[$j] = $col_props->[$j]->{min_w} || 0;; } - # Allow columns to expand to max_w before applying extra space equally. - my $is_last_iter; - for (;;) - { - my $span = ($avail_width - $min_width) / scalar( @$col_props); - last if $span <= 0; - - $min_width = 0; - my $next_will_be_last_iter = 1; - for(my $j = 0; $j < scalar(@$col_props); $j++ ) - { - my $new_w = $calc_widths->[$j] + $span; - - if (!$is_last_iter && $new_w > $col_props->[$j]->{max_w}) - { - $new_w = $col_props->[$j]->{max_w} - } - if ($calc_widths->[$j] != $new_w ) - { - $calc_widths->[$j] = $new_w; - $next_will_be_last_iter = 0; - } - $min_width += $new_w; - } - last if $is_last_iter; - $is_last_iter = $next_will_be_last_iter; + my $span = 0; + # Calculate how much can be added to every column to fit the available width + $span = ($avail_width - $min_width) / scalar( @$col_props); + for (my $j = 0; $j < scalar(@$col_props); $j++ ) { + $calc_widths->[$j] = $col_props->[$j]->{min_w} + $span; } return ($calc_widths,$avail_width);