979c26b49654210cf46a5c9379ee43e66e387b80
[freeside.git] / httemplate / elements / contact.html
1 % unless ( $opt{'js_only'} ) {
2
3   <INPUT TYPE="hidden" NAME="<%$name%>" ID="<%$id%>" VALUE="<% $curr_value %>">
4
5   <TABLE STYLE="display:inline">
6     <TR>
7 %     if ( @contact_class && ! $opt{name_only} ) {
8         <TD>
9           <SELECT NAME="<%$name%>_classnum" <% $onchange %>>
10             <OPTION VALUE="">
11 %           my $classnum = scalar($cgi->param($name.'_classnum'))
12 %                            || $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 %>
17 %           }
18           </SELECT><BR>
19           <FONT SIZE="-1">Type</FONT>
20         </TD>
21 %     } else {
22         <INPUT TYPE="hidden" NAME="<%$name%>_classnum" VALUE="">
23 %     }
24 %
25 %     foreach my $field ( @fields ) {
26 %
27 %       my $value = '';
28 %       if ( $field =~ /^phonetypenum(\d+)$/ ) {
29 %         my $contact_phone = qsearchs('contact_phone', {
30 %           'contactnum'   => $curr_value,
31 %           'phonetypenum' => $1,
32 %         });
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';
40 %         }
41 %       } elsif ( $field eq 'emailaddress' ) {
42 %         $value = join(', ', map $_->emailaddress, $contact->contact_email);
43 %       } else {
44 %         $value = $contact->get($field);
45 %       }
46
47         <TD>
48 %         if ( $field eq 'selfservice_access' ) {
49             <SELECT NAME = "<%$name%>_<%$field%>"
50                     ID   = "<%$id%>_<%$field%>"
51             >
52               <OPTION VALUE="">Disabled
53 %             if ( $value || $self_base_url ) {
54                 <OPTION VALUE="Y" <% $value eq 'Y' ? 'SELECTED' : '' %>>Enabled
55 %               if ( $value eq 'Y' && $self_base_url ) {
56                   <OPTION VALUE="R">Re-email
57 %               }
58 %             }
59             </SELECT>
60
61 %         } else {
62             <INPUT TYPE  = "text"
63                    NAME  = "<%$name%>_<%$field%>"
64                    ID    = "<%$id%>_<%$field%>"
65                    SIZE  = "<% $size{$field} || 14 %>"
66                    VALUE = "<% scalar($cgi->param($name."_$field"))
67                                || $value |h %>"
68                    <% $onchange %>
69             >
70 %         }
71           <BR>
72           <FONT SIZE="-1"><% $label{$field} %></FONT>
73         </TD>
74 %     }
75     </TR>
76   </TABLE>
77
78 % }
79 <%init>
80
81 my( %opt ) = @_;
82
83 my $conf = new FS::Conf;
84 my $self_base_url = $conf->config('selfservice_server-base_url');
85
86 my $name = $opt{'element_name'} || $opt{'field'} || 'contactnum';
87 my $id = $opt{'id'} || 'contactnum';
88
89 my $curr_value = $opt{'curr_value'} || $opt{'value'};
90
91 my $onchange = '';
92 if ( $opt{'onchange'} ) {
93   $onchange = $opt{'onchange'};
94   $onchange .= '(this)' unless $onchange =~ /\(\w*\);?$/;
95   $onchange =~ s/\(what\);/\(this\);/g; #ugh, terrible hack.  all onchange
96                                         #callbacks should act the same
97   $onchange = 'onChange="'. $onchange. '"';
98 }
99
100 my @contact_class = qsearch('contact_class', { 'disabled' => '' });
101
102 my $contact;
103 if ( $curr_value ) {
104   $contact = qsearchs('contact', { 'contactnum' => $curr_value } );
105 } else {
106   $contact = new FS::contact {};
107 }
108
109 my %size = ( 'title' => 12 );
110
111 tie my %label, 'Tie::IxHash',
112   'first'              => 'First name',
113   'last'               => 'Last name',
114   'title'              => 'Title/Position',
115   'emailaddress'       => 'Email',
116   'selfservice_access' => 'Self-service'
117 ;
118
119 my $first = 0;
120 foreach my $phone_type ( qsearch({table=>'phone_type', order_by=>'weight'}) ) {
121   next if $phone_type->typename eq 'Home';
122   my $f = 'phonetypenum'.$phone_type->phonetypenum;
123   $label{$f} = $phone_type->typename. ' phone';
124   $size{$f} = $first++ ? 10 : 15;
125 }
126
127 $label{'comment'} = 'Comment';
128
129 my @fields = $opt{'name_only'} ? qw( first last ) : keys %label;
130
131 </%init>