diff options
author | jeff <jeff> | 2008-06-17 03:14:12 +0000 |
---|---|---|
committer | jeff <jeff> | 2008-06-17 03:14:12 +0000 |
commit | 97c8cbe1a7645ecce1192a1c3c20807e428f907c (patch) | |
tree | 20712194785744ac0db594c2598cb0c6bf7b8b73 /conf/invoice_latex | |
parent | 12a127ea6bf7ce19eecc7907b41e9ace03ab79ed (diff) |
not forgetting to add fax and old customer id
Diffstat (limited to 'conf/invoice_latex')
-rw-r--r-- | conf/invoice_latex | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/conf/invoice_latex b/conf/invoice_latex index ae21de2ba..8d486779e 100644 --- a/conf/invoice_latex +++ b/conf/invoice_latex @@ -214,6 +214,9 @@ $OUT .= "\\addressline{$ship_city, $ship_state~~$ship_zip}";
$OUT .= "\\addressline{$ship_country}";
$OUT .= '~\\\\';
+ $OUT .= "\\textbf{ID:}~~$agent_custid\\\\" if $agent_custid;
+ $OUT .= "\\textbf{Fax:}~~$ship_fax\\\\" if $ship_fax;
+ $OUT .= '~\\\\' if ($ship_fax or $agent_custid);
}else{
$OUT .= '';
}
|