diff options
author | Mark Wells <mark@freeside.biz> | 2013-07-24 15:35:21 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2013-07-24 15:38:48 -0700 |
commit | 642cd9bbd96603c696f3932f527d57ad33e9b7ee (patch) | |
tree | 5438c4055887c3533ee874743c4945f17d81990e /conf/invoice_latexsummary | |
parent | 40432379f04f6206b8e9a76a80c592887c60f10c (diff) |
changes to invoice previous balance display, #23573, #23964
Diffstat (limited to 'conf/invoice_latexsummary')
-rw-r--r-- | conf/invoice_latexsummary | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/conf/invoice_latexsummary b/conf/invoice_latexsummary index a68e5d381..4c48ab1c2 100644 --- a/conf/invoice_latexsummary +++ b/conf/invoice_latexsummary @@ -21,16 +21,7 @@ \textbf{\underline{Summary of New Charges}} & \\ &\\ [@-- - #false laziness w/invoice_htmlsummary - foreach my $section ( - grep { - $_->{tax_section} || !$_->{summarized} - and ! $_->{adjust_section} - and !($finance_section && $_->{'description'} eq $finance_section) - and $_->{'description'} !~ /^\d+ $/ - } - @sections - ) { + foreach my $section (@summary_subtotals) { $OUT .= '\textbf{'. ($section->{'description'} ? $section->{'description'} : 'Charges' ). '}'; $OUT .= '&\textbf{'. $section->{'subtotal'}. '}\\\\'; } |