4eef9c74dd2bfdeb239d490fd3344bb7c8ccbd59
[freeside.git] / htdocs / edit / cust_main.cgi
1 #!/usr/bin/perl -Tw
2 #
3 # $Id: cust_main.cgi,v 1.24 2000-01-30 06:54:50 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.24  2000-01-30 06:54:50  ivan
42 # credit card expiration dates not sticky bug fixed?
43 #
44 # Revision 1.23  2000/01/27 00:53:14  ivan
45 # 5.004_04 workaround
46 #
47 # Revision 1.22  1999/12/17 02:33:23  ivan
48 # argh
49 #
50 # Revision 1.21  1999/08/23 07:40:38  ivan
51 # missing </TD> flag
52 #
53 # Revision 1.20  1999/08/23 07:08:11  ivan
54 # no CGI::Switch for now
55 #
56 # Revision 1.19  1999/08/21 02:14:25  ivan
57 # better error message for no agents
58 #
59 # Revision 1.18  1999/08/11 15:38:33  ivan
60 # fix for perl 5.004_04
61 #
62 # Revision 1.17  1999/08/10 11:15:45  ivan
63 # corrected a misleading comment
64 #
65 # Revision 1.15  1999/04/14 13:14:54  ivan
66 # configuration option to edit referrals of existing customers
67 #
68 # Revision 1.14  1999/04/14 07:47:53  ivan
69 # i18n fixes
70 #
71 # Revision 1.13  1999/04/09 03:52:55  ivan
72 # explicit & for table/itable/ntable
73 #
74 # Revision 1.12  1999/04/06 11:16:16  ivan
75 # give a meaningful error message if you try to create a customer before you've
76 # created an agent
77 #
78 # Revision 1.11  1999/03/25 13:55:10  ivan
79 # one-screen new customer entry (including package and service) for simple
80 # packages with one svc_acct service
81 #
82 # Revision 1.10  1999/02/28 00:03:34  ivan
83 # removed misleading comments
84 #
85 # Revision 1.9  1999/02/23 08:09:20  ivan
86 # beginnings of one-screen new customer entry and some other miscellania
87 #
88 # Revision 1.8  1999/01/25 12:09:53  ivan
89 # yet more mod_perl stuff
90 #
91 # Revision 1.7  1999/01/19 05:13:34  ivan
92 # for mod_perl: no more top-level my() variables; use vars instead
93 # also the last s/create/new/;
94 #
95 # Revision 1.6  1999/01/18 09:41:24  ivan
96 # all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl
97 # (good idea anyway)
98 #
99 # Revision 1.5  1999/01/18 09:22:30  ivan
100 # changes to track email addresses for email invoicing
101 #
102 # Revision 1.4  1998/12/23 08:08:15  ivan
103 # fix typo
104 #
105 # Revision 1.3  1998/12/17 06:17:00  ivan
106 # fix double // in relative URLs, s/CGI::Base/CGI/;
107 #
108
109 use strict;
110 use vars qw( $cgi $custnum $action $cust_main $p1 @agents $agentnum 
111              $last $first $ss $company $address1 $address2 $city $zip 
112              $daytime $night $fax @invoicing_list $invoicing_list $payinfo
113              $payname %payby %paybychecked $refnum $otaker $r );
114 use vars qw ( $conf $pkgpart $username $password $popnum $ulen $ulen2 );
115 #use CGI::Switch;
116 use CGI;
117 use CGI::Carp qw(fatalsToBrowser);
118 use FS::UID qw(cgisuidsetup getotaker);
119 #use FS::Record qw(qsearch qsearchs fields);
120 use FS::Record qw(qsearch qsearchs fields dbdef);
121 use FS::CGI qw(header popurl itable table);
122 use FS::cust_main;
123 use FS::agent;
124 use FS::part_referral;
125 use FS::cust_main_county;
126
127   #for misplaced logic below
128   use FS::part_pkg;
129
130   #for false laziness below
131   use FS::svc_acct_pop;
132
133   #for (other) false laziness below
134   use FS::agent;
135   use FS::type_pkgs;
136
137 $cgi = new CGI;
138 cgisuidsetup($cgi);
139
140 $conf = new FS::Conf;
141
142 #get record
143
144 if ( $cgi->param('error') ) {
145   $cust_main = new FS::cust_main ( {
146     map { $_, scalar($cgi->param($_)) } fields('cust_main')
147   } );
148   $custnum = $cust_main->custnum;
149   $pkgpart = $cgi->param('pkgpart_svcpart') || '';
150   if ( $pkgpart =~ /^(\d+)_/ ) {
151     $pkgpart = $1;
152   } else {
153     $pkgpart = '';
154   }
155   $username = $cgi->param('username');
156   $password = $cgi->param('_password');
157   $popnum = $cgi->param('popnum');
158 } elsif ( $cgi->keywords ) { #editing
159   my( $query ) = $cgi->keywords;
160   $query =~ /^(\d+)$/;
161   $custnum=$1;
162   $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } );
163   $pkgpart = 0;
164   $username = '';
165   $password = '';
166   $popnum = 0;
167 } else {
168   $custnum='';
169   $cust_main = new FS::cust_main ( {} );
170   $cust_main->setfield('otaker',&getotaker);
171   $pkgpart = 0;
172   $username = '';
173   $password = '';
174   $popnum = 0;
175 }
176 $action = $custnum ? 'Edit' : 'Add';
177
178 # top
179
180 $p1 = popurl(1);
181 print $cgi->header( '-expires' => 'now' ), header("Customer $action", '');
182 print qq!<FONT SIZE="+1" COLOR="#ff0000">Error: !, $cgi->param('error'),
183       "</FONT>"
184   if $cgi->param('error');
185 print qq!<FORM ACTION="${p1}process/cust_main.cgi" METHOD=POST>!,
186       qq!<INPUT TYPE="hidden" NAME="custnum" VALUE="$custnum">!,
187       qq!Customer # !, ( $custnum ? $custnum : " (NEW)" ),
188       
189 ;
190
191 # agent
192
193 $r = qq!<font color="#ff0000">*</font>!;
194
195 @agents = qsearch( 'agent', {} );
196 #die "No agents created!" unless @agents;
197 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;
198 $agentnum = $cust_main->agentnum || $agents[0]->agentnum; #default to first
199 if ( scalar(@agents) == 1 ) {
200   print qq!<INPUT TYPE="hidden" NAME="agentnum" VALUE="$agentnum">!;
201 } else {
202   print qq!<BR><BR>${r}Agent <SELECT NAME="agentnum" SIZE="1">!;
203   my $agent;
204   foreach $agent (sort {
205     $a->agent cmp $b->agent;
206   } @agents) {
207       print '<OPTION VALUE="', $agent->agentnum, '"',
208       " SELECTED"x($agent->agentnum==$agentnum),
209       ">", $agent->agentnum,": ", $agent->agent;
210   }
211   print "</SELECT>";
212 }
213
214 #referral
215
216 $refnum = $cust_main->refnum || 0;
217 if ( $custnum && ! $conf->exists('editreferrals') ) {
218   print qq!<INPUT TYPE="hidden" NAME="refnum" VALUE="$refnum">!;
219 } else {
220   my(@referrals) = qsearch('part_referral',{});
221   if ( scalar(@referrals) == 1 ) {
222     $refnum ||= $referrals[0]->refnum;
223     print qq!<INPUT TYPE="hidden" NAME="refnum" VALUE="$refnum">!;
224   } else {
225     print qq!<BR><BR>${r}Referral <SELECT NAME="refnum" SIZE="1">!;
226     print "<OPTION> " unless $refnum;
227     my($referral);
228     foreach $referral (sort {
229       $a->refnum <=> $b->refnum;
230     } @referrals) {
231       print "<OPTION" . " SELECTED"x($referral->refnum==$refnum),
232       ">", $referral->refnum, ": ", $referral->referral;
233     }
234     print "</SELECT>";
235   }
236 }
237
238
239 # contact info
240
241 ($last,$first,$ss,$company,$address1,$address2,$city,$zip)=(
242   $cust_main->last,
243   $cust_main->first,
244   $cust_main->ss,
245   $cust_main->company,
246   $cust_main->address1,
247   $cust_main->address2,
248   $cust_main->city,
249   $cust_main->zip,
250 );
251
252 print "<BR><BR>Contact information", &itable("#c0c0c0"), <<END;
253 <TR><TH ALIGN="right">${r}Contact name<BR>(last, first)</TH><TD COLSPAN=3><INPUT TYPE="text" NAME="last" VALUE="$last">, <INPUT TYPE="text" NAME="first" VALUE="$first"></TD><TD ALIGN="right">SS#</TD><TD><INPUT TYPE="text" NAME="ss" VALUE="$ss" SIZE=11></TD></TR>
254 <TR><TD ALIGN="right">Company</TD><TD COLSPAN=5><INPUT TYPE="text" NAME="company" VALUE="$company" SIZE=70></TD></TR>
255 <TR><TH ALIGN="right">${r}Address</TH><TD COLSPAN=5><INPUT TYPE="text" NAME="address1" VALUE="$address1" SIZE=70></TD></TR>
256 <TR><TD ALIGN="right">&nbsp;</TD><TD COLSPAN=5><INPUT TYPE="text" NAME="address2" VALUE="$address2" SIZE=70></TD></TR>
257 <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">
258 END
259
260 $cust_main->country('US') unless $cust_main->country; #eww
261 foreach ( qsearch('cust_main_county',{}) ) {
262   print "<OPTION";
263   print " SELECTED" if ( $cust_main->state eq $_->state
264                          && $cust_main->county eq $_->county 
265                          && $cust_main->country eq $_->country
266                        );
267   print ">",$_->state;
268   print " (",$_->county,")" if $_->county;
269   print " / ", $_->country;
270 }
271 print qq!</SELECT></TD><TH>${r}Zip</TH><TD><INPUT TYPE="text" NAME="zip" VALUE="$zip" SIZE=10></TD></TR>!;
272
273 ($daytime,$night,$fax)=(
274   $cust_main->daytime,
275   $cust_main->night,
276   $cust_main->fax,
277 );
278
279 print <<END;
280 <TR><TD ALIGN="right">Day Phone</TD><TD COLSPAN=5><INPUT TYPE="text" NAME="daytime" VALUE="$daytime" SIZE=18></TD></TR>
281 <TR><TD ALIGN="right">Night Phone</TD><TD COLSPAN=5><INPUT TYPE="text" NAME="night" VALUE="$night" SIZE=18></TD></TR>
282 <TR><TD ALIGN="right">Fax</TD><TD COLSPAN=5><INPUT TYPE="text" NAME="fax" VALUE="$fax" SIZE=12></TD></TR>
283 END
284
285 print "</TABLE>$r required fields<BR>";
286
287 # billing info
288
289 sub expselect {
290   my $prefix = shift;
291   my( $m, $y ) = (0, 0);
292   if ( scalar(@_) ) {
293     my $date = shift;
294     if ( $date  =~ /^(\d{4})-(\d{1,2})-\d{1,2}$/ ) { #PostgreSQL date format
295       ( $m, $y ) = ( $2, $1 );
296     } elsif ( $date =~ /^(\d{1,2})-(\d{1,2}-)?(\d{4}$)/ ) {
297       ( $m, $y ) = ( $1, $3 );
298     } else {
299       die "unrecognized expiration date format: $date";
300     }
301   }
302
303   my $return = qq!<SELECT NAME="$prefix!. qq!_month" SIZE="1">!;
304   for ( 1 .. 12 ) {
305     $return .= "<OPTION";
306     $return .= " SELECTED" if $_ == $m;
307     $return .= ">$_";
308   }
309   $return .= qq!</SELECT>/<SELECT NAME="$prefix!. qq!_year" SIZE="1">!;
310   for ( 1999 .. 2037 ) {
311     $return .= "<OPTION";
312     $return .= " SELECTED" if $_ == $y;
313     $return .= ">$_";
314   }
315   $return .= "</SELECT>";
316
317   $return;
318 }
319
320 print "<BR>Billing information", &itable("#c0c0c0"),
321       qq!<TR><TD><INPUT TYPE="checkbox" NAME="tax" VALUE="Y"!;
322 print qq! CHECKED! if $cust_main->tax eq "Y";
323 print qq!>Tax Exempt</TD></TR>!;
324 print qq!<TR><TD><INPUT TYPE="checkbox" NAME="invoicing_list_POST" VALUE="POST"!;
325 @invoicing_list = $cust_main->invoicing_list;
326 print qq! CHECKED!
327   if ! @invoicing_list || grep { $_ eq 'POST' } @invoicing_list;
328 print qq!>Postal mail invoice</TD></TR>!;
329 $invoicing_list = join(', ', grep { $_ ne 'POST' } @invoicing_list );
330 print qq!<TR><TD>Email invoice <INPUT TYPE="text" NAME="invoicing_list" VALUE="$invoicing_list"></TD></TR>!;
331
332 print "<TR><TD>Billing type</TD></TR>",
333       "</TABLE>",
334       &table("#c0c0c0"), "<TR>";
335
336 ($payinfo, $payname)=(
337   $cust_main->payinfo,
338   $cust_main->payname,
339 );
340
341 %payby = (
342   '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="">!,
343   '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">!,
344   'COMP' => qq!Complimentary<BR>${r}Approved by<INPUT TYPE="text" NAME="COMP_payinfo" VALUE=""><BR>${r}Exp !. expselect("COMP"),
345 );
346 %paybychecked = (
347   '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">!,
348   '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">!,
349   'COMP' => qq!Complimentary<BR>${r}Approved by<INPUT TYPE="text" NAME="COMP_payinfo" VALUE="$payinfo"><BR>${r}Exp !. expselect("COMP", $cust_main->paydate),
350 );
351 for (qw(CARD BILL COMP)) {
352   print qq!<TD VALIGN=TOP><INPUT TYPE="radio" NAME="payby" VALUE="$_"!;
353   if ($cust_main->payby eq "$_") {
354     print qq! CHECKED> $paybychecked{$_}</TD>!;
355   } else {
356     print qq!> $payby{$_}</TD>!;
357   }
358 }
359
360 print "</TR></TABLE>$r required fields for each billing type";
361
362 unless ( $custnum ) {
363   # pry the wrong place for this logic.  also pretty expensive
364   #use FS::part_pkg;
365
366   #false laziness, copied from FS::cust_pkg::order
367   my $pkgpart;
368   if ( scalar(@agents) == 1 ) {
369     # $pkgpart->{PKGPART} is true iff $custnum may purchase $pkgpart
370     my($agent)=qsearchs('agent',{'agentnum'=> $agentnum });
371     $pkgpart = $agent->pkgpart_hashref;
372   } else {
373     #can't know (agent not chosen), so, allow all
374     my %typenum;
375     foreach my $agent ( @agents ) {
376       next if $typenum{$agent->typenum}++;
377       #fixed in 5.004_05 #$pkgpart->{$_}++ foreach keys %{ $agent->pkgpart_hashref }
378       foreach ( keys %{ $agent->pkgpart_hashref } ) { $pkgpart->{$_}++; } #5.004_04 workaround
379     }
380   }
381   #eslaf
382
383   my @part_pkg = grep { $_->svcpart('svc_acct') && $pkgpart->{ $_->pkgpart } }
384     qsearch( 'part_pkg', {} );
385
386   if ( @part_pkg ) {
387
388     print "<BR><BR>First package", &itable("#c0c0c0"),
389           qq!<TR><TD COLSPAN=2><SELECT NAME="pkgpart_svcpart">!;
390
391     print qq!<OPTION VALUE="">(none)!;
392
393     foreach my $part_pkg ( @part_pkg ) {
394       print qq!<OPTION VALUE="!,
395 #              $part_pkg->pkgpart. "_". $pkgpart{ $part_pkg->pkgpart }, '"';
396               $part_pkg->pkgpart. "_". $part_pkg->svcpart, '"';
397       print " SELECTED" if $pkgpart && ( $part_pkg->pkgpart == $pkgpart );
398       print ">", $part_pkg->pkg, " - ", $part_pkg->comment;
399     }
400     print "</SELECT></TD></TR>";
401
402     #false laziness: (mostly) copied from edit/svc_acct.cgi
403     #$ulen = $svc_acct->dbdef_table->column('username')->length;
404     $ulen = dbdef->table('svc_acct')->column('username')->length;
405     $ulen2 = $ulen+2;
406     print <<END;
407 <TR><TD ALIGN="right">Username</TD>
408 <TD><INPUT TYPE="text" NAME="username" VALUE="$username" SIZE=$ulen2 MAXLENGTH=$ulen></TD></TR>
409 <TR><TD ALIGN="right">Password</TD>
410 <TD><INPUT TYPE="text" NAME="_password" VALUE="$password" SIZE=10 MAXLENGTH=8>
411 (blank to generate)</TD></TR>
412 END
413     print qq!<TR><TD ALIGN="right">POP</TD><TD><SELECT NAME="popnum" SIZE=1><OPTION> !;
414     my($svc_acct_pop);
415     foreach $svc_acct_pop ( qsearch ('svc_acct_pop',{} ) ) {
416     print qq!<OPTION VALUE="!, $svc_acct_pop->popnum, '"',
417           ( $popnum && $svc_acct_pop->popnum == $popnum ) ? ' SELECTED' : '', ">", 
418           $svc_acct_pop->popnum, ": ", 
419           $svc_acct_pop->city, ", ",
420           $svc_acct_pop->state,
421           " (", $svc_acct_pop->ac, ")/",
422           $svc_acct_pop->exch, "\n"
423         ;
424     }
425     print "</SELECT></TD></TR></TABLE>";
426   }
427 }
428
429 $otaker = $cust_main->otaker;
430 print qq!<INPUT TYPE="hidden" NAME="otaker" VALUE="$otaker">!,
431       qq!<BR><BR><INPUT TYPE="submit" VALUE="!,
432       $custnum ?  "Apply Changes" : "Add Customer", qq!">!,
433       "</FORM></BODY></HTML>",
434 ;
435