diff options
author | jeff <jeff> | 2008-06-17 03:13:51 +0000 |
---|---|---|
committer | jeff <jeff> | 2008-06-17 03:13:51 +0000 |
commit | fa60699e7315931850d1652e05aface24401b89f (patch) | |
tree | 86399739da21c0bc876d939ad11eea47d8d29d43 | |
parent | 69f5bf2593cf93b03482c401531bb75772c82afa (diff) |
not forgetting to add fax and old customer id
-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 2a8c4bdd5..a1f9da7e7 100644 --- a/conf/invoice_latex +++ b/conf/invoice_latex @@ -212,6 +212,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 .= '';
}
|