diff options
author | jeff <jeff> | 2008-06-23 15:37:15 +0000 |
---|---|---|
committer | jeff <jeff> | 2008-06-23 15:37:15 +0000 |
commit | a8be11120336b0f1a8565f4abe4758f8211e1f5a (patch) | |
tree | 9be5c591e839d55c3c04cf30c57749dac3325dc6 /FS | |
parent | b57b46f7a4743346799dae9ae680152829889fc0 (diff) |
invoice service address modifications
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_bill.pm | 4 |
1 files changed, 3 insertions, 1 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 { |