X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fedit%2Fcust_main%2Fname.html;h=120475b92b4697828ab826e1a25501d560d8aa41;hp=2641ec930f42c4844aca07f814562c006c340357;hb=7bf6dafb0da4a525388a6f145dd0a904eddcec14;hpb=f3c4966ed1f6ec3db7accd6dcdd3a5a3821d72a7 diff --git a/httemplate/edit/cust_main/name.html b/httemplate/edit/cust_main/name.html index 2641ec930..120475b92 100644 --- a/httemplate/edit/cust_main/name.html +++ b/httemplate/edit/cust_main/name.html @@ -1,48 +1,66 @@ <%def .namepart> -% my ($field, $value, $label, $extra) = @_; - +% my ($field, $value, $label, $extra, $unmask_field) = @_; +
> -
<% mt($label) %> - +% if ( +% $value +% && ref $unmask_field +% && !$unmask_field->{unmask_ss} +% && $FS::CurrentUser::CurrentUser->access_right( $unmask_field->{access_right} ) +% ) { + <& /elements/link-replace_element_text.html, { + target_id => $unmask_field->{target_id}, + replace_text => $unmask_field->{replace_text}, + } &> +% } +
<% emt($label) %> +
- <%$r%><% mt('Contact name') |h %> - - - - <& .namepart, 'last', $cust_main->last, 'Last' &> - + - <& .namepart, 'ss', $ss, 'SS#', "SIZE=11" &> +   + <& .namepart, 'ss', $ss, 'SS#', "SIZE=11 ID='ss'", { + target_id => 'ss', + replace_text => $cust_main->ss, + access_right => 'Unmask customer SSN', + unmask_ss => $conf->exists('unmask_ss'), + } &> % } else { % } - -
, <% mt('Contact name') |h %> + + <& .namepart, 'last', $cust_main->last, 'Last', ',' &> <& .namepart, 'first', $cust_main->first, 'First' &> % if ( $conf->exists('show_ss') ) { -  
+% if ( $conf->exists('cust_main-enable_spouse') ) { + +
<% mt('Spouse\'s name') |h %>
+ + <& .namepart, 'spouse_last', $cust_main->spouse_last, 'Last', ',' &> + <& .namepart, 'spouse_first', $cust_main->spouse_first, 'First' &> + + +% } -% if ( $conf->exists('cust-email-high-visibility') ) { - + + - invoicing_list_emailonly_scalar %>> + ? 'required label' + : 'label' %>">Email address(es) + + + -% } <%init> my $cust_main = shift; my $agentnum = $cust_main->agentnum if $cust_main->custnum; my $conf = FS::Conf->new; -my $r = '* '; my $ss; if ( $cgi->param('error') or $conf->exists('unmask_ss') ) {