X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fcontacts.html;h=efcf48eccad2abcb34d8052eb213b61d1f41e2fb;hp=83a6380264b1437b8e4f835de3f7a26c5c1aacde;hb=e8740b7c8f772508c0a393d3c0de2b3c8531280d;hpb=747949f05c140e23221b3a2364928431f58fc2d3 diff --git a/httemplate/view/cust_main/contacts.html b/httemplate/view/cust_main/contacts.html index 83a638026..efcf48ecc 100644 --- a/httemplate/view/cust_main/contacts.html +++ b/httemplate/view/cust_main/contacts.html @@ -10,7 +10,7 @@ % if ( $this eq 'ship' and % $cust_main->bill_locationnum == $cust_main->ship_locationnum ) % { - (<% mt('same as billing') %>) + (<% emt('same as billing') %>) % } % if ( @@ -29,9 +29,21 @@ <% $cust_main->contact |h %> % if ( $conf->exists('show_ss') ) { <% mt('SS#') |h %> - <% $conf->exists('unmask_ss') - ? $cust_main->ss - : $cust_main->masked('ss') || ' ' %> + + + <% $cust_main->masked('ss') || ' ' %> +% if ( +% $cust_main->ss +% && $FS::CurrentUser::CurrentUser->access_right('Unmask customer SSN') +% ) { + <& /elements/link-replace_element_text.html, { + target_id => 'ss_span', + replace_text => $cust_main->ss, + element_type => 'span' + } &> +% } + + % } % if ( $conf->exists('cust_main-enable_spouse') and @@ -43,15 +55,36 @@ $cust_main->spouse_last, $cust_main->spouse_first) %> -% } -% if ( $conf->exists('cust-email-high-visibility') ) { +% } +% +% # invoicing email +% if ( scalar(@invoicing_list) == 1 ) { # typical individual user; show here - <% mt('Email address(es)') |h %> - - <% $cust_main->invoicing_list_emailonly_scalar || $no %> + <% mt('Email address') |h %> + + <% $invoicing_list[0] %> -% } +% } elsif ( scalar(@invoicing_list) > 1 ) { +% # business customer with a contact list +% # show nothing here +% +% } else { # there is no invoice email for them + + <% mt('Email address') |h %> +% if ( !$cust_main->postal_invoice or +% $conf->exists('cust_main-require_invoicing_list_email', +% $cust_main->agentnum) +% ) { +% # we need a contact email for this customer (either because that's +% # policy, or because otherwise they won't receive invoices) but we +% # don't have one. + <% emt('none') %> +% } else { + <% emt('no') %> +% } +% } # end of invoicing email + % if ( $cust_main->company ) { <% mt('Company') |h %> @@ -61,7 +94,7 @@ % } elsif ( $this eq 'ship' ) { % if ( $cust_main->ship_company ) { # mostly obsolete these days... - <% mt('Company') |h %> + <% mt('Company') |h %> <% $cust_main->ship_company |h %> % } @@ -72,7 +105,7 @@ % if ( $location->locationname ) { - <% mt('Location ID') |h %> + <% mt('Location ID') |h %> <% $location->locationname |h %> % } @@ -100,13 +133,13 @@ % if ( $location->county ) { (<% $location->county |h %> county)\ % } -,<% state_label( $location->state, $location->country ) |h %> - <% $location->zip %> +<% ($location->city || $location->county) ? ', ' : ''%><% state_label( $location->state, $location->country ) |h %> + <% $location->zip |h %> - <% code2country( $location->country ) %> + <% $location->country_full |h %> % if ( $location->latitude && $location->longitude ) { @@ -125,7 +158,7 @@ % foreach my $phone (qw(daytime night mobile)) { % next if !$cust_main->get($phone); - <% $phone_label{$phone} %> + <% $phone_label{$phone} %> <& /elements/phonenumber.html, $cust_main->get($phone), @@ -139,7 +172,7 @@ % if ( $cust_main->get('fax') ) { - <% mt('Fax') |h %> + <% mt('Fax') |h %> <% $cust_main->get('fax') || ' ' %> @@ -150,9 +183,23 @@ % if ( $conf->exists('show_stateid') ) { - <% $stateid_label %> - <% $cust_main->masked('stateid') || ' ' %> - <% $stateid_state_label %> + <% $stateid_label %> + + + <% $cust_main->masked('stateid') || ' ' %> +% if ( +% $cust_main->stateid +% && $FS::CurrentUser::CurrentUser->access_right('Unmask customer DL') +% ) { + <& /elements/link-replace_element_text.html, { + target_id => 'stateid_span', + replace_text => $cust_main->stateid, + element_type => 'span' + } &> +% } + + + <% $stateid_state_label %> <% $cust_main->stateid_state || ' ' %> @@ -195,8 +242,6 @@ my $stateid_state_label = FS::Msgcat::_gettext('stateid_state') =~ /^(stateid_st my $cust_main = shift; my $conf = new FS::Conf; -my @invoicing_list = $cust_main->invoicing_list; -my $no = emt('no'); +my @invoicing_list = $cust_main->invoicing_list_emailonly; -