X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Felements%2Fcontact.html;h=8abce058ea61cedc87a912b21defc427d86036d0;hb=24f8d52f90be8e99b10734f49d451e1e70afdfbc;hp=eea3694e3b9e22b9be45bce7f73331e7df843643;hpb=b5c4237a34aef94976bc343c8d9e138664fc3984;p=freeside.git diff --git a/httemplate/elements/contact.html b/httemplate/elements/contact.html index eea3694e3..8abce058e 100644 --- a/httemplate/elements/contact.html +++ b/httemplate/elements/contact.html @@ -2,8 +2,26 @@ - +
+% if ( @contact_class && ! $opt{name_only} ) { + +% } else { + +% } +% % foreach my $field ( @fields ) { % % my $value = ''; @@ -13,7 +31,7 @@ % 'phonetypenum' => $1, % }); % if ( $contact_phone ) { -% $value = $contact_phone->phonenum; +% $value = $contact_phone->phonenum_pretty; % $value .= 'x'.$contact_phone->extension % if $contact_phone->extension; % $value = '+'. $contact_phone->countrycode. " $value" @@ -21,11 +39,7 @@ % && $contact_phone->countrycode ne '1'; % } % } elsif ( $field eq 'emailaddress' ) { -% #XXX multiple not yet supported -% my $contact_email = qsearchs('contact_email', { -% 'contactnum' => $curr_value, -% }); -% $value = $contact_email->emailaddress if $contact_email; +% $value = join(', ', map $_->emailaddress, $contact->contact_email); % } else { % $value = $contact->get($field); % } @@ -64,6 +78,8 @@ if ( $opt{'onchange'} ) { $onchange = 'onChange="'. $onchange. '"'; } +my @contact_class = qsearch('contact_class', { 'disabled' => '' }); + my $contact; if ( $curr_value ) { $contact = qsearchs('contact', { 'contactnum' => $curr_value } ); @@ -85,11 +101,11 @@ foreach my $phone_type ( qsearch({table=>'phone_type', order_by=>'weight'}) ) { next if $phone_type->typename eq 'Home'; my $f = 'phonetypenum'.$phone_type->phonetypenum; $label{$f} = $phone_type->typename. ' phone'; - $size{$f} = $first++ ? 11 : 15; + $size{$f} = $first++ ? 10 : 15; } $label{'comment'} = 'Comment'; -my @fields = keys %label; +my @fields = $opt{'name_only'} ? qw( first last ) : keys %label;
+
+ Type +