default to commercial new cusotomer, RT#22560
[freeside.git] / httemplate / edit / cust_main / top_misc.html
1 <TABLE CLASS="fsinnerbox">
2
3 <TR>
4   <TD ALIGN="right">Residential</TD>
5   <TD><INPUT TYPE     = "radio"
6              NAME     = "residential_commercial"
7              ID       = "residential_commercial_Residential"
8              VALUE    = "Residential"
9              onChange = "rescom_changed(this)"
10        <% $cust_main->residential_commercial eq 'Commercial' ? '' : 'CHECKED' %>
11   ></TD>
12 </TR>
13 <TR>
14   <TD ALIGN="right">Commercial</TD>
15   <TD><INPUT TYPE     = "radio"
16              NAME     = "residential_commercial"
17              ID       = "residential_commercial_Commercial"
18              VALUE    = "Commercial"
19              onChange = "rescom_changed(this)"
20        <% $cust_main->residential_commercial eq 'Commercial' ? 'CHECKED' : '' %>
21   ></TD>
22 </TR>
23
24 <SCRIPT TYPE="text/javascript">
25
26   function rescom_changed(what) {
27     if ( what.checked == (what.value == 'Commercial' ) ) {
28       document.getElementById('company_row').style.display = '';
29       document.getElementById('contacts_div').style.display = '';
30       document.getElementById('spouse_row').style.display = 'none';
31     } else {
32       if ( document.getElementById('company').value.length == 0 ) {
33         document.getElementById('company_row').style.display = 'none';
34       }
35       document.getElementById('contacts_div').style.display = 'none';
36       document.getElementById('spouse_row').style.display = '';
37     }
38   }
39
40
41   var ship_locked_agents = <% encode_json(\%ship_locked_agents) %>;
42   var ship_fields = [
43     'locationname', 'address1', 'city', 'state', 'zip', 'country', 
44     'latitude', 'longitude', 'district'
45   ];
46
47   function agent_changed(what) {
48     var agentnum = what.value;
49
50 %   # unlock/lock service location
51
52     var f = what.form;
53     if ( ship_locked_agents[agentnum] ) {
54 %     # For this agent, the service location (except address2)
55 %     # should be locked to the agent's location.
56 %     # Set the ship_ fields to those values (just for display) and
57 %     # then disable them.
58       for(var x in ship_locked_agents[agentnum]) {
59         f['ship_'+x].value = ship_locked_agents[agentnum][x];
60         f['ship_'+x].disabled = true;
61       }
62       f['same'].checked = false;
63       f['same'].disabled = true;
64     } else {
65 %     # Unlock the ship_ location fields.  If they were previously
66 %     # disabled, then they contain some agent's address, which is 
67 %     # no longer meaningful.  So set them back to the customer's 
68 %     # current location.
69       for(var i=0; i<ship_fields.length; i++) {
70         x = ship_fields[i];
71         if ( f['ship_'+x].disabled )  {
72           f['ship_'+x].value  = f['old_ship_'+x].value;
73         }
74         f['ship_'+x].disabled = false;
75       }
76       f['same'].disabled = false;
77     }
78     samechanged(f['same']);
79
80 %   # update sales dropdown
81     salesnum_agentnum_changed(what);
82
83   }
84
85   <&| /elements/onload.js &>
86   rescom_changed(document.getElementById('residential_commercial_Residential'));
87   agent_changed(document.getElementById('agentnum'))
88   </&>
89  
90 </SCRIPT>
91
92 % foreach my $field ($cust_main->virtual_fields) {
93     <% $cust_main->pvf($field)->widget('HTML', 'edit',$cust_main->getfield($field)) %>
94 % }
95
96 %# tags
97 <& /elements/tr-select-cust_tag.html,
98              'custnum' => $custnum,
99              'cgi'     => $cgi,
100 &>
101
102 %# agent
103 % if ( $cgi->param('lock_agentnum') =~ /^(\d+)$/ && $curuser->agentnum($1) ) {
104 %
105 %   my $agentnum = $1;
106 %   $cust_main->agentnum($agentnum);
107
108     <INPUT TYPE="hidden" NAME="lock_agentnum" VALUE="<% $agentnum %>">
109     <INPUT TYPE="hidden" NAME="agentnum"      ID="agentnum" 
110       VALUE="<% $agentnum %>">
111     <TR>
112       <TD ALIGN="right"><% mt('Agent') |h %></TD>
113       <TD CLASS="fsdisabled"><% $cust_main->agent->agent |h %></TD>
114     </TR>
115
116 % } else {
117
118   <& /elements/tr-select-agent.html, 
119                 'curr_value'    => $cust_main->agentnum,
120                 'label'         => "<B>${r}".emt('Agent')."</B>",
121                 'empty_label'   => emt('Select agent'),
122                 'disable_empty' => ( $cust_main->agentnum ? 1 : 0 ),
123                 'viewall_right' => emt('None'), 
124                 'onchange'      => 'agent_changed(this)',
125   &>
126
127 % }
128
129 %# agent_custid
130 % if ( $conf->exists('cust_main-edit_agent_custid') ) {
131
132     <TR>
133       <TD ALIGN="right"><% mt('Customer identifier') |h %></TD>
134       <TD><INPUT TYPE="text" NAME="agent_custid" VALUE="<% $cust_main->agent_custid %>"></TD>
135     </TR>
136
137 % } else {
138
139     <INPUT TYPE="hidden" NAME="agent_custid" VALUE="<% $cust_main->agent_custid %>">
140
141 % }
142
143 %# class
144 <& /elements/tr-select-cust_class.html,
145              'curr_value'  => $cust_main->classnum,
146              'label'       => emt("Class"),
147 &>
148
149 %#sales person
150 <& /elements/tr-select-sales.html,
151      'curr_value' => $cust_main->salesnum,
152 &>
153
154 %# referral (advertising source)
155 %my $refnum = $cust_main->refnum || $conf->config('referraldefault') || 0;
156 %if ( $custnum && ! $conf->exists('editreferrals') ) {
157
158   <INPUT TYPE="hidden" NAME="refnum" VALUE="<% $refnum %>">
159
160 % } else { 
161
162   <& /elements/tr-select-part_referral.html,
163                 'curr_value' => $refnum,
164                 'label'      => "<B>${r}".emt('Advertising source')."</B>"
165   &>
166 % } 
167
168
169 %# referring customer
170 %my $referring_cust_main = '';
171 %if ( $cust_main->referral_custnum
172 %     and $referring_cust_main =
173 %           qsearchs('cust_main', { custnum => $cust_main->referral_custnum } )
174 %     and ! $curuser->access_right('Edit referring customer')
175 %) {
176
177   <TR>
178     <TD ALIGN="right"><% mt('Referring customer') |h %></TD>
179     <TD>
180       <A HREF="<% popurl(1) %>/cust_main.cgi?<% $cust_main->referral_custnum %>"><% $cust_main->referral_custnum %>: <% $referring_cust_main->name |h %></A>
181     </TD>
182   </TR>
183   <INPUT TYPE="hidden" NAME="referral_custnum" VALUE="<% $cust_main->referral_custnum %>">
184
185 % } elsif ( ! $conf->exists('disable_customer_referrals') ) { 
186
187   <TR>
188     <TD ALIGN="right"><% mt('Referring customer') |h %></TD>
189     <TD>
190       <& /elements/search-cust_main.html,
191                     'field_name' => 'referral_custnum',
192                     'curr_value' => $cust_main->referral_custnum,
193       &>
194     </TD>
195   </TR>
196
197 % } else { 
198   <INPUT TYPE="hidden" NAME="referral_custnum" VALUE="">
199 % } 
200
201 %# signup date
202 % if ( $conf->exists('cust_main-edit_signupdate') ) {
203     <& /elements/tr-input-date-field.html, {
204                   'name'        => 'signupdate',
205                   'value'       => $cust_main->signupdate,
206                   'label'       => emt('Signup date'),
207                   'format'      => ( $conf->config('date_format') || "%m/%d/%Y" ),
208               }
209     &>
210 % }
211
212 % # permission to edit ticket subjects
213 % if ( $conf->exists('ticket_system-selfservice_edit_subject') ) {
214   <TR>
215     <TD ALIGN="right">
216       <INPUT TYPE="checkbox" NAME="edit_subject" VALUE="Y" <% 
217         $cust_main->edit_subject ? 'CHECKED' : '' %>></TD>
218     <TD ALIGN="left"><% mt('Can edit ticket subjects') |h %></TD>
219   </TR>
220 % } else {
221   <INPUT TYPE="hidden" NAME="edit_subject" VALUE="<% $cust_main->edit_subject %>">
222 % }
223
224 % # permission to edit
225 % if ( $conf->exists('cust_main-edit_calling_list_exempt') ) {
226   <TR>
227     <TD ALIGN="right">
228       <INPUT TYPE="checkbox" NAME="calling_list_exempt" VALUE="Y" <% 
229         $cust_main->calling_list_exempt ? 'CHECKED' : '' %>></TD>
230     <TD ALIGN="left"><% mt('Calling list exempt') |h %></TD>
231   </TR>
232 % } else {
233   <INPUT TYPE="hidden" NAME="calling_list_exempt" VALUE="<% $cust_main->calling_list_exempt %>">
234 % }
235
236 </TABLE>
237
238 <%init>
239
240 my( $cust_main, %opt ) = @_;
241
242 my $custnum = $opt{'custnum'};
243
244 my $conf = new FS::Conf;
245
246 if ( $cgi->param('error') ) {
247   $cust_main->set('residential_commercial',
248     ($cgi->param('residential_commercial') eq 'Commercial')
249       ? 'Commercial'
250       : 'Residential'
251   );
252 } elsif ( $custnum ) { #editing
253   $cust_main->set('residential_commercial',
254     length($cust_main->company)
255       ? 'Commercial'
256       : 'Residential'
257   );
258 } else { #new customer
259   $cust_main->set('residential_commercial',
260     $conf->exists('cust_main-default_commercial')
261       ? 'Commercial'
262       : 'Residential'
263   );
264 }
265
266 my $curuser = $FS::CurrentUser::CurrentUser;
267
268 my $r = qq!<font color="#ff0000">*</font>&nbsp;!;
269
270 # which agents lock the service address, if any
271 my %ship_locked_agents;
272 foreach (qsearch('agent',{})) {
273   my $agentnum = $_->agentnum;
274   next unless $conf->exists('agent-ship_address', $_->agentnum);
275   my $cust_main = $_->agent_cust_main or next;
276   my $agent_ship_location = $cust_main->ship_location;
277   $ship_locked_agents{$agentnum} = +{
278     map { $_ => $agent_ship_location->$_ }
279     qw(locationname address1 city state zip country latitude longitude district)
280   };
281 }
282
283 </%init>