initial checkin of module files for proper perl installation
[freeside.git] / htdocs / edit / process / cust_main.cgi
1 #!/usr/bin/perl -Tw
2 #
3 # $Id: cust_main.cgi,v 1.10 1999-04-14 07:47:53 ivan Exp $
4 #
5 # Usage: post form to:
6 #        http://server.name/path/cust_main.cgi
7 #
8 # ivan@voicenet.com 96-dec-04
9 #
10 # added referral check
11 # ivan@voicenet.com 97-jun-4
12 #
13 # rewrote for new API
14 # ivan@voicenet.com 97-jul-28
15 #
16 # same as above (again) and clean up some stuff ivan@sisd.com 98-feb-23
17 #
18 # Changes to allow page to work at a relative position in server
19 # Changed 'day' to 'daytime' because Pg6.3 reserves the day word
20 #       bmccane@maxbaud.net     98-apr-3
21 #
22 # $Log: cust_main.cgi,v $
23 # Revision 1.10  1999-04-14 07:47:53  ivan
24 # i18n fixes
25 #
26 # Revision 1.9  1999/04/07 15:22:19  ivan
27 # don't use anchor in redirect
28 #
29 # Revision 1.8  1999/03/25 13:55:10  ivan
30 # one-screen new customer entry (including package and service) for simple
31 # packages with one svc_acct service
32 #
33 # Revision 1.7  1999/02/28 00:03:42  ivan
34 # removed misleading comments
35 #
36 # Revision 1.6  1999/01/25 12:10:00  ivan
37 # yet more mod_perl stuff
38 #
39 # Revision 1.5  1999/01/19 05:13:50  ivan
40 # for mod_perl: no more top-level my() variables; use vars instead
41 # also the last s/create/new/;
42 #
43 # Revision 1.4  1999/01/18 09:22:32  ivan
44 # changes to track email addresses for email invoicing
45 #
46 # Revision 1.3  1998/12/17 08:40:19  ivan
47 # s/CGI::Request/CGI.pm/; etc
48 #
49 # Revision 1.2  1998/11/18 08:57:36  ivan
50 # i18n, s/CGI-modules/CGI.pm/, FS::CGI::idiot instead of inline, FS::CGI::popurl
51 #
52
53 use strict;
54 use vars qw( $cgi $payby @invoicing_list $new $custnum $error );
55 use vars qw( $cust_pkg $cust_svc $svc_acct );
56 use CGI;
57 use CGI::Carp qw(fatalsToBrowser);
58 use FS::UID qw(cgisuidsetup getotaker);
59 use FS::CGI qw( popurl );
60 use FS::Record qw( qsearch qsearchs fields );
61 use FS::cust_main;
62 use FS::type_pkgs;
63 use FS::agent;
64
65 $cgi = new CGI;
66 &cgisuidsetup($cgi);
67
68 #unmunge stuff
69
70 $cgi->param('tax','') unless defined($cgi->param('tax'));
71
72 $cgi->param('refnum', (split(/:/, ($cgi->param('refnum'))[0] ))[0] );
73
74 $cgi->param('state') =~ /^(\w*)( \(([\w ]+)\))? ?\/ ?(\w+)$/
75   or die "Oops, illegal \"state\" param: ". $cgi->param('state');
76 $cgi->param('state', $1);
77 $cgi->param('county', $3 || '');
78 $cgi->param('country', $4);
79
80 if ( $payby = $cgi->param('payby') ) {
81   $cgi->param('payinfo', $cgi->param( $payby. '_payinfo' ) );
82   $cgi->param('paydate',
83   $cgi->param( $payby. '_month' ). '-'. $cgi->param( $payby. '_year' ) );
84   $cgi->param('payname', $cgi->param( $payby. '_payname' ) );
85 }
86
87 $cgi->param('otaker', &getotaker );
88
89 @invoicing_list = split( /\s*\,\s*/, $cgi->param('invoicing_list') );
90 push @invoicing_list, 'POST' if $cgi->param('invoicing_list_POST');
91
92 #create new record object
93
94 $new = new FS::cust_main ( {
95   map {
96     $_, scalar($cgi->param($_))
97 #  } qw(custnum agentnum last first ss company address1 address2 city county
98 #       state zip daytime night fax payby payinfo paydate payname tax
99 #       otaker refnum)
100   } fields('cust_main')
101 } );
102
103 #perhaps the invocing_list magic should move to cust_main.pm?
104 $error = $new->check_invoicing_list( \@invoicing_list );
105
106 #perhaps this stuff should go to cust_main.pm as well
107 $cust_pkg = '';
108 $svc_acct = '';
109 if ( $new->custnum eq '' ) {
110
111   if ( $cgi->param('pkgpart_svcpart') ) {
112     my $x = $cgi->param('pkgpart_svcpart');
113     $x =~ /^(\d+)_(\d+)$/;
114     my($pkgpart, $svcpart) = ($1, $2);
115     #false laziness: copied from FS::cust_pkg::order (which should become a
116     #FS::cust_main method)
117     my(%part_pkg);
118     # generate %part_pkg
119     # $part_pkg{$pkgpart} is true iff $custnum may purchase $pkgpart
120     my $agent = qsearchs('agent',{'agentnum'=> $new->agentnum });
121     my($type_pkgs);
122     foreach $type_pkgs ( qsearch('type_pkgs',{'typenum'=> $agent->typenum }) ) {
123       my($pkgpart)=$type_pkgs->pkgpart;
124       $part_pkg{$pkgpart}++;
125     }
126     #eslaf
127
128     $error ||= "Agent ". $new->agentnum. " (type ". $agent->typenum. ") can't".
129                "purchase pkgpart ". $pkgpart
130       unless $part_pkg{ $pkgpart };
131
132     $cust_pkg = new FS::cust_pkg ( {
133                             #later         'custnum' => $custnum,
134                                      'pkgpart' => $pkgpart,
135                                    } );
136     $error ||= $cust_pkg->check;
137
138     #$cust_svc = new FS::cust_svc ( { 'svcpart' => $svcpart } );
139
140     #$error ||= $cust_svc->check;
141
142     $svc_acct = new FS::svc_acct ( {
143                                      'svcpart'   => $svcpart,
144                                      'username'  => $cgi->param('username'),
145                                      '_password' => $cgi->param('_password'),
146                                      'popnum'    => $cgi->param('popnum'),
147                                    } );
148
149     my $y = $svc_acct->setdefault; # arguably should be in new method
150     $error ||= $y unless ref($y);
151     #and just in case you were silly
152     $svc_acct->svcpart($svcpart);
153     $svc_acct->username($cgi->param('username'));
154     $svc_acct->_password($cgi->param('_password'));
155     $svc_acct->popnum($cgi->param('popnum'));
156
157     $error ||= $svc_acct->check;
158
159   } elsif ( $cgi->param('username') ) { #good thing to catch
160     $error = "Can't assign username without a package!";
161   }
162
163   $error ||= $new->insert;
164   if ( $cust_pkg && ! $error ) {
165     $cust_pkg->custnum( $new->custnum );
166     $error ||= $cust_pkg->insert; 
167     warn "WARNING: $error on pre-checked cust_pkg record!" if $error;
168     $svc_acct->pkgnum( $cust_pkg->pkgnum );
169     $error ||= $svc_acct->insert;
170     warn "WARNING: $error on pre-checked svc_acct record!" if $error;
171   }
172 } else { #create old record object
173   my $old = qsearchs( 'cust_main', { 'custnum' => $new->custnum } ); 
174   $error ||= "Old record not found!" unless $old;
175   $error ||= $new->replace($old);
176 }
177
178 if ( $error ) {
179   $cgi->param('error', $error);
180   print $cgi->redirect(popurl(2). "cust_main.cgi?". $cgi->query_string );
181 } else { 
182   $new->invoicing_list( \@invoicing_list );
183   $custnum = $new->custnum;
184   print $cgi->redirect(popurl(3). "view/cust_main.cgi?$custnum");
185