From 55753aaf5b1189c06a99fe5e0791fc33316df06f Mon Sep 17 00:00:00 2001
From: Mark Wells
Date: Tue, 23 Jul 2013 01:18:19 -0700
Subject: invoice sections by location, #23820
---
conf/invoice_html | 26 +++++++++++++++++++-------
conf/invoice_latex | 14 +++++++++++++-
2 files changed, 32 insertions(+), 8 deletions(-)
(limited to 'conf')
diff --git a/conf/invoice_html b/conf/invoice_html
index cd348274f..35de6cf09 100644
--- a/conf/invoice_html
+++ b/conf/invoice_html
@@ -11,7 +11,7 @@
.invoice_desc_more TD { font-weight: bold; font-size: 10pt }
.invoice_extdesc TD { font-size: 8pt }
.invoice_totaldesc TD { font-size: 10pt; empty-cells: show }
-.allcaps { text-transform:uppercase }
+.allcaps { text-transform:uppercase; font-size: 12pt }
@@ -112,13 +112,25 @@
unless ($section->{'summarized'}) {
$OUT .= ' |
' if ( $notfirst || $section->{'pretotal'} && !$summary );
$OUT .= '';
- my $sectionhead = $section->{'description'} || emt('Charges');
- $OUT .=
- ' '. substr($sectionhead,0,1).
+ $OUT .= '';
+ my $sectionhead;
+ if ( $section->{'location'} ) {
+ $sectionhead = $section->{'location'}{'address1'};
+ $sectionhead .= ', '.$section->{'location'}{'address2'}
+ if length($section->{'location'}{'address2'});
+ $sectionhead .= ', ' .
+ $section->{'location'}{'city'} . ', ' .
+ $section->{'location'}{'state'} . ' ' .
+ $section->{'location'}{'zip'};
+ $OUT .= $sectionhead;
+ } else {
+ $sectionhead = $section->{'description'} || emt('Charges');
+ $OUT .= ''. substr($sectionhead,0,1).
''. substr($sectionhead,1).
- ''.
- ' '.
- ' |
';
+
+ '';
+ }
+ $OUT .= '
';
$OUT .=
''.
diff --git a/conf/invoice_latex b/conf/invoice_latex
index b169b617f..70b36b13d 100644
--- a/conf/invoice_latex
+++ b/conf/invoice_latex
@@ -258,7 +258,19 @@
if $coupon;
$OUT .= '\begin{longtable}{cllllllr}';
$OUT .= '\caption*{ ';
- $OUT .= ($section->{'description'}) ? $section->{'description'}: emt('Charges');
+ if ($section->{'location'}) {
+ $OUT .= $section->{'location'}{'address1'};
+ $OUT .= ', ' . $section->{'location'}{'address2'}
+ if length($section->{'location'}{'address2'});
+ $OUT .= ', ' .
+ $section->{'location'}{'city'} . ', ' .
+ $section->{'location'}{'state'} . '~' .
+ $section->{'location'}{'zip'};
+ } elsif ( $section->{'description'} ) {
+ $OUT .= ($section->{'description'});
+ } else {
+ $OUT .= emt('Charges');
+ }
$OUT .= '}\\\\';
if ($section->{header_generator}) {
$OUT .= &{$section->{header_generator}}();
--
cgit v1.2.1