summaryrefslogtreecommitdiff
path: root/conf/invoice_htmlsummary
diff options
context:
space:
mode:
authorlevinse <levinse>2011-06-05 03:45:30 +0000
committerlevinse <levinse>2011-06-05 03:45:30 +0000
commit76a1ecdb1b69fa83a8385adc4a50ac243096c994 (patch)
treee8f19ece062d92ae2b0421ffce35b6abfd92fabb /conf/invoice_htmlsummary
parentdb303b2cb273b45e03467f36e076b7c1db3bc4a4 (diff)
remove double summary listing of svc_phone usage when used with invoice summary, RT12637
Diffstat (limited to 'conf/invoice_htmlsummary')
-rw-r--r--conf/invoice_htmlsummary4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/invoice_htmlsummary b/conf/invoice_htmlsummary
index b158478..a06c8ff 100644
--- a/conf/invoice_htmlsummary
+++ b/conf/invoice_htmlsummary
@@ -32,9 +32,9 @@
</tr>
<tr><td colspan=2><br></td></tr>
<%=
- my ($last) = grep { $_->{tax_section} || !$_->{summarized} and !($finance_section && $_->{'description'} eq $finance_section)} reverse @sections;
+ my ($last) = grep { $_->{tax_section} || !$_->{summarized} and !($finance_section && $_->{'description'} eq $finance_section) and $_->{'description'} !~ /^\d+ $/ } reverse @sections;
- foreach my $section ( grep { $_->{tax_section} || !$_->{summarized} and !($finance_section && $_->{'description'} eq $finance_section)} @sections ) {
+ foreach my $section ( grep { $_->{tax_section} || !$_->{summarized} and !($finance_section && $_->{'description'} eq $finance_section) and $_->{'description'} !~ /^\d+ $/ } @sections ) {
$OUT .= '<tr><td><b>'. ($section->{'description'} ? $section->{'description'} : 'Charges' ). '</b></td>';
my $celltype = ($last == $section) ? 'th' : 'td';
$OUT .= qq(<$celltype align="right"><b>). $section->{'subtotal'}. "</b></$celltype></tr>";