1 % unless ( $opt{'js_only'} ) {
3 <INPUT TYPE="hidden" NAME="<%$name%>" ID="<%$id%>" VALUE="<% $curr_value %>">
5 <TABLE STYLE="display:inline">
7 % if ( @contact_class && ! $opt{name_only} ) {
9 <SELECT NAME="<%$name%>_classnum" <% $onchange %>>
11 % my $classnum = scalar($cgi->param($name.'_classnum'))
12 % || $X_contact->classnum;
13 % foreach my $contact_class (@contact_class) {
14 <OPTION VALUE="<% $contact_class->classnum %>"
15 <% ($contact_class->classnum == $classnum) ? 'SELECTED' : '' %>
16 ><% $contact_class->classname |h %>
19 <FONT SIZE="-1">Type</FONT>
22 <INPUT TYPE="hidden" NAME="<%$name%>_classnum" VALUE="">
25 % foreach my $field ( @fields ) {
28 % if ( $field =~ /^phonetypenum(\d+)$/ ) {
29 % my $contact_phone = qsearchs('contact_phone', {
30 % 'contactnum' => $curr_value,
31 % 'phonetypenum' => $1,
33 % if ( $contact_phone ) {
34 % $value = $contact_phone->phonenum_pretty;
35 % $value .= 'x'.$contact_phone->extension
36 % if $contact_phone->extension;
37 % $value = '+'. $contact_phone->countrycode. " $value"
38 % if $contact_phone->countrycode
39 % && $contact_phone->countrycode ne '1';
41 % } elsif ( $field eq 'emailaddress' ) {
42 % $value = join(', ', map $_->emailaddress, $contact->contact_email);
43 % } elsif ( $field eq 'selfservice_access'
44 % or $field eq 'comment'
45 % or $field eq 'invoice_dest' ) {
46 % $value = $X_contact->get($field);
48 % $value = $contact->get($field);
52 % if ( $field eq 'selfservice_access' ) {
53 <SELECT NAME = "<%$name%>_<%$field%>"
54 ID = "<%$id%>_<%$field%>"
56 <OPTION VALUE="">Disabled
57 % if ( $value || $self_base_url ) {
58 <OPTION VALUE="Y" <% $value eq 'Y' ? 'SELECTED' : '' %>>Enabled
59 % if ( $value eq 'Y' && $self_base_url ) {
60 <OPTION VALUE="R">Re-email
64 % } elsif ( $field eq 'invoice_dest' ) {
65 % my $curr_value = $cgi->param($name . '_' . $field);
66 % $curr_value = $value if !defined($curr_value);
68 field => $name . '_' . $field,
69 curr_value => $curr_value,
70 options => [ '', 'Y' ],
71 option_labels => { '' => 'no', 'Y' => 'yes' },
72 style => 'width: 100%',
76 NAME = "<%$name%>_<%$field%>"
77 ID = "<%$id%>_<%$field%>"
78 SIZE = "<% $size{$field} || 14 %>"
79 VALUE = "<% scalar($cgi->param($name . '_' . $field))
85 <FONT SIZE="-1"><% $label{$field} %></FONT>
96 my $conf = new FS::Conf;
97 my $self_base_url = $conf->config('selfservice_server-base_url');
99 my $name = $opt{'element_name'} || $opt{'field'} || 'contactnum';
100 my $id = $opt{'id'} || 'contactnum';
102 my $curr_value = $opt{'curr_value'} || $opt{'value'};
105 if ( $opt{'onchange'} ) {
106 $onchange = $opt{'onchange'};
107 $onchange .= '(this)' unless $onchange =~ /\(\w*\);?$/;
108 $onchange =~ s/\(what\);/\(this\);/g; #ugh, terrible hack. all onchange
109 #callbacks should act the same
110 $onchange = 'onChange="'. $onchange. '"';
113 my @contact_class = qsearch('contact_class', { 'disabled' => '' });
118 $contact = qsearchs('contact', { 'contactnum' => $curr_value } );
119 if ( $opt{'custnum'} ) {
120 $X_contact = qsearchs('cust_contact', {
121 'contactnum' => $curr_value,
122 'custnum' => $opt{'custnum'},
124 } elsif ( $opt{'prospectnum'} ) {
125 $X_contact = qsearchs('prospect_contact', {
126 'contactnum' => $curr_value,
127 'prospectnum' => $opt{'prospectnum'},
130 die 'neither custnum nor prospectnum specified';
133 $contact = new FS::contact {};
134 $X_contact = new FS::cust_contact; #arbitrary, it could be prospect_contact
137 my %size = ( 'title' => 12 );
139 tie my %label, 'Tie::IxHash',
140 'first' => 'First name',
141 'last' => 'Last name',
142 'title' => 'Title/Position',
143 'emailaddress' => 'Email',
144 'invoice_dest' => 'Send invoices',
145 'selfservice_access' => 'Self-service'
149 foreach my $phone_type ( qsearch({table=>'phone_type', order_by=>'weight'}) ) {
150 next if $phone_type->typename =~ /^(Home|Fax)$/;
151 my $f = 'phonetypenum'.$phone_type->phonetypenum;
152 $label{$f} = $phone_type->typename. ' phone';
153 $size{$f} = $first++ ? 10 : 15;
156 $label{'comment'} = 'Comment';
158 my @fields = $opt{'name_only'} ? qw( first last ) : keys %label;