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