From a8be11120336b0f1a8565f4abe4758f8211e1f5a Mon Sep 17 00:00:00 2001 From: jeff Date: Mon, 23 Jun 2008 15:37:15 +0000 Subject: [PATCH] invoice service address modifications --- FS/FS/cust_bill.pm | 4 +++- conf/invoice_html | 16 ++++++++++++++++ conf/invoice_latex | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index c23e85626..7b05cadfa 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -1853,16 +1853,18 @@ sub print_generic { 'unitprices' => $conf->exists('invoice-unitprice'), ); + my $countrydefault = $conf->config('countrydefault') || 'US'; my $prefix = $cust_main->has_ship_address ? 'ship_' : ''; foreach ( qw( contact company address1 address2 city state zip country fax) ){ my $method = $prefix.$_; $invoice_data{"ship_$_"} = _latex_escape($cust_main->$method); } + $invoice_data{'ship_country'} = '' + if ( $invoice_data{'ship_country'} eq $countrydefault ); $invoice_data{'cid'} = $params{'cid'} if $params{'cid'}; - my $countrydefault = $conf->config('countrydefault') || 'US'; if ( $cust_main->country eq $countrydefault ) { $invoice_data{'country'} = ''; } else { diff --git a/conf/invoice_html b/conf/invoice_html index e2f16640d..0e7021e3b 100644 --- a/conf/invoice_html +++ b/conf/invoice_html @@ -60,6 +60,22 @@ ) %> + <%= $ship_enable ? (''. + join('
',grep length($_), 'Service Address', + $ship_company, + $ship_address1, + $ship_address2, + "$ship_city, $ship_state $ship_zip", + $ship_country, + ' ', + ' ', + ). + ($agent_custid ? "ID: $agent_custid
" : ''). + ($ship_fax ? "Fax: $ship_fax
" : ''). + '' + ) + : '' + %> Terms: <%= $terms %>
<%= $po_line %> diff --git a/conf/invoice_latex b/conf/invoice_latex index 693d66e85..6bfc41d5a 100644 --- a/conf/invoice_latex +++ b/conf/invoice_latex @@ -204,7 +204,6 @@ \hfill \makebox{ \begin{minipage}[t]{6.4cm} -\begin{flushright} [@-- if ($ship_enable) { $OUT .= '\textbf{Service Address}\\\\'; @@ -221,6 +220,7 @@ $OUT .= ''; } --@] +\begin{flushright} Terms: [@-- $terms --@]\\ [@-- $po_line --@]\\ \end{flushright} -- 2.11.0