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