cb8ec83ee4ea91e66477a0fb0d748713ce83d13f
[freeside.git] / htdocs / edit / cust_main.cgi
1 #!/usr/bin/perl -Tw
2 #
3 # $Id: cust_main.cgi,v 1.27 2000-12-03 13:45:15 ivan Exp $
4 #
5 # Usage: cust_main.cgi custnum
6 #        http://server.name/path/cust_main.cgi?custnum
7 #
8 # ivan@voicenet.com 96-nov-29 -> 96-dec-04
9 #
10 # Blank custnum for new customer.
11 # ivan@voicenet.com 96-dec-16
12 #
13 # referral defaults to blank, to force people to pick something
14 # ivan@voicenet.com 97-jun-4
15 #
16 # rewrote for new API
17 # ivan@voicenet.com 97-jul-28
18 #
19 # new customer is null, not '#'
20 # otaker gotten from &getotaker instead of $ENV{REMOTE_USER}
21 # ivan@sisd.com 97-nov-12
22 #
23 # cgisuidsetup($cgi);
24 # no need for old_ fields.
25 # now state+county is a select field (took out PA hack)
26 # used autoloaded $cust_main->field methods
27 # ivan@sisd.com 97-dec-17
28 #
29 # fixed quoting problems ivan@sisd.com 98-feb-23
30 #
31 # paydate sql update ivan@sisd.com 98-mar-5
32 #
33 # Changes to allow page to work at a relative position in server
34 # Changed 'day' to 'daytime' because Pg6.3 reserves the day word
35 # Added test for paydate in mm-dd-yyyy format for Pg6.3 default format
36 #       bmccane@maxbaud.net     98-apr-3
37 #
38 # fixed one missed day->daytime ivan@sisd.com 98-jul-13
39 #
40 # $Log: cust_main.cgi,v $
41 # Revision 1.27  2000-12-03 13:45:15  ivan
42 # patch from Jason Spence <thalakan@frys.com>: admin.html doc, autocapgen
43 #
44 # Revision 1.26  2000/06/27 12:15:50  ivan
45 # i18n
46 #
47 # Revision 1.25  2000/03/02 08:09:38  ivan
48 # still need to allow blank expiration dates
49 #
50 # Revision 1.24  2000/01/30 06:54:50  ivan
51 # credit card expiration dates not sticky bug fixed?
52 #
53 # Revision 1.23  2000/01/27 00:53:14  ivan
54 # 5.004_04 workaround
55 #
56 # Revision 1.22  1999/12/17 02:33:23  ivan
57 # argh
58 #
59 # Revision 1.21  1999/08/23 07:40:38  ivan
60 # missing </TD> flag
61 #
62 # Revision 1.20  1999/08/23 07:08:11  ivan
63 # no CGI::Switch for now
64 #
65 # Revision 1.19  1999/08/21 02:14:25  ivan
66 # better error message for no agents
67 #
68 # Revision 1.18  1999/08/11 15:38:33  ivan
69 # fix for perl 5.004_04
70 #
71 # Revision 1.17  1999/08/10 11:15:45  ivan
72 # corrected a misleading comment
73 #
74 # Revision 1.15  1999/04/14 13:14:54  ivan
75 # configuration option to edit referrals of existing customers
76 #
77 # Revision 1.14  1999/04/14 07:47:53  ivan
78 # i18n fixes
79 #
80 # Revision 1.13  1999/04/09 03:52:55  ivan
81 # explicit & for table/itable/ntable
82 #
83 # Revision 1.12  1999/04/06 11:16:16  ivan
84 # give a meaningful error message if you try to create a customer before you've
85 # created an agent
86 #
87 # Revision 1.11  1999/03/25 13:55:10  ivan
88 # one-screen new customer entry (including package and service) for simple
89 # packages with one svc_acct service
90 #
91 # Revision 1.10  1999/02/28 00:03:34  ivan
92 # removed misleading comments
93 #
94 # Revision 1.9  1999/02/23 08:09:20  ivan
95 # beginnings of one-screen new customer entry and some other miscellania
96 #
97 # Revision 1.8  1999/01/25 12:09:53  ivan
98 # yet more mod_perl stuff
99 #
100 # Revision 1.7  1999/01/19 05:13:34  ivan
101 # for mod_perl: no more top-level my() variables; use vars instead
102 # also the last s/create/new/;
103 #
104 # Revision 1.6  1999/01/18 09:41:24  ivan
105 # all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl
106 # (good idea anyway)
107 #
108 # Revision 1.5  1999/01/18 09:22:30  ivan
109 # changes to track email addresses for email invoicing
110 #
111 # Revision 1.4  1998/12/23 08:08:15  ivan
112 # fix typo
113 #
114 # Revision 1.3  1998/12/17 06:17:00  ivan
115 # fix double // in relative URLs, s/CGI::Base/CGI/;
116 #
117
118 use strict;
119 use vars qw( $cgi $custnum $action $cust_main $p1 @agents $agentnum 
120              $last $first $ss $company $address1 $address2 $city $zip 
121              $daytime $night $fax @invoicing_list $invoicing_list $payinfo
122              $payname %payby %paybychecked $refnum $otaker $r );
123 use vars qw ( $conf $pkgpart $username $password $popnum $ulen $ulen2 );
124 #use CGI::Switch;
125 use CGI;
126 use CGI::Carp qw(fatalsToBrowser);
127 use FS::UID qw(cgisuidsetup getotaker);
128 #use FS::Record qw(qsearch qsearchs fields);
129 use FS::Record qw(qsearch qsearchs fields dbdef);
130 use FS::CGI qw(header popurl itable table);
131 use FS::cust_main;
132 use FS::agent;
133 use FS::part_referral;
134 use FS::cust_main_county;
135
136   #for misplaced logic below
137   use FS::part_pkg;
138
139   #for false laziness below
140   use FS::svc_acct_pop;
141
142   #for (other) false laziness below
143   use FS::agent;
144   use FS::type_pkgs;
145
146 $cgi = new CGI;
147 cgisuidsetup($cgi);
148
149 $conf = new FS::Conf;
150
151 #get record
152
153 if ( $cgi->param('error') ) {
154   $cust_main = new FS::cust_main ( {
155     map { $_, scalar($cgi->param($_)) } fields('cust_main')
156   } );
157   $custnum = $cust_main->custnum;
158   $pkgpart = $cgi->param('pkgpart_svcpart') || '';
159   if ( $pkgpart =~ /^(\d+)_/ ) {
160     $pkgpart = $1;
161   } else {
162     $pkgpart = '';
163   }
164   $username = $cgi->param('username');
165   $password = $cgi->param('_password');
166   $popnum = $cgi->param('popnum');
167 } elsif ( $cgi->keywords ) { #editing
168   my( $query ) = $cgi->keywords;
169   $query =~ /^(\d+)$/;
170   $custnum=$1;
171   $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } );
172   $pkgpart = 0;
173   $username = '';
174   $password = '';
175   $popnum = 0;
176 } else {
177   $custnum='';
178   $cust_main = new FS::cust_main ( {} );
179   $cust_main->setfield('otaker',&getotaker);
180   $pkgpart = 0;
181   $username = '';
182   $password = '';
183   $popnum = 0;
184 }
185 $action = $custnum ? 'Edit' : 'Add';
186
187 # top
188
189 $p1 = popurl(1);
190 print $cgi->header( '-expires' => 'now' ), header("Customer $action", '');
191 print qq!<FONT SIZE="+1" COLOR="#ff0000">Error: !, $cgi->param('error'),
192       "</FONT>"
193   if $cgi->param('error');
194
195 # JRS: Javascript to set up the form for us
196     if ( $conf->exists('autocapnames') ) {
197       print <<END;
198 <SCRIPT language="Javascript"><!--
199     
200 function capName(name) {
201     var temp = new String();
202     var n = name.toString();
203     
204 // Handle "Mc", "Mac", "Von", "Van", etc...
205  
206     if(n.substr(0,2).toLowerCase() == "mc") {
207      temp += "Mc";
208      temp += n.charAt(2).toUpperCase();
209      temp += n.substr(3).toLowerCase();
210      return temp;
211     }
212      
213     if(n.substr(0,3).toLowerCase() == "mac") {
214      temp += "Mac";
215      temp += n.charAt(3).toUpperCase();
216      temp += n.substr(4).toLowerCase();
217      return temp;
218     }
219     if(n.substr(0,3).toLowerCase() == "von") {
220      temp += "Von";
221      temp += n.charAt(3).toUpperCase();
222      temp += n.substr(4).toLowerCase();
223      return temp;
224     }
225     if(n.substr(0,3).toLowerCase() == "van") {
226      temp += "Van";
227      temp += n.charAt(3).toUpperCase();
228      temp += n.substr(4).toLowerCase();
229      return temp;
230     }
231     temp += n.charAt(0).toUpperCase();
232     temp += n.substr(1).toLowerCase();
233     return temp;
234 }
235    
236 //-->
237 </SCRIPT>
238 END
239 }
240
241 print qq!<FORM ACTION="${p1}process/cust_main.cgi" METHOD=POST NAME="form1">!,
242       qq!<INPUT TYPE="hidden" NAME="custnum" VALUE="$custnum">!,
243       qq!Customer # !, ( $custnum ? $custnum : " (NEW)" ),
244       
245 ;
246
247 # agent
248
249 $r = qq!<font color="#ff0000">*</font>!;
250
251 @agents = qsearch( 'agent', {} );
252 #die "No agents created!" unless @agents;
253 die "You have not created any agents.  You must create at least one agent before adding a customer.  Go to ". popurl(2). "browse/agent.cgi and create one or more agents." unless @agents;
254 $agentnum = $cust_main->agentnum || $agents[0]->agentnum; #default to first
255 if ( scalar(@agents) == 1 ) {
256   print qq!<INPUT TYPE="hidden" NAME="agentnum" VALUE="$agentnum">!;
257 } else {
258   print qq!<BR><BR>${r}Agent <SELECT NAME="agentnum" SIZE="1">!;
259   my $agent;
260   foreach $agent (sort {
261     $a->agent cmp $b->agent;
262   } @agents) {
263       print '<OPTION VALUE="', $agent->agentnum, '"',
264       " SELECTED"x($agent->agentnum==$agentnum),
265       ">", $agent->agentnum,": ", $agent->agent;
266   }
267   print "</SELECT>";
268 }
269
270 #referral
271
272 $refnum = $cust_main->refnum || 0;
273 if ( $custnum && ! $conf->exists('editreferrals') ) {
274   print qq!<INPUT TYPE="hidden" NAME="refnum" VALUE="$refnum">!;
275 } else {
276   my(@referrals) = qsearch('part_referral',{});
277   if ( scalar(@referrals) == 1 ) {
278     $refnum ||= $referrals[0]->refnum;
279     print qq!<INPUT TYPE="hidden" NAME="refnum" VALUE="$refnum">!;
280   } else {
281     print qq!<BR><BR>${r}Referral <SELECT NAME="refnum" SIZE="1">!;
282     print "<OPTION> " unless $refnum;
283     my($referral);
284     foreach $referral (sort {
285       $a->refnum <=> $b->refnum;
286     } @referrals) {
287       print "<OPTION" . " SELECTED"x($referral->refnum==$refnum),
288       ">", $referral->refnum, ": ", $referral->referral;
289     }
290     print "</SELECT>";
291   }
292 }
293
294
295 # contact info
296
297 ($last,$first,$ss,$company,$address1,$address2,$city,$zip)=(
298   $cust_main->last,
299   $cust_main->first,
300   $cust_main->ss,
301   $cust_main->company,
302   $cust_main->address1,
303   $cust_main->address2,
304   $cust_main->city,
305   $cust_main->zip,
306 );
307
308 print "<BR><BR>Contact information", &itable("#c0c0c0"), <<END;
309 <TR><TH ALIGN="right">${r}Contact name<BR>(last, first)</TH><TD COLSPAN=3>
310 END
311
312 if ( $conf->exists('autocapnames') ) {
313   print <<END;
314 <INPUT TYPE="text" NAME="last" VALUE="$last" onChange="updateUsername();">, 
315 <INPUT TYPE="text" NAME="first" VALUE="$first" onChange="updateUsername();">
316 END
317 } else {
318   print <<END;
319 <INPUT TYPE="text" NAME="last" VALUE="$last">, 
320 <INPUT TYPE="text" NAME="first" VALUE="$first">
321 END
322 }
323
324 print <<END;
325 </TD><TD ALIGN="right">SS#</TD><TD><INPUT TYPE="text" NAME="ss" VALUE="$ss" SIZE=11></TD></TR>
326 <TR><TD ALIGN="right">Company</TD><TD COLSPAN=5><INPUT TYPE="text" NAME="company" VALUE="$company" SIZE=70></TD></TR>
327 <TR><TH ALIGN="right">${r}Address</TH><TD COLSPAN=5><INPUT TYPE="text" NAME="address1" VALUE="$address1" SIZE=70></TD></TR>
328 <TR><TD ALIGN="right">&nbsp;</TD><TD COLSPAN=5><INPUT TYPE="text" NAME="address2" VALUE="$address2" SIZE=70></TD></TR>
329 <TR><TH ALIGN="right">${r}City</TH><TD><INPUT TYPE="text" NAME="city" VALUE="$city"></TD><TH ALIGN="right">${r}State/Country</TH><TD><SELECT NAME="state" SIZE="1">
330 END
331
332 $cust_main->country( $conf->config('countrydefault') || 'US' )
333   unless $cust_main->country;
334 foreach ( qsearch('cust_main_county',{}) ) {
335   print "<OPTION";
336   print " SELECTED" if ( $cust_main->state eq $_->state
337                          && $cust_main->county eq $_->county 
338                          && $cust_main->country eq $_->country
339                        );
340   print ">",$_->state;
341   print " (",$_->county,")" if $_->county;
342   print " / ", $_->country;
343 }
344 print qq!</SELECT></TD><TH>${r}Zip</TH><TD><INPUT TYPE="text" NAME="zip" VALUE="$zip" SIZE=10></TD></TR>!;
345
346 ($daytime,$night,$fax)=(
347   $cust_main->daytime,
348   $cust_main->night,
349   $cust_main->fax,
350 );
351
352 print <<END;
353 <TR><TD ALIGN="right">Day Phone</TD><TD COLSPAN=5><INPUT TYPE="text" NAME="daytime" VALUE="$daytime" SIZE=18></TD></TR>
354 <TR><TD ALIGN="right">Night Phone</TD><TD COLSPAN=5><INPUT TYPE="text" NAME="night" VALUE="$night" SIZE=18></TD></TR>
355 <TR><TD ALIGN="right">Fax</TD><TD COLSPAN=5><INPUT TYPE="text" NAME="fax" VALUE="$fax" SIZE=12></TD></TR>
356 END
357
358 print "</TABLE>$r required fields<BR>";
359
360 # billing info
361
362 sub expselect {
363   my $prefix = shift;
364   my( $m, $y ) = (0, 0);
365   if ( scalar(@_) ) {
366     my $date = shift || '01-2000';
367     if ( $date  =~ /^(\d{4})-(\d{1,2})-\d{1,2}$/ ) { #PostgreSQL date format
368       ( $m, $y ) = ( $2, $1 );
369     } elsif ( $date =~ /^(\d{1,2})-(\d{1,2}-)?(\d{4}$)/ ) {
370       ( $m, $y ) = ( $1, $3 );
371     } else {
372       die "unrecognized expiration date format: $date";
373     }
374   }
375
376   my $return = qq!<SELECT NAME="$prefix!. qq!_month" SIZE="1">!;
377   for ( 1 .. 12 ) {
378     $return .= "<OPTION";
379     $return .= " SELECTED" if $_ == $m;
380     $return .= ">$_";
381   }
382   $return .= qq!</SELECT>/<SELECT NAME="$prefix!. qq!_year" SIZE="1">!;
383   for ( 1999 .. 2037 ) {
384     $return .= "<OPTION";
385     $return .= " SELECTED" if $_ == $y;
386     $return .= ">$_";
387   }
388   $return .= "</SELECT>";
389
390   $return;
391 }
392
393 print "<BR>Billing information", &itable("#c0c0c0"),
394       qq!<TR><TD><INPUT TYPE="checkbox" NAME="tax" VALUE="Y"!;
395 print qq! CHECKED! if $cust_main->tax eq "Y";
396 print qq!>Tax Exempt</TD></TR>!;
397 print qq!<TR><TD><INPUT TYPE="checkbox" NAME="invoicing_list_POST" VALUE="POST"!;
398 @invoicing_list = $cust_main->invoicing_list;
399 print qq! CHECKED!
400   if ! @invoicing_list || grep { $_ eq 'POST' } @invoicing_list;
401 print qq!>Postal mail invoice</TD></TR>!;
402 $invoicing_list = join(', ', grep { $_ ne 'POST' } @invoicing_list );
403 print qq!<TR><TD>Email invoice <INPUT TYPE="text" NAME="invoicing_list" VALUE="$invoicing_list"></TD></TR>!;
404
405 print "<TR><TD>Billing type</TD></TR>",
406       "</TABLE>",
407       &table("#c0c0c0"), "<TR>";
408
409 ($payinfo, $payname)=(
410   $cust_main->payinfo,
411   $cust_main->payname,
412 );
413
414 %payby = (
415   'CARD' => qq!Credit card<BR>${r}<INPUT TYPE="text" NAME="CARD_payinfo" VALUE="" MAXLENGTH=19><BR>${r}Exp !. expselect("CARD"). qq!<BR>${r}Name on card<BR><INPUT TYPE="text" NAME="CARD_payname" VALUE="">!,
416   'BILL' => qq!Billing<BR>P.O. <INPUT TYPE="text" NAME="BILL_payinfo" VALUE=""><BR>${r}Exp !. expselect("BILL", "12-2037"). qq!<BR>${r}Attention<BR><INPUT TYPE="text" NAME="BILL_payname" VALUE="Accounts Payable">!,
417   'COMP' => qq!Complimentary<BR>${r}Approved by<INPUT TYPE="text" NAME="COMP_payinfo" VALUE=""><BR>${r}Exp !. expselect("COMP"),
418 );
419 %paybychecked = (
420   'CARD' => qq!Credit card<BR>${r}<INPUT TYPE="text" NAME="CARD_payinfo" VALUE="$payinfo" MAXLENGTH=19><BR>${r}Exp !. expselect("CARD", $cust_main->paydate). qq!<BR>${r}Name on card<BR><INPUT TYPE="text" NAME="CARD_payname" VALUE="$payname">!,
421   'BILL' => qq!Billing<BR>P.O. <INPUT TYPE="text" NAME="BILL_payinfo" VALUE="$payinfo"><BR>${r}Exp !. expselect("BILL", $cust_main->paydate). qq!<BR>${r}Attention<BR><INPUT TYPE="text" NAME="BILL_payname" VALUE="$payname">!,
422   'COMP' => qq!Complimentary<BR>${r}Approved by<INPUT TYPE="text" NAME="COMP_payinfo" VALUE="$payinfo"><BR>${r}Exp !. expselect("COMP", $cust_main->paydate),
423 );
424 for (qw(CARD BILL COMP)) {
425   print qq!<TD VALIGN=TOP><INPUT TYPE="radio" NAME="payby" VALUE="$_"!;
426   if ($cust_main->payby eq "$_") {
427     print qq! CHECKED> $paybychecked{$_}</TD>!;
428   } else {
429     print qq!> $payby{$_}</TD>!;
430   }
431 }
432
433 print "</TR></TABLE>$r required fields for each billing type";
434
435 unless ( $custnum ) {
436   # pry the wrong place for this logic.  also pretty expensive
437   #use FS::part_pkg;
438
439   #false laziness, copied from FS::cust_pkg::order
440   my $pkgpart;
441   if ( scalar(@agents) == 1 ) {
442     # $pkgpart->{PKGPART} is true iff $custnum may purchase $pkgpart
443     my($agent)=qsearchs('agent',{'agentnum'=> $agentnum });
444     $pkgpart = $agent->pkgpart_hashref;
445   } else {
446     #can't know (agent not chosen), so, allow all
447     my %typenum;
448     foreach my $agent ( @agents ) {
449       next if $typenum{$agent->typenum}++;
450       #fixed in 5.004_05 #$pkgpart->{$_}++ foreach keys %{ $agent->pkgpart_hashref }
451       foreach ( keys %{ $agent->pkgpart_hashref } ) { $pkgpart->{$_}++; } #5.004_04 workaround
452     }
453   }
454   #eslaf
455
456   my @part_pkg = grep { $_->svcpart('svc_acct') && $pkgpart->{ $_->pkgpart } }
457     qsearch( 'part_pkg', {} );
458
459   if ( @part_pkg ) {
460
461     print "<BR><BR>First package", &itable("#c0c0c0"),
462           qq!<TR><TD COLSPAN=2><SELECT NAME="pkgpart_svcpart">!;
463
464     print qq!<OPTION VALUE="">(none)!;
465
466     foreach my $part_pkg ( @part_pkg ) {
467       print qq!<OPTION VALUE="!,
468 #              $part_pkg->pkgpart. "_". $pkgpart{ $part_pkg->pkgpart }, '"';
469               $part_pkg->pkgpart. "_". $part_pkg->svcpart, '"';
470       print " SELECTED" if $pkgpart && ( $part_pkg->pkgpart == $pkgpart );
471       print ">", $part_pkg->pkg, " - ", $part_pkg->comment;
472     }
473     print "</SELECT></TD></TR>";
474
475     #false laziness: (mostly) copied from edit/svc_acct.cgi
476     #$ulen = $svc_acct->dbdef_table->column('username')->length;
477     $ulen = dbdef->table('svc_acct')->column('username')->length;
478     $ulen2 = $ulen+2;
479     print <<END;
480 <TR><TD ALIGN="right">Username</TD>
481 <TD><INPUT TYPE="text" NAME="username" VALUE="$username" SIZE=$ulen2 MAXLENGTH=$ulen></TD></TR>
482 <TR><TD ALIGN="right">Password</TD>
483 <TD><INPUT TYPE="text" NAME="_password" VALUE="$password" SIZE=10 MAXLENGTH=8>
484 (blank to generate)</TD></TR>
485 END
486     print qq!<TR><TD ALIGN="right">POP</TD><TD><SELECT NAME="popnum" SIZE=1><OPTION> !;
487     my($svc_acct_pop);
488     foreach $svc_acct_pop ( qsearch ('svc_acct_pop',{} ) ) {
489     print qq!<OPTION VALUE="!, $svc_acct_pop->popnum, '"',
490           ( $popnum && $svc_acct_pop->popnum == $popnum ) ? ' SELECTED' : '', ">", 
491           $svc_acct_pop->popnum, ": ", 
492           $svc_acct_pop->city, ", ",
493           $svc_acct_pop->state,
494           " (", $svc_acct_pop->ac, ")/",
495           $svc_acct_pop->exch, "\n"
496         ;
497     }
498     print "</SELECT></TD></TR></TABLE>";
499   }
500 }
501
502 $otaker = $cust_main->otaker;
503 print qq!<INPUT TYPE="hidden" NAME="otaker" VALUE="$otaker">!,
504       qq!<BR><BR><INPUT TYPE="submit" VALUE="!,
505       $custnum ?  "Apply Changes" : "Add Customer", qq!">!,
506       "</FORM></BODY></HTML>",
507 ;
508