X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Felements%2Fcontact.html;h=3d5177612fecb929bc0187a684f150328476508d;hb=08d132eca6a97c3417dc0f13bb603f080bd0e222;hp=eea3694e3b9e22b9be45bce7f73331e7df843643;hpb=fb4ab1073f0d15d660c6cdc4e07afebf68ef3924;p=freeside.git diff --git a/httemplate/elements/contact.html b/httemplate/elements/contact.html index eea3694e3..3d5177612 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 = ''; @@ -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 +