From 23732b74ef41e6810b25ce212bce512fd399bbb0 Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Sun, 19 Jan 2014 17:51:43 -0800 Subject: [PATCH] address-less customers, RT#24968 --- FS/FS/UI/Web/small_custview.pm | 49 ++++++++++++++++++++++++++---------------- 1 file changed, 30 insertions(+), 19 deletions(-) diff --git a/FS/FS/UI/Web/small_custview.pm b/FS/FS/UI/Web/small_custview.pm index 4d7051939..2290ba3e1 100644 --- a/FS/FS/UI/Web/small_custview.pm +++ b/FS/FS/UI/Web/small_custview.pm @@ -62,11 +62,18 @@ sub small_custview { encode_entities($cust_main->first). '
'; $html .= encode_entities($cust_main->company). '
' if $cust_main->company; - $html .= encode_entities($cust_main->address1). '
'; - $html .= encode_entities($cust_main->address2). '
' if $cust_main->address2; - $html .= encode_entities($cust_main->city). ', '. $cust_main->state. ' '. $cust_main->zip. '
'; - $html .= $cust_main->country. '
' - if $cust_main->country && $cust_main->country ne $countrydefault; + + if ( $cust_main->bill_locationnum ) { + + $html .= encode_entities($cust_main->address1). '
'; + $html .= encode_entities($cust_main->address2). '
' + if $cust_main->address2; + $html .= encode_entities($cust_main->city). ', '. $cust_main->state. ' '. + $cust_main->zip. '
'; + $html .= $cust_main->country. '
' + if $cust_main->country && $cust_main->country ne $countrydefault; + + } $html .= ''; if ( $cust_main->daytime && $cust_main->night ) { @@ -83,23 +90,27 @@ sub small_custview { $html .= ''; - my $ship = $cust_main->ship_location; + if ( $cust_main->ship_locationnum ) { - $html .= ''. ntable("#cccccc",2). - 'Service
Address'; - $html .= join('
', - map encode_entities($_), grep $_, - $cust_main->contact, - $cust_main->company, - $ship->address1, - $ship->address2, - ($ship->city . ', ' . $ship->state . ' ' . $ship->zip), - ($ship->country eq $countrydefault ? '' : $ship->country ), - ); + my $ship = $cust_main->ship_location; - # ship phone numbers no longer exist... + $html .= ''. ntable("#cccccc",2). + 'Service
Address'; + $html .= join('
', + map encode_entities($_), grep $_, + $cust_main->contact, + $cust_main->company, + $ship->address1, + $ship->address2, + ($ship->city . ', ' . $ship->state . ' ' . $ship->zip), + ($ship->country eq $countrydefault ? '' : $ship->country ), + ); - $html .= ''; + # ship phone numbers no longer exist... + + $html .= ''; + + } $html .= ''; -- 2.11.0