ed285ca15e909abc68fde47a3f8d9a00134209f0
[freeside.git] / httemplate / edit / process / cust_main.cgi
1 % if ( $error ) {
2 %   $cgi->param('error', $error);
3 %   # workaround for create_uri_query's mangling of unicode characters,
4 %   # false laziness with FS::Record::ut_coord
5 %   use charnames ':full';
6 %   for my $pre (qw(bill ship)) {
7 %     foreach (qw( latitude longitude)) {
8 %       my $coord = $cgi->param($pre.'_'.$_);
9 %       $coord =~ s/\N{DEGREE SIGN}\s*$//;
10 %       $cgi->param($pre.'_'.$_, $coord);
11 %     }
12 %   }
13 %   my $query = $m->scomp('/elements/create_uri_query', 'secure'=>1);
14 <% $cgi->redirect(popurl(2). "cust_main.cgi?$query" ) %>
15 %
16 % } else { 
17 %
18 <% $cgi->redirect( -uri    => popurl(3). "view/cust_main.cgi?". $new->custnum,
19                    -cookie => CGI::Cookie->new(
20                      -name    => 'freeside_status',
21                      -value   => mt($freeside_status),
22                      -expires => '+5m',
23                    ),
24    )
25 %>
26 %
27 % }
28 <%once>
29
30 my $me = '[edit/process/cust_main.cgi]';
31 my $DEBUG = 0;
32
33 </%once>
34 <%init>
35
36 my $curuser = $FS::CurrentUser::CurrentUser;
37 die "access denied" unless $curuser->access_right('Edit customer');
38
39 my $conf = new FS::Conf;
40
41 my $error = '';
42
43 #unmunge stuff
44
45 $cgi->param('tax','') unless defined $cgi->param('tax');
46
47 $cgi->param('refnum', (split(/:/, ($cgi->param('refnum'))[0] ))[0] );
48
49 #my @invoicing_list = split( /\s*\,\s*/, $cgi->param('invoicing_list') );
50 #push @invoicing_list, 'POST' if $cgi->param('invoicing_list_POST');
51 #push @invoicing_list, 'FAX' if $cgi->param('invoicing_list_FAX');
52 #$cgi->param('invoicing_list', join(',', @invoicing_list) );
53
54 my $agentnum = $cgi->param('agentnum');
55
56 # is this actually used?  if so, we need to clone locations...
57 # but I can't find anything that sets this parameter to a non-empty value
58 # yes, fec48523d3cf056da08813f9b2b7d633b27aaf8d for #16582 is where it came in,
59 # for "duplicate address checking for new customers".  afaict still in
60 # edit/cust_main/bottomfixup.html (and working?)
61 $cgi->param('duplicate_of_custnum') =~ /^(\d+)$/;
62 my $duplicate_of = $1;
63
64 # if this is enabled, enforce it
65 if ( $conf->exists('agent-ship_address', $cgi->param('agentnum')) ) {
66   my $agent = FS::agent->by_key($cgi->param('agentnum'));
67   my $agent_cust_main = $agent->agent_cust_main;
68   if ( $agent_cust_main ) {
69     my $agent_location = $agent_cust_main->ship_location;
70     foreach (qw(address1 city state zip country latitude longitude district)) {
71       $cgi->param("ship_$_", $agent_location->get($_));
72     }
73   }
74 }
75
76 my %locations;
77 for my $pre (qw(bill ship)) {
78
79   my %hash;
80   foreach ( FS::cust_main->location_fields ) {
81     $hash{$_} = scalar($cgi->param($pre.'_'.$_));
82   }
83   $hash{'custnum'} = $cgi->param('custnum');
84   warn Dumper \%hash if $DEBUG;
85   $locations{$pre} = FS::cust_location->new(\%hash);
86 }
87
88 if ( ($cgi->param('same') || '') eq 'Y' ) {
89   $locations{ship} = $locations{bill};
90 }
91
92 #create new record object
93 # but explicitly avoid setting ship_ fields
94
95 my $new = new FS::cust_main ( {
96   (map { ( $_, scalar($cgi->param($_)) ) } (fields('cust_main'))),
97   (map { ( "ship_$_", '' ) } (FS::cust_main->location_fields))
98 } );
99
100 warn Dumper( $new ) if $DEBUG > 1;
101
102 if ( $duplicate_of ) {
103   # then negate all changes to the customer; the only change we should
104   # make is to order a package, if requested
105   $new = qsearchs('cust_main', { 'custnum' => $duplicate_of })
106   # this should never happen
107     or die "nonexistent existing customer (custnum $duplicate_of)";
108 }
109
110 for my $pre (qw(bill ship)) {
111   $new->set($pre.'_location', $locations{$pre});
112   $new->set($pre.'_locationnum', $locations{$pre}->locationnum);
113 }
114
115 if ( $cgi->param('no_credit_limit') ) {
116   $new->setfield('credit_limit', '');
117 }
118
119 #$new->tagnum( [ $cgi->param('tagnum') ] );
120 my $params = $cgi->Vars;
121 $new->tagnum( [
122   map { /^tagnum(\d+)/ && $1 }
123     grep { /^tagnum(\d+)/ && $cgi->param($_) } keys %$params
124 ] );
125
126 $error ||= $new->set_national_id_from_cgi( $cgi );
127
128 my %usedatetime = ( 'birthdate'        => 1,
129                     'spouse_birthdate' => 1,
130                     'anniversary_date' => 1,
131                   );
132
133 foreach my $dfield (qw(
134   signupdate birthdate spouse_birthdate anniversary_date
135 )) {
136
137   if ( $cgi->param($dfield) && $cgi->param($dfield) =~ /^([ 0-9\-\/]{0,10})$/) {
138
139     my $value = $1;
140     my $parsed = '';
141
142     if ( exists $usedatetime{$dfield} && $usedatetime{$dfield} ) {
143
144       my $format = $conf->config('date_format') || "%m/%d/%Y";
145       my $parser = DateTime::Format::Strptime->new( pattern   => $format,
146                                                     time_zone => 'floating',
147                                                   );
148       my $dt = $parser->parse_datetime($value);
149       if ( $dt ) {
150         $parsed = $dt->epoch;
151       } else {
152         $error ||= "Invalid $dfield: $value";
153       }
154
155     } else {
156
157       $parsed = parse_datetime($value)
158         or $error ||= "Invalid $dfield: $value";
159
160     }
161
162     $new->setfield( $dfield, $parsed );
163     $cgi->param(    $dfield, $parsed );
164
165   }
166
167 }
168
169 $new->setfield('paid', $cgi->param('paid') )
170   if $cgi->param('paid');
171
172 my %options = ();
173 if ( $curuser->access_right('Edit customer tax exemptions') ) { 
174   my @exempt_groups = grep /\S/, $conf->config('tax-cust_exempt-groups');
175   my @tax_exempt = grep { $cgi->param("tax_$_") eq 'Y' } @exempt_groups;
176   $options{'tax_exemption'} = {
177     map { $_ => scalar($cgi->param("tax_$_".'_num')) } @tax_exempt
178   };
179 }
180
181 $options{'cust_payby_params'} = scalar($cgi->Vars);
182
183 if ( $cgi->param('residential_commercial') eq 'Residential' ) {
184
185   my $email = $cgi->param('invoice_email') || '';
186   if ( length($email) == 0 and $conf->exists('cust_main-require_invoicing_list_email', $agentnum) ) {
187     $error = 'Email address required';
188   }
189
190   #$email =~ s/\s+/\, /g;
191   #$options{'invoicing_list'} = [ split(/\s*,\s*/, $email) ];
192   $options{'invoicing_list'} = [ split(/[,\s]+/, $email) ];
193   #[:,\s\/]+
194   # XXX really should include the phone numbers in here also
195
196 } else {
197
198   # contact UI is enabled
199   $options{'contact_params'} = scalar($cgi->Vars);
200
201   if ($conf->exists('cust_main-require_invoicing_list_email', $agentnum)) {
202     my $has_email = 0;
203     foreach my $prefix (grep /^contactnum\d+$/, $cgi->param) {
204       if ( length($cgi->param($prefix . '_emailaddress'))
205            and $cgi->param($prefix . '_invoice_dest') ) {
206         $has_email = 1;
207         last;
208       }
209     }
210     $error = "At least one contact must receive email invoices"
211       unless $has_email;
212   }
213
214 }
215
216 # kind of a hack, but some tax data vendors require a status and others
217 # don't.
218 my $vendor = $conf->config('tax_data_vendor');
219 if ( $vendor eq 'avalara' or $vendor eq 'suretax' ) {
220   if ( ! $cgi->param('taxstatusnum') ) {
221     $error ||= 'Tax status required';
222   }
223 }
224
225 #perhaps this stuff should go to cust_main.pm
226 my $freeside_status = '';
227 if ( $new->custnum eq '' or $duplicate_of ) {
228
229   $freeside_status = 'Customer added';
230
231   my $cust_pkg = '';
232   my $svc;
233
234   if ( $cgi->param('pkgpart_svcpart') ) {
235
236     my $x = $cgi->param('pkgpart_svcpart');
237     $x =~ /^(\d+)_(\d+)$/ or die "illegal pkgpart_svcpart $x\n";
238     my($pkgpart, $svcpart) = ($1, $2);
239     my $part_pkg = qsearchs('part_pkg', { 'pkgpart' => $pkgpart } );
240     #false laziness: copied from FS::cust_pkg::order (which should become a
241     #FS::cust_main method)
242     my(%part_pkg);
243     # generate %part_pkg
244     # $part_pkg{$pkgpart} is true iff $custnum may purchase $pkgpart
245     my $agent = qsearchs('agent',{'agentnum'=> $new->agentnum });
246
247     if ( $agent ) {
248       # $pkgpart_href->{PKGPART} is true iff $custnum may purchase $pkgpart
249       my $pkgpart_href = $agent->pkgpart_hashref
250         if $agent;
251       #eslaf
252
253       # this should wind up in FS::cust_pkg!
254       $error ||= "Agent ". $new->agentnum. " (type ". $agent->typenum.
255                  ") can't purchase pkgpart ". $pkgpart
256         #unless $part_pkg{ $pkgpart };
257         unless $pkgpart_href->{ $pkgpart }
258             || $agent->agentnum == $part_pkg->agentnum;
259     } else {
260       $error = 'Select agent';
261     }
262
263     $cust_pkg = new FS::cust_pkg ( {
264       #later         'custnum' => $custnum,
265       'pkgpart'     => $pkgpart,
266       'locationnum' => scalar($cgi->param('locationnum')),
267       'salesnum'    => scalar($cgi->param('salesnum')),
268     } );
269
270
271     my $part_svc = qsearchs('part_svc', { 'svcpart' => $svcpart } );
272     my $svcdb = $part_svc->svcdb;
273
274     if ( $svcdb eq 'svc_acct' ) {
275
276       my %svc_acct = (
277                        'svcpart'   => $svcpart,
278                        'username'  => scalar($cgi->param('username')),
279                        '_password' => scalar($cgi->param('_password')),
280                        'popnum'    => scalar($cgi->param('popnum')),
281                      );
282       $svc_acct{'domsvc'} = $cgi->param('domsvc')
283         if $cgi->param('domsvc');
284
285       $svc = new FS::svc_acct \%svc_acct;
286
287       #and just in case you were silly
288       $svc->svcpart($svcpart);
289       $svc->username($cgi->param('username'));
290       $svc->_password($cgi->param('_password'));
291       $svc->popnum($cgi->param('popnum'));
292
293     } elsif ( $svcdb eq 'svc_phone' ) {
294
295       my %svc_phone = (
296         'svcpart' => $svcpart,
297         map { $_ => scalar($cgi->param($_)) }
298             qw( countrycode phonenum sip_password pin phone_name )
299       );
300
301       $svc = new FS::svc_phone \%svc_phone;
302
303     } elsif ( $svcdb eq 'svc_dsl' ) {
304
305       my %svc_dsl = (
306         'svcpart' => $svcpart,
307         ( map { $_ => scalar($cgi->param("ship_$_")) || scalar($cgi->param($_))}
308               qw( first last company )
309         ),
310         ( map { $_ => scalar($cgi->param($_)) }
311               qw( loop_type phonenum password isp_chg isp_prev vendor_qual_id )
312         ),
313         'desired_due_date'  => time, #XXX enter?
314         'vendor_order_type' => 'NEW',
315       );
316       $svc = new FS::svc_dsl \%svc_dsl;
317
318     } else {
319       die "$svcdb not handled on new customer yet";
320     }
321
322   }
323
324
325   use Tie::RefHash;
326   tie my %hash, 'Tie::RefHash';
327   %hash = ( $cust_pkg => [ $svc ] ) if $cust_pkg;
328   if ( $duplicate_of ) {
329     # order the package and service normally
330     $error ||= $new->order_pkgs( \%hash ) if $cust_pkg;
331   }
332   else {
333     # create the customer
334     $error ||= $new->insert( \%hash,
335                              %options,
336                              prospectnum => scalar($cgi->param('prospectnum')),
337                            );
338
339     my $conf = new FS::Conf;
340     if ( $conf->exists('backend-realtime') && ! $error ) {
341
342       my $berror =    $new->bill
343                    || $new->apply_payments_and_credits
344                    || $new->collect( 'realtime' => 1 );
345       warn "Warning, error billing during backend-realtime: $berror" if $berror;
346
347     }
348   } #if $duplicate_of
349   
350 } else { #create old record object
351
352   $freeside_status = 'Customer edited';
353
354   my $old = qsearchs( 'cust_main', { 'custnum' => $new->custnum } ); 
355   $error ||= "Old record not found!" unless $old;
356
357   if ($new->ss =~ /xx/) {
358     $new->ss($old->ss);
359   }
360   if ($new->stateid =~ /^xxx/) {
361     $new->stateid($old->stateid);
362   }
363
364   if ( ! $conf->exists('cust_main-edit_signupdate') or
365        ! $new->signupdate ) {
366     $new->signupdate($old->signupdate);
367   }
368
369   warn "$me calling $new -> replace( $old )" if $DEBUG;
370   local($FS::cust_main::DEBUG) = $DEBUG if $DEBUG;
371   local($FS::Record::DEBUG)    = $DEBUG if $DEBUG;
372
373   local($Data::Dumper::Sortkeys) = 1;
374   warn Dumper({ new => $new, old => $old, options => \%options}) if $DEBUG;
375
376   $error ||= $new->replace( $old, %options );
377
378   warn "$me returned from replace" if $DEBUG;
379   
380 }
381
382 </%init>