From f1f423f3cb29a9d4ca8029d8b58f0111db0f1957 Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Sat, 24 Mar 2012 18:48:44 -0700 Subject: [PATCH] enhance contacts: contact classes, RT#16819 --- httemplate/elements/contact.html | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/httemplate/elements/contact.html b/httemplate/elements/contact.html index 3efa23246..b3e535344 100644 --- a/httemplate/elements/contact.html +++ b/httemplate/elements/contact.html @@ -4,6 +4,24 @@ +% if ( @contact_class ) { + +% } else { + +% } +% % foreach my $field ( @fields ) { % % my $value = ''; @@ -60,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 } ); @@ -81,7 +101,7 @@ 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'; -- 2.11.0
+
+ Type +