customer bill/ship location refactoring, #940
[freeside.git] / httemplate / edit / process / cust_main.cgi
1 % if ( $error ) {
2 %   $cgi->param('error', $error);
3 %
4 <% $cgi->redirect(popurl(2). "cust_main.cgi?". $cgi->query_string ) %>
5 %
6 % } else { 
7 %
8 <% $cgi->redirect(popurl(3). "view/cust_main.cgi?". $new->custnum) %>
9 %
10 % }
11 <%once>
12
13 my $me = '[edit/process/cust_main.cgi]';
14 my $DEBUG = 0;
15
16 </%once>
17 <%init>
18
19 die "access denied"
20   unless $FS::CurrentUser::CurrentUser->access_right('Edit customer');
21
22 my $conf = new FS::Conf;
23
24 my $error = '';
25
26 #unmunge stuff
27
28 $cgi->param('tax','') unless defined $cgi->param('tax');
29
30 $cgi->param('refnum', (split(/:/, ($cgi->param('refnum'))[0] ))[0] );
31
32 my $payby = $cgi->param('payby');
33
34 my %noauto = (
35   'CARD' => 'DCRD',
36   'CHEK' => 'DCHK',
37 );
38 $payby = $noauto{$payby}
39   if ! $cgi->param('payauto') && exists $noauto{$payby};
40
41 $cgi->param('payby', $payby);
42
43 if ( $payby ) {
44   if ( $payby eq 'CHEK' || $payby eq 'DCHK' ) {
45       my $payinfo = $cgi->param('payinfo1'). '@';
46       $payinfo .= $cgi->param('payinfo3').'.' 
47             if $conf->config('echeck-country') eq 'CA';
48       $payinfo .= $cgi->param('payinfo2');
49       $cgi->param('payinfo',$payinfo);
50   }
51   $cgi->param('paydate',
52     $cgi->param( 'exp_month' ). '-'. $cgi->param( 'exp_year' ) );
53 }
54
55 my @invoicing_list = split( /\s*\,\s*/, $cgi->param('invoicing_list') );
56 push @invoicing_list, 'POST' if $cgi->param('invoicing_list_POST');
57 push @invoicing_list, 'FAX' if $cgi->param('invoicing_list_FAX');
58 $cgi->param('invoicing_list', join(',', @invoicing_list) );
59
60 # is this actually used?  if so, we need to clone locations...
61 # but I can't find anything that sets this parameter to a non-empty value
62 $cgi->param('duplicate_of_custnum') =~ /^(\d+)$/;
63 my $duplicate_of = $1;
64
65 my %locations;
66 for my $pre (qw(bill ship)) {
67
68   my %hash;
69   foreach ( FS::cust_main->location_fields ) {
70     $hash{$_} = scalar($cgi->param($pre.'_'.$_));
71   }
72   $hash{'custnum'} = $cgi->param('custnum');
73   warn Dumper \%hash if $DEBUG;
74   # if we can qsearchs it, then it's unchanged, so use that
75   $locations{$pre} = qsearchs('cust_location', \%hash)
76                      || FS::cust_location->new( \%hash );
77
78 }
79
80 if ( ($cgi->param('same') || '') eq 'Y' ) {
81   $locations{ship} = $locations{bill};
82 }
83
84 #create new record object
85 # but explicitly avoid setting ship_ fields
86
87 my $new = new FS::cust_main ( {
88   map { ( $_, scalar($cgi->param($_)) ) } (fields('cust_main')),
89   map { ( "ship_$_", '' ) } (FS::cust_main->location_fields)
90 } );
91
92 $new->invoice_noemail( ($cgi->param('invoice_email') eq 'Y') ? '' : 'Y' );
93
94 if ( $duplicate_of ) {
95   # then negate all changes to the customer; the only change we should
96   # make is to order a package, if requested
97   $new = qsearchs('cust_main', { 'custnum' => $duplicate_of })
98   # this should never happen
99     or die "nonexistent existing customer (custnum $duplicate_of)";
100 }
101
102 for my $pre (qw(bill ship)) {
103   $new->set($pre.'_location', $locations{$pre});
104   $new->set($pre.'_locationnum', $locations{$pre}->locationnum);
105 }
106
107 if ( $cgi->param('no_credit_limit') ) {
108   $new->setfield('credit_limit', '');
109 }
110
111 $new->tagnum( [ $cgi->param('tagnum') ] );
112
113 my %usedatetime = ( 'birthdate'        => 1,
114                     'spouse_birthdate' => 1,
115                   );
116
117 foreach my $dfield (qw( birthdate spouse_birthdate signupdate )) {
118
119   if ( $cgi->param($dfield) && $cgi->param($dfield) =~ /^([ 0-9\-\/]{0,10})$/) {
120
121     my $value = $1;
122     my $parsed = '';
123
124     if ( exists $usedatetime{$dfield} && $usedatetime{$dfield} ) {
125
126       my $format = $conf->config('date_format') || "%m/%d/%Y";
127       my $parser = DateTime::Format::Strptime->new( pattern   => $format,
128                                                     time_zone => 'floating',
129                                                   );
130       my $dt = $parser->parse_datetime($value);
131       if ( $dt ) {
132         $parsed = $dt->epoch;
133       } else {
134         $error ||= "Invalid $dfield: $value";
135       }
136
137     } else {
138
139       $parsed = parse_datetime($value)
140         or $error ||= "Invalid $dfield: $value";
141
142     }
143
144     $new->setfield( $dfield, $parsed );
145     $cgi->param(    $dfield, $parsed );
146
147   }
148
149 }
150
151 $new->setfield('paid', $cgi->param('paid') )
152   if $cgi->param('paid');
153
154 my @exempt_groups = grep /\S/, $conf->config('tax-cust_exempt-groups');
155 my @tax_exempt = grep { $cgi->param("tax_$_") eq 'Y' } @exempt_groups;
156 my %tax_exempt = map { $_ => scalar($cgi->param("tax_$_".'_num')) } @tax_exempt;
157
158 #perhaps this stuff should go to cust_main.pm
159 if ( $new->custnum eq '' or $duplicate_of ) {
160
161   my $cust_pkg = '';
162   my $svc;
163
164   if ( $cgi->param('pkgpart_svcpart') ) {
165
166     my $x = $cgi->param('pkgpart_svcpart');
167     $x =~ /^(\d+)_(\d+)$/ or die "illegal pkgpart_svcpart $x\n";
168     my($pkgpart, $svcpart) = ($1, $2);
169     my $part_pkg = qsearchs('part_pkg', { 'pkgpart' => $pkgpart } );
170     #false laziness: copied from FS::cust_pkg::order (which should become a
171     #FS::cust_main method)
172     my(%part_pkg);
173     # generate %part_pkg
174     # $part_pkg{$pkgpart} is true iff $custnum may purchase $pkgpart
175     my $agent = qsearchs('agent',{'agentnum'=> $new->agentnum });
176
177     if ( $agent ) {
178       # $pkgpart_href->{PKGPART} is true iff $custnum may purchase $pkgpart
179       my $pkgpart_href = $agent->pkgpart_hashref
180         if $agent;
181       #eslaf
182
183       # this should wind up in FS::cust_pkg!
184       $error ||= "Agent ". $new->agentnum. " (type ". $agent->typenum.
185                  ") can't purchase pkgpart ". $pkgpart
186         #unless $part_pkg{ $pkgpart };
187         unless $pkgpart_href->{ $pkgpart }
188             || $agent->agentnum == $part_pkg->agentnum;
189     } else {
190       $error = 'Select agent';
191     }
192
193     $cust_pkg = new FS::cust_pkg ( {
194       #later         'custnum' => $custnum,
195       'pkgpart'     => $pkgpart,
196       'locationnum' => scalar($cgi->param('locationnum')),
197     } );
198
199
200     my $part_svc = qsearchs('part_svc', { 'svcpart' => $svcpart } );
201     my $svcdb = $part_svc->svcdb;
202
203     if ( $svcdb eq 'svc_acct' ) {
204
205       my %svc_acct = (
206                        'svcpart'   => $svcpart,
207                        'username'  => scalar($cgi->param('username')),
208                        '_password' => scalar($cgi->param('_password')),
209                        'popnum'    => scalar($cgi->param('popnum')),
210                      );
211       $svc_acct{'domsvc'} = $cgi->param('domsvc')
212         if $cgi->param('domsvc');
213
214       $svc = new FS::svc_acct \%svc_acct;
215
216       #and just in case you were silly
217       $svc->svcpart($svcpart);
218       $svc->username($cgi->param('username'));
219       $svc->_password($cgi->param('_password'));
220       $svc->popnum($cgi->param('popnum'));
221
222     } elsif ( $svcdb eq 'svc_phone' ) {
223
224       my %svc_phone = (
225         'svcpart' => $svcpart,
226         map { $_ => scalar($cgi->param($_)) }
227             qw( countrycode phonenum sip_password pin phone_name )
228       );
229
230       $svc = new FS::svc_phone \%svc_phone;
231
232     } elsif ( $svcdb eq 'svc_dsl' ) {
233
234       my %svc_dsl = (
235         'svcpart' => $svcpart,
236         ( map { $_ => scalar($cgi->param("ship_$_")) || scalar($cgi->param($_))}
237               qw( first last company )
238         ),
239         ( map { $_ => scalar($cgi->param($_)) }
240               qw( loop_type phonenum password isp_chg isp_prev vendor_qual_id )
241         ),
242         'desired_due_date'  => time, #XXX enter?
243         'vendor_order_type' => 'NEW',
244       );
245       $svc = new FS::svc_dsl \%svc_dsl;
246
247     } else {
248       die "$svcdb not handled on new customer yet";
249     }
250
251   }
252
253
254   use Tie::RefHash;
255   tie my %hash, 'Tie::RefHash';
256   %hash = ( $cust_pkg => [ $svc ] ) if $cust_pkg;
257   if ( $duplicate_of ) {
258     # order the package and service normally
259     $error ||= $new->order_pkgs( \%hash ) if $cust_pkg;
260   }
261   else {
262     # create the customer
263     $error ||= $new->insert( \%hash, \@invoicing_list,
264                            'tax_exemption'=> \%tax_exempt,
265                            'prospectnum'  => scalar($cgi->param('prospectnum')),
266                            );
267
268     my $conf = new FS::Conf;
269     if ( $conf->exists('backend-realtime') && ! $error ) {
270
271       my $berror =    $new->bill
272                    || $new->apply_payments_and_credits
273                    || $new->collect( 'realtime' => 1 );
274       warn "Warning, error billing during backend-realtime: $berror" if $berror;
275
276     }
277   } #if $duplicate_of
278   
279 } else { #create old record object
280
281   my $old = qsearchs( 'cust_main', { 'custnum' => $new->custnum } ); 
282   $error ||= "Old record not found!" unless $old;
283
284   if ( length($old->paycvv) && $new->paycvv =~ /^\s*\*+\s*$/ ) {
285     $new->paycvv($old->paycvv);
286   }
287   if ($new->ss =~ /xx/) {
288     $new->ss($old->ss);
289   }
290   if ($new->stateid =~ /^xxx/) {
291     $new->stateid($old->stateid);
292   }
293   if ( $new->payby =~ /^(CARD|DCRD)$/
294        && (    $new->payinfo =~ /xx/
295             || $new->payinfo =~ /^\s*N\/A\s+\(tokenized\)\s*$/
296           )
297      )
298   {
299     $new->payinfo($old->payinfo);
300
301   } elsif ( $new->payby =~ /^(CHEK|DCHK)$/ && $new->payinfo =~ /xx/ ) {
302     #fix for #3085 "edit of customer's routing code only surprisingly causes
303     #nothing to happen...
304     # this probably won't do the right thing when we don't have the
305     # public key (can't actually get the real $old->payinfo)
306     my($new_account, $new_aba) = split('@', $new->payinfo);
307     my($old_account, $old_aba) = split('@', $old->payinfo);
308     $new_account = $old_account if $new_account =~ /xx/;
309     $new_aba     = $old_aba     if $new_aba     =~ /xx/;
310     $new->payinfo($new_account.'@'.$new_aba);
311   }
312
313   if ( ! $conf->exists('cust_main-edit_signupdate') or
314        ! $new->signupdate ) {
315     $new->signupdate($old->signupdate);
316   }
317
318   warn "$me calling $new -> replace( $old, \ @invoicing_list )" if $DEBUG;
319   local($FS::cust_main::DEBUG) = $DEBUG if $DEBUG;
320   local($FS::Record::DEBUG)    = $DEBUG if $DEBUG;
321
322   local($Data::Dumper::Sortkeys) = 1;
323   warn Dumper({ new => $new, old => $old }) if $DEBUG;
324
325   $error ||= $new->replace( $old, \@invoicing_list,
326                             'tax_exemption' => \%tax_exempt,
327                           );
328
329   warn "$me returned from replace" if $DEBUG;
330   
331 }
332
333 unless ( $error ) { #XXX i guess i should be transactional... all in the insert
334                     # or replace call
335   my @contact_fields = qw( classnum first last title comment emailaddress );
336   foreach my $phone_type ( qsearch({table=>'phone_type', order_by=>'weight'}) ) {
337     push @contact_fields, 'phonetypenum'.$phone_type->phonetypenum;
338   }
339
340   $error = $new->process_o2m( 'table'  => 'contact',
341                               'fields' => \@contact_fields,
342                               'params' => scalar($cgi->Vars),
343                             );
344 }
345
346 </%init>