switch birthdate to DateTime
[freeside.git] / httemplate / edit / cust_main.cgi
1 %
2 %
3 %  #for misplaced logic below
4 %  #use FS::part_pkg;
5 %
6 %  #for false laziness below (now more properly lazy)
7 %  #use FS::svc_acct_pop;
8 %
9 %  #for (other) false laziness below
10 %  #use FS::agent;
11 %  #use FS::type_pkgs;
12 %
13 %my $conf = new FS::Conf;
14 %
15 %#get record
16 %
17 %my $error = '';
18 %my($custnum, $username, $password, $popnum, $cust_main, $saved_pkgpart);
19 %my(@invoicing_list);
20 %my $same = '';
21 %if ( $cgi->param('error') ) {
22 %  $error = $cgi->param('error');
23 %  $cust_main = new FS::cust_main ( {
24 %    map { $_, scalar($cgi->param($_)) } fields('cust_main')
25 %  } );
26 %  $custnum = $cust_main->custnum;
27 %  $saved_pkgpart = $cgi->param('pkgpart_svcpart') || '';
28 %  if ( $saved_pkgpart =~ /^(\d+)_/ ) {
29 %    $saved_pkgpart = $1;
30 %  } else {
31 %    $saved_pkgpart = '';
32 %  }
33 %  $username = $cgi->param('username');
34 %  $password = $cgi->param('_password');
35 %  $popnum = $cgi->param('popnum');
36 %  @invoicing_list = split( /\s*,\s*/, $cgi->param('invoicing_list') );
37 %  $same = $cgi->param('same');
38 %  $cust_main->setfield('paid' => $cgi->param('paid')) if $cgi->param('paid');
39 %} elsif ( $cgi->keywords ) { #editing
40 %  my( $query ) = $cgi->keywords;
41 %  $query =~ /^(\d+)$/;
42 %  $custnum=$1;
43 %  $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } );
44 %  if ( $cust_main->dbdef_table->column('paycvv')
45 %       && length($cust_main->paycvv)             ) {
46 %    my $paycvv = $cust_main->paycvv;
47 %    $paycvv =~ s/./*/g;
48 %    $cust_main->paycvv($paycvv);
49 %  }
50 %  $saved_pkgpart = 0;
51 %  $username = '';
52 %  $password = '';
53 %  $popnum = 0;
54 %  @invoicing_list = $cust_main->invoicing_list;
55 %} else {
56 %  $custnum='';
57 %  $cust_main = new FS::cust_main ( {} );
58 %  $cust_main->otaker( &getotaker );
59 %  $cust_main->referral_custnum( $cgi->param('referral_custnum') );
60 %  $saved_pkgpart = 0;
61 %  $username = '';
62 %  $password = '';
63 %  $popnum = 0;
64 %  @invoicing_list = ();
65 %}
66 %$cgi->delete_all();
67 %
68 %my $action = $custnum ? 'Edit' : 'Add';
69 %$action .= ": ". $cust_main->name if $custnum;
70 %
71 %my $r = qq!<font color="#ff0000">*</font>&nbsp;!;
72 %
73 %
74
75
76 <!-- top -->
77
78 <% include('/elements/header.html',
79       "Customer $action",
80       '',
81       ' onUnload="myclose()"'
82 ) %>
83 % if ( $error ) { 
84
85 <FONT SIZE="+1" COLOR="#ff0000">Error: <% $error %></FONT><BR><BR>
86 % } 
87
88
89 <FORM NAME="topform" STYLE="margin-bottom: 0">
90 <INPUT TYPE="hidden" NAME="custnum" VALUE="<% $custnum %>">
91 % if ( $custnum ) { 
92
93   Customer #<B><% $custnum %></B> - 
94   <B><FONT COLOR="<% $cust_main->statuscolor %>">
95     <% ucfirst($cust_main->status) %>
96   </FONT></B>
97   <BR><BR>
98 % } 
99
100
101 <% &ntable("#cccccc") %>
102
103 <!-- agent -->
104
105 <% include('/elements/tr-select-agent.html', $cust_main->agentnum,
106               'label'       => "<B>${r}Agent</B>",
107               'empty_label' => 'Select agent',
108            )
109 %>
110
111 <!-- referral (advertising source) -->
112 %
113 %my $refnum = $cust_main->refnum || $conf->config('referraldefault') || 0;
114 %if ( $custnum && ! $conf->exists('editreferrals') ) {
115 %
116
117
118   <INPUT TYPE="hidden" NAME="refnum" VALUE="<% $refnum %>">
119 % } else { 
120
121
122    <% include('/elements/tr-select-part_referral.html', $refnum ) %>
123 % } 
124
125
126 <!-- referring customer -->
127 %
128 %my $referring_cust_main = '';
129 %if ( $cust_main->referral_custnum
130 %     and $referring_cust_main =
131 %           qsearchs('cust_main', { custnum => $cust_main->referral_custnum } )
132 %) {
133 %
134
135
136   <TR>
137     <TD ALIGN="right">Referring customer</TD>
138     <TD>
139       <A HREF="<% popurl(1) %>/cust_main.cgi?<% $cust_main->referral_custnum %>"><% $cust_main->referral_custnum %>: <% $referring_cust_main->name %></A>
140     </TD>
141   </TR>
142   <INPUT TYPE="hidden" NAME="referral_custnum" VALUE="<% $cust_main->referral_custnum %>">
143 % } elsif ( ! $conf->exists('disable_customer_referrals') ) { 
144
145
146   <TR>
147     <TD ALIGN="right">Referring customer</TD>
148     <TD>
149       <!-- <INPUT TYPE="text" NAME="referral_custnum" VALUE=""> -->
150       <% include('/elements/search-cust_main.html',
151                     'field_name' => 'referral_custnum',
152                  )
153       %>
154     </TD>
155   </TR>
156 % } else { 
157
158
159   <INPUT TYPE="hidden" NAME="referral_custnum" VALUE="">
160 % } 
161
162
163 </TABLE>
164
165 <!-- birthdate -->
166
167 % if ( $conf->exists('cust_main-enable_birthdate') ) {
168
169   <BR>
170   <% ntable("#cccccc", 2) %>
171   <% include ('/elements/tr-input-date-field.html',
172               'birthdate',
173               $cust_main->birthdate,
174               'Date of Birth',
175               $conf->config('date_format') || "%m/%d/%Y",
176               1)
177   %>
178
179   </TABLE>
180
181 % }
182
183 <!-- contact info -->
184
185 <BR><BR>
186 Billing address
187 <% include('cust_main/contact.html', $cust_main, '', 'bill_changed(this)', '' ) %>
188
189 <!-- service address -->
190 % if ( defined $cust_main->dbdef_table->column('ship_last') ) { 
191
192
193 <SCRIPT>
194 function bill_changed(what) {
195   if ( what.form.same.checked ) {
196 % for (qw( last first company address1 address2 city zip daytime night fax )) { 
197
198     what.form.ship_<%$_%>.value = what.form.<%$_%>.value;
199 % } 
200
201
202     what.form.ship_country.selectedIndex = what.form.country.selectedIndex;
203     function fix_ship_state() {
204       what.form.ship_state.selectedIndex = what.form.state.selectedIndex;
205     }
206     ship_country_changed(what.form.ship_country, fix_ship_state );
207
208     function fix_ship_county() {
209       what.form.ship_county.selectedIndex = what.form.county.selectedIndex;
210     }
211     ship_state_changed(what.form.ship_state, fix_ship_county );
212   }
213 }
214 function samechanged(what) {
215   if ( what.checked ) {
216     bill_changed(what);
217 % for (qw( last first company address1 address2 city county state zip country daytime night fax )) { 
218
219     what.form.ship_<%$_%>.disabled = true;
220     what.form.ship_<%$_%>.style.backgroundColor = '#dddddd';
221 % } 
222
223   } else {
224 % for (qw( last first company address1 address2 city county state zip country daytime night fax )) { 
225
226     what.form.ship_<%$_%>.disabled = false;
227     what.form.ship_<%$_%>.style.backgroundColor = '#ffffff';
228 % } 
229
230   }
231 }
232 </SCRIPT>
233 %
234 %  my $checked = '';
235 %  my $disabled = '';
236 %  my $disabledselect = '';
237 %  unless ( $cust_main->ship_last && $same ne 'Y' ) {
238 %    $checked = 'CHECKED';
239 %    $disabled = 'DISABLED style="background-color: #dddddd"';
240 %    foreach (
241 %      qw( last first company address1 address2 city county state zip country
242 %          daytime night fax )
243 %    ) {
244 %      $cust_main->set("ship_$_", $cust_main->get($_) );
245 %    }
246 %  }
247 %
248
249
250 <BR>
251 Service address 
252 (<INPUT TYPE="checkbox" NAME="same" VALUE="Y" onClick="samechanged(this)" <%$checked%>>same as billing address)
253 <% include('cust_main/contact.html', $cust_main, 'ship_', '', $disabled ) %>
254 % } 
255
256
257 <!-- billing info -->
258
259 <% include( 'cust_main/billing.html', $cust_main,
260                'invoicing_list' => \@invoicing_list,
261            )
262 %>
263
264 <SCRIPT>
265 function bottomfixup(what) {
266
267   var topvars = new Array(
268     'birthdate',
269
270     'custnum', 'agentnum', 'refnum', 'referral_custnum',
271
272     'last', 'first', 'ss', 'company',
273     'address1', 'address2', 'city',
274     'county', 'state', 'zip', 'country',
275     'daytime', 'night', 'fax',
276
277     'same',
278
279     'ship_last', 'ship_first', 'ship_company',
280     'ship_address1', 'ship_address2', 'ship_city',
281     'ship_county', 'ship_state', 'ship_zip', 'ship_country',
282     'ship_daytime','ship_night', 'ship_fax',
283
284     'select' // XXX key
285   );
286
287   var layervars = new Array(
288     'payauto',
289     'payinfo', 'payinfo1', 'payinfo2',
290     'payname', 'exp_month', 'exp_year', 'paycvv',
291     'paystart_month', 'paystart_year', 'payissue',
292     'payip',
293     'paid'
294   );
295
296   var billing_bottomvars = new Array(
297     'tax',
298     'invoicing_list', 'invoicing_list_POST', 'invoicing_list_FAX',
299     'spool_cdr'
300   );
301
302   for ( f=0; f < topvars.length; f++ ) {
303     var field = topvars[f];
304     copyelement( document.topform.elements[field],
305                  document.bottomform.elements[field]
306                );
307   }
308
309   var layerform = document.topform.select.options[document.topform.select.selectedIndex].value;
310   for ( f=0; f < layervars.length; f++ ) {
311     var field = layervars[f];
312     copyelement( document.forms[layerform].elements[field],
313                  document.bottomform.elements[field]
314                );
315   }
316
317   for ( f=0; f < billing_bottomvars.length; f++ ) {
318     var field = billing_bottomvars[f];
319     copyelement( document.billing_bottomform.elements[field],
320                  document.bottomform.elements[field]
321                );
322   }
323
324 }
325
326 function copyelement(from, to) {
327   if ( from == undefined ) {
328     to.value = '';
329   } else if ( from.type == 'select-one' ) {
330     to.value = from.options[from.selectedIndex].value;
331     //alert(from + " (" + from.type + "): " + to.name + " => (" + from.selectedIndex + ") " + to.value);
332   } else if ( from.type == 'checkbox' ) {
333     if ( from.checked ) {
334       to.value = from.value;
335     } else {
336       to.value = '';
337     }
338   } else {
339     if ( from.value == undefined ) {
340       to.value = '';
341     } else {
342       to.value = from.value;
343     }
344   }
345   //alert(from + " (" + from.type + "): " + to.name + " => " + to.value);
346 }
347
348 </SCRIPT>
349
350 <FORM ACTION="<% popurl(1) %>process/cust_main.cgi" METHOD=POST NAME="bottomform" onSubmit="document.bottomform.submit.disabled=true; bottomfixup(this.form);" STYLE="margin-top: 0; margin-bottom: 0">
351 % foreach my $hidden (
352 %     'birthdate',
353 %
354 %     'custnum', 'agentnum', 'refnum', 'referral_custnum',
355 %     'last', 'first', 'ss', 'company',
356 %     'address1', 'address2', 'city',
357 %     'county', 'state', 'zip', 'country',
358 %     'daytime', 'night', 'fax',
359 %     
360 %     'same',
361 %     
362 %     'ship_last', 'ship_first', 'ship_company',
363 %     'ship_address1', 'ship_address2', 'ship_city',
364 %     'ship_county', 'ship_state', 'ship_zip', 'ship_country',
365 %     'ship_daytime','ship_night', 'ship_fax',
366 %     
367 %     'select', #XXX key
368 %
369 %     'payauto',
370 %     'payinfo', 'payinfo1', 'payinfo2',
371 %     'payname', 'exp_month', 'exp_year', 'paycvv',
372 %     'paystart_month', 'paystart_year', 'payissue',
373 %     'payip',
374 %     'paid',
375 %     
376 %     'tax',
377 %     'invoicing_list', 'invoicing_list_POST', 'invoicing_list_FAX',
378 %     'spool_cdr'
379 %   ) {
380 %
381
382   <INPUT TYPE="hidden" NAME="<% $hidden %>" VALUE="">
383 % } 
384 %
385 % my $ro_comments = $conf->exists('cust_main-use_comments')?'':'readonly';
386 % if (!$ro_comments || $cust_main->comments) {
387
388 <BR>Comments
389 <% &ntable("#cccccc") %>
390   <TR>
391     <TD>
392       <TEXTAREA COLS=80 ROWS=5 WRAP="HARD" NAME="comments" <%$ro_comments%>><% $cust_main->comments %></TEXTAREA>
393     </TD>
394   </TR>
395 </TABLE>
396 %
397 % }
398 %
399 %unless ( $custnum ) {
400 %  # pry the wrong place for this logic.  also pretty expensive
401 %  #use FS::part_pkg;
402 %
403 %  #false laziness, copied from FS::cust_pkg::order
404 %  my $pkgpart;
405 %  my @agents = $FS::CurrentUser::CurrentUser->agents;
406 %  if ( scalar(@agents) == 1 ) {
407 %    # $pkgpart->{PKGPART} is true iff $custnum may purchase PKGPART
408 %    $pkgpart = $agents[0]->pkgpart_hashref;
409 %  } else {
410 %    #can't know (agent not chosen), so, allow all
411 %    my %typenum;
412 %    foreach my $agent ( @agents ) {
413 %      next if $typenum{$agent->typenum}++;
414 %      #fixed in 5.004_05 #$pkgpart->{$_}++ foreach keys %{ $agent->pkgpart_hashref }
415 %      foreach ( keys %{ $agent->pkgpart_hashref } ) { $pkgpart->{$_}++; } #5.004_04 workaround
416 %    }
417 %  }
418 %  #eslaf
419 %
420 %  my @part_pkg = grep { $_->svcpart('svc_acct') && $pkgpart->{ $_->pkgpart } }
421 %    qsearch( 'part_pkg', { 'disabled' => '' } );
422 %
423 %  if ( @part_pkg ) {
424 %
425 %    #    print "<BR><BR>First package", &itable("#cccccc", "0 ALIGN=LEFT"),
426 %    #apiabuse & undesirable wrapping
427 %
428 %    
429
430     <BR>First package
431     <% ntable("#cccccc") %>
432     
433       <TR>
434         <TD COLSPAN=2>
435           <SELECT NAME="pkgpart_svcpart">
436             <OPTION VALUE="">(none)
437 % foreach my $part_pkg ( @part_pkg ) { 
438
439     
440               <OPTION VALUE="<% $part_pkg->pkgpart. "_". $part_pkg->svcpart('svc_acct') %>"<% ( $saved_pkgpart && $part_pkg->pkgpart == $saved_pkgpart ) ? ' SELECTED' : '' %>><% $part_pkg->pkg. " - ". $part_pkg->comment %>
441 % } 
442
443           </SELECT>
444         </TD>
445       </TR>
446
447 %        #false laziness: (mostly) copied from edit/svc_acct.cgi
448 %        #$ulen = $svc_acct->dbdef_table->column('username')->length;
449 %        my $ulen = dbdef->table('svc_acct')->column('username')->length;
450 %        my $ulen2 = $ulen+2;
451 %        my $passwordmax = $conf->config('passwordmax') || 8;
452 %        my $pmax2 = $passwordmax + 2;
453 %      
454
455     
456       <TR>
457         <TD ALIGN="right">Username</TD>
458         <TD>
459           <INPUT TYPE="text" NAME="username" VALUE="<% $username %>" SIZE=<% $ulen2 %> MAXLENGTH=<% $ulen %>>
460         </TD>
461       </TR>
462     
463       <TR>
464         <TD ALIGN="right">Password</TD>
465         <TD>
466           <INPUT TYPE="text" NAME="_password" VALUE="<% $password %>" SIZE=<% $pmax2 %> MAXLENGTH=<% $passwordmax %>>
467           (blank to generate)
468         </TD>
469       </TR>
470     
471       <TR>
472         <TD ALIGN="right">Access number</TD>
473         <TD><% FS::svc_acct_pop::popselector($popnum) %></TD>
474       </TR>
475     </TABLE>
476 % } 
477 % } 
478
479
480 <INPUT TYPE="hidden" NAME="otaker" VALUE="<% $cust_main->otaker %>">
481 <BR>
482 <INPUT TYPE="submit" NAME="submit" VALUE="<% $custnum ?  "Apply Changes" : "Add Customer" %>">
483 <BR>
484 </FORM>
485
486 <% include('/elements/footer.html') %>
487