summaryrefslogtreecommitdiff
path: root/conf/invoice_latex
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2013-07-23 01:18:19 -0700
committerMark Wells <mark@freeside.biz>2013-07-23 01:18:19 -0700
commit55753aaf5b1189c06a99fe5e0791fc33316df06f (patch)
tree8efab93ac15d4119325666519a31c3c6fcf7841d /conf/invoice_latex
parent4d81e21107622f8731a6301c3c811108840582fd (diff)
invoice sections by location, #23820
Diffstat (limited to 'conf/invoice_latex')
-rw-r--r--conf/invoice_latex14
1 files changed, 13 insertions, 1 deletions
diff --git a/conf/invoice_latex b/conf/invoice_latex
index b169b61..70b36b1 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}}();