diff options
author | Mitch Jackson <mitch@freeside.biz> | 2018-04-15 16:13:21 -0500 |
---|---|---|
committer | Mitch Jackson <mitch@freeside.biz> | 2018-04-15 16:13:21 -0500 |
commit | 8441edfbe769a7086f8062913ad840255cdf4b63 (patch) | |
tree | 446a1bfa36ddcb52f2acc9b51320e7f148dbac70 /conf | |
parent | 5828f9ef8d7c9e424423ba2063840060d2da8b6e (diff) |
RT# 78190 Fix format bug for invoices sectioned by location
Diffstat (limited to 'conf')
-rw-r--r-- | conf/invoice_html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/conf/invoice_html b/conf/invoice_html index d8a2d0a97..935c94346 100644 --- a/conf/invoice_html +++ b/conf/invoice_html @@ -134,7 +134,7 @@ my $columncount = $unitprices ? 5 : 3; foreach my $section ( grep { !$summary || $_->{description} ne $finance_section } @sections ) { if ($section->{'pretotal'} && !$summary) { - $OUT .= '</table>' if $notfirst; + $OUT .= '</table>' if $notfirst++; $OUT .= '<table width="100%"><tr><td>'. '<p align="right"><b><font size="+1">'. @@ -145,7 +145,10 @@ '</td></tr>'; } unless ($section->{'summarized'}) { - $OUT .= '</table>' if ( $notfirst || $section->{'pretotal'} && !$summary ); + if ( $notfirst || $section->{'pretotal'} && !$summary ) { + $OUT .= '</table>'; + $notfirst = 1; + } $OUT .= '<table><tr><td>'; $OUT .= '<p class="allcaps"><b>'; my $sectionhead; @@ -292,9 +295,6 @@ '<p>'; $OUT .= '</td></tr>'; } - - $notfirst++; - } my $style = 'border-top: 3px solid #000000;'; |