fix contact self-service disabled on edit (and some basic contact reports), RT#25533...
[freeside.git] / httemplate / edit / process / cust_main.cgi
1 % if ( $error ) {
2 %   $cgi->param('error', $error);
3 %   my $query = $m->scomp('/elements/create_uri_query', 'secure'=>1);
4 <% $cgi->redirect(popurl(2). "cust_main.cgi?$query" ) %>
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 my $curuser = $FS::CurrentUser::CurrentUser;
20 die "access denied" unless $curuser->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 # yes, fec48523d3cf056da08813f9b2b7d633b27aaf8d for #16582 is where it came in,
63 # for "duplicate address checking for new customers".  afaict still in
64 # edit/cust_main/bottomfixup.html (and working?)
65 $cgi->param('duplicate_of_custnum') =~ /^(\d+)$/;
66 my $duplicate_of = $1;
67
68 # if this is enabled, enforce it
69 if ( $conf->exists('agent-ship_address', $cgi->param('agentnum')) ) {
70   my $agent = FS::agent->by_key($cgi->param('agentnum'));
71   my $agent_cust_main = $agent->agent_cust_main;
72   if ( $agent_cust_main ) {
73     my $agent_location = $agent_cust_main->ship_location;
74     foreach (qw(address1 city state zip country latitude longitude district)) {
75       $cgi->param("ship_$_", $agent_location->get($_));
76     }
77   }
78 }
79
80 my %locations;
81 for my $pre (qw(bill ship)) {
82
83   my %hash;
84   foreach ( FS::cust_main->location_fields ) {
85     $hash{$_} = scalar($cgi->param($pre.'_'.$_));
86   }
87   $hash{'custnum'} = $cgi->param('custnum');
88   warn Dumper \%hash if $DEBUG;
89   $locations{$pre} = FS::cust_location->new(\%hash);
90 }
91
92 if ( ($cgi->param('same') || '') eq 'Y' ) {
93   $locations{ship} = $locations{bill};
94 }
95
96 #create new record object
97 # but explicitly avoid setting ship_ fields
98
99 my $new = new FS::cust_main ( {
100   map { ( $_, scalar($cgi->param($_)) ) } (fields('cust_main')),
101   map { ( "ship_$_", '' ) } (FS::cust_main->location_fields)
102 } );
103
104 $new->invoice_noemail( ($cgi->param('invoice_email') eq 'Y') ? '' : 'Y' );
105
106 if ( $duplicate_of ) {
107   # then negate all changes to the customer; the only change we should
108   # make is to order a package, if requested
109   $new = qsearchs('cust_main', { 'custnum' => $duplicate_of })
110   # this should never happen
111     or die "nonexistent existing customer (custnum $duplicate_of)";
112 }
113
114 for my $pre (qw(bill ship)) {
115   $new->set($pre.'_location', $locations{$pre});
116   $new->set($pre.'_locationnum', $locations{$pre}->locationnum);
117 }
118
119 if ( $cgi->param('no_credit_limit') ) {
120   $new->setfield('credit_limit', '');
121 }
122
123 $new->tagnum( [ $cgi->param('tagnum') ] );
124
125 $error ||= $new->set_national_id_from_cgi( $cgi );
126
127 my %usedatetime = ( 'birthdate'        => 1,
128                     'spouse_birthdate' => 1,
129                     'anniversary_date' => 1,
130                   );
131
132 foreach my $dfield (qw(
133   signupdate birthdate spouse_birthdate anniversary_date
134 )) {
135
136   if ( $cgi->param($dfield) && $cgi->param($dfield) =~ /^([ 0-9\-\/]{0,10})$/) {
137
138     my $value = $1;
139     my $parsed = '';
140
141     if ( exists $usedatetime{$dfield} && $usedatetime{$dfield} ) {
142
143       my $format = $conf->config('date_format') || "%m/%d/%Y";
144       my $parser = DateTime::Format::Strptime->new( pattern   => $format,
145                                                     time_zone => 'floating',
146                                                   );
147       my $dt = $parser->parse_datetime($value);
148       if ( $dt ) {
149         $parsed = $dt->epoch;
150       } else {
151         $error ||= "Invalid $dfield: $value";
152       }
153
154     } else {
155
156       $parsed = parse_datetime($value)
157         or $error ||= "Invalid $dfield: $value";
158
159     }
160
161     $new->setfield( $dfield, $parsed );
162     $cgi->param(    $dfield, $parsed );
163
164   }
165
166 }
167
168 $new->setfield('paid', $cgi->param('paid') )
169   if $cgi->param('paid');
170
171 my %options = ();
172 if ( $curuser->access_right('Edit customer tax exemptions') ) { 
173   my @exempt_groups = grep /\S/, $conf->config('tax-cust_exempt-groups');
174   my @tax_exempt = grep { $cgi->param("tax_$_") eq 'Y' } @exempt_groups;
175   $options{'tax_exemption'} = {
176     map { $_ => scalar($cgi->param("tax_$_".'_num')) } @tax_exempt
177   };
178 }
179
180 #perhaps this stuff should go to cust_main.pm
181 if ( $new->custnum eq '' or $duplicate_of ) {
182
183   my $cust_pkg = '';
184   my $svc;
185
186   if ( $cgi->param('pkgpart_svcpart') ) {
187
188     my $x = $cgi->param('pkgpart_svcpart');
189     $x =~ /^(\d+)_(\d+)$/ or die "illegal pkgpart_svcpart $x\n";
190     my($pkgpart, $svcpart) = ($1, $2);
191     my $part_pkg = qsearchs('part_pkg', { 'pkgpart' => $pkgpart } );
192     #false laziness: copied from FS::cust_pkg::order (which should become a
193     #FS::cust_main method)
194     my(%part_pkg);
195     # generate %part_pkg
196     # $part_pkg{$pkgpart} is true iff $custnum may purchase $pkgpart
197     my $agent = qsearchs('agent',{'agentnum'=> $new->agentnum });
198
199     if ( $agent ) {
200       # $pkgpart_href->{PKGPART} is true iff $custnum may purchase $pkgpart
201       my $pkgpart_href = $agent->pkgpart_hashref
202         if $agent;
203       #eslaf
204
205       # this should wind up in FS::cust_pkg!
206       $error ||= "Agent ". $new->agentnum. " (type ". $agent->typenum.
207                  ") can't purchase pkgpart ". $pkgpart
208         #unless $part_pkg{ $pkgpart };
209         unless $pkgpart_href->{ $pkgpart }
210             || $agent->agentnum == $part_pkg->agentnum;
211     } else {
212       $error = 'Select agent';
213     }
214
215     $cust_pkg = new FS::cust_pkg ( {
216       #later         'custnum' => $custnum,
217       'pkgpart'     => $pkgpart,
218       'locationnum' => scalar($cgi->param('locationnum')),
219       'salesnum'    => scalar($cgi->param('salesnum')),
220     } );
221
222
223     my $part_svc = qsearchs('part_svc', { 'svcpart' => $svcpart } );
224     my $svcdb = $part_svc->svcdb;
225
226     if ( $svcdb eq 'svc_acct' ) {
227
228       my %svc_acct = (
229                        'svcpart'   => $svcpart,
230                        'username'  => scalar($cgi->param('username')),
231                        '_password' => scalar($cgi->param('_password')),
232                        'popnum'    => scalar($cgi->param('popnum')),
233                      );
234       $svc_acct{'domsvc'} = $cgi->param('domsvc')
235         if $cgi->param('domsvc');
236
237       $svc = new FS::svc_acct \%svc_acct;
238
239       #and just in case you were silly
240       $svc->svcpart($svcpart);
241       $svc->username($cgi->param('username'));
242       $svc->_password($cgi->param('_password'));
243       $svc->popnum($cgi->param('popnum'));
244
245     } elsif ( $svcdb eq 'svc_phone' ) {
246
247       my %svc_phone = (
248         'svcpart' => $svcpart,
249         map { $_ => scalar($cgi->param($_)) }
250             qw( countrycode phonenum sip_password pin phone_name )
251       );
252
253       $svc = new FS::svc_phone \%svc_phone;
254
255     } elsif ( $svcdb eq 'svc_dsl' ) {
256
257       my %svc_dsl = (
258         'svcpart' => $svcpart,
259         ( map { $_ => scalar($cgi->param("ship_$_")) || scalar($cgi->param($_))}
260               qw( first last company )
261         ),
262         ( map { $_ => scalar($cgi->param($_)) }
263               qw( loop_type phonenum password isp_chg isp_prev vendor_qual_id )
264         ),
265         'desired_due_date'  => time, #XXX enter?
266         'vendor_order_type' => 'NEW',
267       );
268       $svc = new FS::svc_dsl \%svc_dsl;
269
270     } else {
271       die "$svcdb not handled on new customer yet";
272     }
273
274   }
275
276
277   use Tie::RefHash;
278   tie my %hash, 'Tie::RefHash';
279   %hash = ( $cust_pkg => [ $svc ] ) if $cust_pkg;
280   if ( $duplicate_of ) {
281     # order the package and service normally
282     $error ||= $new->order_pkgs( \%hash ) if $cust_pkg;
283   }
284   else {
285     # create the customer
286     $error ||= $new->insert( \%hash, \@invoicing_list,
287                              %options,
288                              prospectnum => scalar($cgi->param('prospectnum')),
289                            );
290
291     my $conf = new FS::Conf;
292     if ( $conf->exists('backend-realtime') && ! $error ) {
293
294       my $berror =    $new->bill
295                    || $new->apply_payments_and_credits
296                    || $new->collect( 'realtime' => 1 );
297       warn "Warning, error billing during backend-realtime: $berror" if $berror;
298
299     }
300   } #if $duplicate_of
301   
302 } else { #create old record object
303
304   my $old = qsearchs( 'cust_main', { 'custnum' => $new->custnum } ); 
305   $error ||= "Old record not found!" unless $old;
306
307   if ( length($old->paycvv) && $new->paycvv =~ /^\s*\*+\s*$/ ) {
308     $new->paycvv($old->paycvv);
309   }
310   if ($new->ss =~ /xx/) {
311     $new->ss($old->ss);
312   }
313   if ($new->stateid =~ /^xxx/) {
314     $new->stateid($old->stateid);
315   }
316   if ( $new->payby =~ /^(CARD|DCRD)$/
317        && (    $new->payinfo =~ /xx/
318             || $new->payinfo =~ /^\s*N\/A\s+\(tokenized\)\s*$/
319           )
320      )
321   {
322     $new->payinfo($old->payinfo);
323
324   } elsif ( $new->payby =~ /^(CHEK|DCHK)$/ && $new->payinfo =~ /xx/ ) {
325     #fix for #3085 "edit of customer's routing code only surprisingly causes
326     #nothing to happen...
327     # this probably won't do the right thing when we don't have the
328     # public key (can't actually get the real $old->payinfo)
329     my($new_account, $new_aba) = split('@', $new->payinfo);
330     my($old_account, $old_aba) = split('@', $old->payinfo);
331     $new_account = $old_account if $new_account =~ /xx/;
332     $new_aba     = $old_aba     if $new_aba     =~ /xx/;
333     $new->payinfo($new_account.'@'.$new_aba);
334   }
335
336   if ( ! $conf->exists('cust_main-edit_signupdate') or
337        ! $new->signupdate ) {
338     $new->signupdate($old->signupdate);
339   }
340
341   warn "$me calling $new -> replace( $old, \ @invoicing_list )" if $DEBUG;
342   local($FS::cust_main::DEBUG) = $DEBUG if $DEBUG;
343   local($FS::Record::DEBUG)    = $DEBUG if $DEBUG;
344
345   local($Data::Dumper::Sortkeys) = 1;
346   warn Dumper({ new => $new, old => $old }) if $DEBUG;
347
348   $error ||= $new->replace( $old, \@invoicing_list,
349                             %options,
350                           );
351
352   warn "$me returned from replace" if $DEBUG;
353   
354 }
355
356 unless ( $error ) { #XXX i should be transactional... all in the insert
357                     # or replace call
358
359   $error = $new->process_o2m( 'table'  => 'contact',
360                               'fields' => FS::contact->cgi_contact_fields,
361                               'params' => scalar($cgi->Vars),
362                             );
363 }
364
365 </%init>