diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-10-25 12:08:06 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-10-25 12:08:06 -0700 |
commit | f1e9e0cd3fb22e3e615142889f5f3df799841cc2 (patch) | |
tree | 4e99521d8ed9fb8d2bfe2ce6369fc7063c6c4e15 /conf/invoice_latex | |
parent | 39f27ad350fab89f189018b9c7a9880df66712ed (diff) |
user-defined site ID / location codes per location, RT#30856, RT#27545
Diffstat (limited to 'conf/invoice_latex')
-rw-r--r-- | conf/invoice_latex | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/conf/invoice_latex b/conf/invoice_latex index 70b36b13d..6a5b53dd5 100644 --- a/conf/invoice_latex +++ b/conf/invoice_latex @@ -259,6 +259,8 @@ $OUT .= '\begin{longtable}{cllllllr}';
$OUT .= '\caption*{ ';
if ($section->{'location'}) {
+ $OUT .= $section->{'location'}{'label_prefix'}. ': '
+ if length($section->{'location'}{'label_prefix'});
$OUT .= $section->{'location'}{'address1'};
$OUT .= ', ' . $section->{'location'}{'address2'}
if length($section->{'location'}{'address2'});
|