track/update census codes by year, #15381
[freeside.git] / FS / FS / cust_main.pm
1 package FS::cust_main;
2
3 require 5.006;
4 use strict;
5              #FS::cust_main:_Marketgear when they're ready to move to 2.1
6 use base qw( FS::cust_main::Packages FS::cust_main::Status
7              FS::cust_main::Billing FS::cust_main::Billing_Realtime
8              FS::cust_main::Billing_Discount
9              FS::otaker_Mixin FS::payinfo_Mixin FS::cust_main_Mixin
10              FS::geocode_Mixin
11              FS::Record
12            );
13 use vars qw( $DEBUG $me $conf
14              @encrypted_fields
15              $import
16              $ignore_expired_card $ignore_illegal_zip $ignore_banned_card
17              $skip_fuzzyfiles
18              @paytypes
19            );
20 use Carp;
21 use Scalar::Util qw( blessed );
22 use Time::Local qw(timelocal);
23 use Storable qw(thaw);
24 use MIME::Base64;
25 use Data::Dumper;
26 use Tie::IxHash;
27 use Digest::MD5 qw(md5_base64);
28 use Date::Format;
29 #use Date::Manip;
30 use File::Temp; #qw( tempfile );
31 use Business::CreditCard 0.28;
32 use Locale::Country;
33 use FS::UID qw( getotaker dbh driver_name );
34 use FS::Record qw( qsearchs qsearch dbdef regexp_sql );
35 use FS::Misc qw( generate_email send_email generate_ps do_print );
36 use FS::Msgcat qw(gettext);
37 use FS::CurrentUser;
38 use FS::TicketSystem;
39 use FS::payby;
40 use FS::cust_pkg;
41 use FS::cust_svc;
42 use FS::cust_bill;
43 use FS::legacy_cust_bill;
44 use FS::cust_pay;
45 use FS::cust_pay_pending;
46 use FS::cust_pay_void;
47 use FS::cust_pay_batch;
48 use FS::cust_credit;
49 use FS::cust_refund;
50 use FS::part_referral;
51 use FS::cust_main_county;
52 use FS::cust_location;
53 use FS::cust_class;
54 use FS::cust_main_exemption;
55 use FS::cust_tax_adjustment;
56 use FS::cust_tax_location;
57 use FS::agent;
58 use FS::cust_main_invoice;
59 use FS::cust_tag;
60 use FS::prepay_credit;
61 use FS::queue;
62 use FS::part_pkg;
63 use FS::part_export;
64 #use FS::cust_event;
65 use FS::type_pkgs;
66 use FS::payment_gateway;
67 use FS::agent_payment_gateway;
68 use FS::banned_pay;
69 use FS::cust_main_note;
70 use FS::cust_attachment;
71 use FS::contact;
72 use FS::Locales;
73
74 # 1 is mostly method/subroutine entry and options
75 # 2 traces progress of some operations
76 # 3 is even more information including possibly sensitive data
77 $DEBUG = 0;
78 $me = '[FS::cust_main]';
79
80 $import = 0;
81 $ignore_expired_card = 0;
82 $ignore_illegal_zip = 0;
83 $ignore_banned_card = 0;
84
85 $skip_fuzzyfiles = 0;
86
87 @encrypted_fields = ('payinfo', 'paycvv');
88 sub nohistory_fields { ('payinfo', 'paycvv'); }
89
90 @paytypes = ('', 'Personal checking', 'Personal savings', 'Business checking', 'Business savings');
91
92 #ask FS::UID to run this stuff for us later
93 #$FS::UID::callback{'FS::cust_main'} = sub { 
94 install_callback FS::UID sub { 
95   $conf = new FS::Conf;
96   #yes, need it for stuff below (prolly should be cached)
97 };
98
99 sub _cache {
100   my $self = shift;
101   my ( $hashref, $cache ) = @_;
102   if ( exists $hashref->{'pkgnum'} ) {
103     #@{ $self->{'_pkgnum'} } = ();
104     my $subcache = $cache->subcache( 'pkgnum', 'cust_pkg', $hashref->{custnum});
105     $self->{'_pkgnum'} = $subcache;
106     #push @{ $self->{'_pkgnum'} },
107     FS::cust_pkg->new_or_cached($hashref, $subcache) if $hashref->{pkgnum};
108   }
109 }
110
111 =head1 NAME
112
113 FS::cust_main - Object methods for cust_main records
114
115 =head1 SYNOPSIS
116
117   use FS::cust_main;
118
119   $record = new FS::cust_main \%hash;
120   $record = new FS::cust_main { 'column' => 'value' };
121
122   $error = $record->insert;
123
124   $error = $new_record->replace($old_record);
125
126   $error = $record->delete;
127
128   $error = $record->check;
129
130   @cust_pkg = $record->all_pkgs;
131
132   @cust_pkg = $record->ncancelled_pkgs;
133
134   @cust_pkg = $record->suspended_pkgs;
135
136   $error = $record->bill;
137   $error = $record->bill %options;
138   $error = $record->bill 'time' => $time;
139
140   $error = $record->collect;
141   $error = $record->collect %options;
142   $error = $record->collect 'invoice_time'   => $time,
143                           ;
144
145 =head1 DESCRIPTION
146
147 An FS::cust_main object represents a customer.  FS::cust_main inherits from 
148 FS::Record.  The following fields are currently supported:
149
150 =over 4
151
152 =item custnum
153
154 Primary key (assigned automatically for new customers)
155
156 =item agentnum
157
158 Agent (see L<FS::agent>)
159
160 =item refnum
161
162 Advertising source (see L<FS::part_referral>)
163
164 =item first
165
166 First name
167
168 =item last
169
170 Last name
171
172 =item ss
173
174 Cocial security number (optional)
175
176 =item company
177
178 (optional)
179
180 =item address1
181
182 =item address2
183
184 (optional)
185
186 =item city
187
188 =item county
189
190 (optional, see L<FS::cust_main_county>)
191
192 =item state
193
194 (see L<FS::cust_main_county>)
195
196 =item zip
197
198 =item country
199
200 (see L<FS::cust_main_county>)
201
202 =item daytime
203
204 phone (optional)
205
206 =item night
207
208 phone (optional)
209
210 =item fax
211
212 phone (optional)
213
214 =item mobile
215
216 phone (optional)
217
218 =item ship_first
219
220 Shipping first name
221
222 =item ship_last
223
224 Shipping last name
225
226 =item ship_company
227
228 (optional)
229
230 =item ship_address1
231
232 =item ship_address2
233
234 (optional)
235
236 =item ship_city
237
238 =item ship_county
239
240 (optional, see L<FS::cust_main_county>)
241
242 =item ship_state
243
244 (see L<FS::cust_main_county>)
245
246 =item ship_zip
247
248 =item ship_country
249
250 (see L<FS::cust_main_county>)
251
252 =item ship_daytime
253
254 phone (optional)
255
256 =item ship_night
257
258 phone (optional)
259
260 =item ship_fax
261
262 phone (optional)
263
264 =item ship_mobile
265
266 phone (optional)
267
268 =item payby
269
270 Payment Type (See L<FS::payinfo_Mixin> for valid payby values)
271
272 =item payinfo
273
274 Payment Information (See L<FS::payinfo_Mixin> for data format)
275
276 =item paymask
277
278 Masked payinfo (See L<FS::payinfo_Mixin> for how this works)
279
280 =item paycvv
281
282 Card Verification Value, "CVV2" (also known as CVC2 or CID), the 3 or 4 digit number on the back (or front, for American Express) of the credit card
283
284 =item paydate
285
286 Expiration date, mm/yyyy, m/yyyy, mm/yy or m/yy
287
288 =item paystart_month
289
290 Start date month (maestro/solo cards only)
291
292 =item paystart_year
293
294 Start date year (maestro/solo cards only)
295
296 =item payissue
297
298 Issue number (maestro/solo cards only)
299
300 =item payname
301
302 Name on card or billing name
303
304 =item payip
305
306 IP address from which payment information was received
307
308 =item tax
309
310 Tax exempt, empty or `Y'
311
312 =item usernum
313
314 Order taker (see L<FS::access_user>)
315
316 =item comments
317
318 Comments (optional)
319
320 =item referral_custnum
321
322 Referring customer number
323
324 =item spool_cdr
325
326 Enable individual CDR spooling, empty or `Y'
327
328 =item dundate
329
330 A suggestion to events (see L<FS::part_bill_event">) to delay until this unix timestamp
331
332 =item squelch_cdr
333
334 Discourage individual CDR printing, empty or `Y'
335
336 =item edit_subject
337
338 Allow self-service editing of ticket subjects, empty or 'Y'
339
340 =item calling_list_exempt
341
342 Do not call, empty or 'Y'
343
344 =back
345
346 =head1 METHODS
347
348 =over 4
349
350 =item new HASHREF
351
352 Creates a new customer.  To add the customer to the database, see L<"insert">.
353
354 Note that this stores the hash reference, not a distinct copy of the hash it
355 points to.  You can ask the object for a copy with the I<hash> method.
356
357 =cut
358
359 sub table { 'cust_main'; }
360
361 =item insert [ CUST_PKG_HASHREF [ , INVOICING_LIST_ARYREF ] [ , OPTION => VALUE ... ] ]
362
363 Adds this customer to the database.  If there is an error, returns the error,
364 otherwise returns false.
365
366 CUST_PKG_HASHREF: If you pass a Tie::RefHash data structure to the insert
367 method containing FS::cust_pkg and FS::svc_I<tablename> objects, all records
368 are inserted atomicly, or the transaction is rolled back.  Passing an empty
369 hash reference is equivalent to not supplying this parameter.  There should be
370 a better explanation of this, but until then, here's an example:
371
372   use Tie::RefHash;
373   tie %hash, 'Tie::RefHash'; #this part is important
374   %hash = (
375     $cust_pkg => [ $svc_acct ],
376     ...
377   );
378   $cust_main->insert( \%hash );
379
380 INVOICING_LIST_ARYREF: If you pass an arrarref to the insert method, it will
381 be set as the invoicing list (see L<"invoicing_list">).  Errors return as
382 expected and rollback the entire transaction; it is not necessary to call 
383 check_invoicing_list first.  The invoicing_list is set after the records in the
384 CUST_PKG_HASHREF above are inserted, so it is now possible to set an
385 invoicing_list destination to the newly-created svc_acct.  Here's an example:
386
387   $cust_main->insert( {}, [ $email, 'POST' ] );
388
389 Currently available options are: I<depend_jobnum>, I<noexport>,
390 I<tax_exemption> and I<prospectnum>.
391
392 If I<depend_jobnum> is set, all provisioning jobs will have a dependancy
393 on the supplied jobnum (they will not run until the specific job completes).
394 This can be used to defer provisioning until some action completes (such
395 as running the customer's credit card successfully).
396
397 The I<noexport> option is deprecated.  If I<noexport> is set true, no
398 provisioning jobs (exports) are scheduled.  (You can schedule them later with
399 the B<reexport> method.)
400
401 The I<tax_exemption> option can be set to an arrayref of tax names.
402 FS::cust_main_exemption records will be created and inserted.
403
404 If I<prospectnum> is set, moves contacts and locations from that prospect.
405
406 =cut
407
408 sub insert {
409   my $self = shift;
410   my $cust_pkgs = @_ ? shift : {};
411   my $invoicing_list = @_ ? shift : '';
412   my %options = @_;
413   warn "$me insert called with options ".
414        join(', ', map { "$_: $options{$_}" } keys %options ). "\n"
415     if $DEBUG;
416
417   local $SIG{HUP} = 'IGNORE';
418   local $SIG{INT} = 'IGNORE';
419   local $SIG{QUIT} = 'IGNORE';
420   local $SIG{TERM} = 'IGNORE';
421   local $SIG{TSTP} = 'IGNORE';
422   local $SIG{PIPE} = 'IGNORE';
423
424   my $oldAutoCommit = $FS::UID::AutoCommit;
425   local $FS::UID::AutoCommit = 0;
426   my $dbh = dbh;
427
428   my $prepay_identifier = '';
429   my( $amount, $seconds, $upbytes, $downbytes, $totalbytes ) = (0, 0, 0, 0, 0);
430   my $payby = '';
431   if ( $self->payby eq 'PREPAY' ) {
432
433     $self->payby('BILL');
434     $prepay_identifier = $self->payinfo;
435     $self->payinfo('');
436
437     warn "  looking up prepaid card $prepay_identifier\n"
438       if $DEBUG > 1;
439
440     my $error = $self->get_prepay( $prepay_identifier,
441                                    'amount_ref'     => \$amount,
442                                    'seconds_ref'    => \$seconds,
443                                    'upbytes_ref'    => \$upbytes,
444                                    'downbytes_ref'  => \$downbytes,
445                                    'totalbytes_ref' => \$totalbytes,
446                                  );
447     if ( $error ) {
448       $dbh->rollback if $oldAutoCommit;
449       #return "error applying prepaid card (transaction rolled back): $error";
450       return $error;
451     }
452
453     $payby = 'PREP' if $amount;
454
455   } elsif ( $self->payby =~ /^(CASH|WEST|MCRD)$/ ) {
456
457     $payby = $1;
458     $self->payby('BILL');
459     $amount = $self->paid;
460
461   }
462
463   warn "  inserting $self\n"
464     if $DEBUG > 1;
465
466   $self->signupdate(time) unless $self->signupdate;
467
468   $self->censusyear($conf->config('census_year')) if $self->censustract;
469
470   $self->auto_agent_custid()
471     if $conf->config('cust_main-auto_agent_custid') && ! $self->agent_custid;
472
473   my $error = $self->SUPER::insert;
474   if ( $error ) {
475     $dbh->rollback if $oldAutoCommit;
476     #return "inserting cust_main record (transaction rolled back): $error";
477     return $error;
478   }
479
480   warn "  setting invoicing list\n"
481     if $DEBUG > 1;
482
483   if ( $invoicing_list ) {
484     $error = $self->check_invoicing_list( $invoicing_list );
485     if ( $error ) {
486       $dbh->rollback if $oldAutoCommit;
487       #return "checking invoicing_list (transaction rolled back): $error";
488       return $error;
489     }
490     $self->invoicing_list( $invoicing_list );
491   }
492
493   warn "  setting customer tags\n"
494     if $DEBUG > 1;
495
496   foreach my $tagnum ( @{ $self->tagnum || [] } ) {
497     my $cust_tag = new FS::cust_tag { 'tagnum'  => $tagnum,
498                                       'custnum' => $self->custnum };
499     my $error = $cust_tag->insert;
500     if ( $error ) {
501       $dbh->rollback if $oldAutoCommit;
502       return $error;
503     }
504   }
505
506   my $prospectnum = delete $options{'prospectnum'};
507   if ( $prospectnum ) {
508
509     warn "  moving contacts and locations from prospect $prospectnum\n"
510       if $DEBUG > 1;
511
512     my $prospect_main =
513       qsearchs('prospect_main', { 'prospectnum' => $prospectnum } );
514     unless ( $prospect_main ) {
515       $dbh->rollback if $oldAutoCommit;
516       return "Unknown prospectnum $prospectnum";
517     }
518     $prospect_main->custnum($self->custnum);
519     $prospect_main->disabled('Y');
520     my $error = $prospect_main->replace;
521     if ( $error ) {
522       $dbh->rollback if $oldAutoCommit;
523       return $error;
524     }
525
526     my @contact = $prospect_main->contact;
527     my @cust_location = $prospect_main->cust_location;
528     my @qual = $prospect_main->qual;
529
530     foreach my $r ( @contact, @cust_location, @qual ) {
531       $r->prospectnum('');
532       $r->custnum($self->custnum);
533       my $error = $r->replace;
534       if ( $error ) {
535         $dbh->rollback if $oldAutoCommit;
536         return $error;
537       }
538     }
539
540   }
541
542   warn "  setting cust_main_exemption\n"
543     if $DEBUG > 1;
544
545   my $tax_exemption = delete $options{'tax_exemption'};
546   if ( $tax_exemption ) {
547     foreach my $taxname ( @$tax_exemption ) {
548       my $cust_main_exemption = new FS::cust_main_exemption {
549         'custnum' => $self->custnum,
550         'taxname' => $taxname,
551       };
552       my $error = $cust_main_exemption->insert;
553       if ( $error ) {
554         $dbh->rollback if $oldAutoCommit;
555         return "inserting cust_main_exemption (transaction rolled back): $error";
556       }
557     }
558   }
559
560   if ( $self->can('start_copy_skel') ) {
561     my $error = $self->start_copy_skel;
562     if ( $error ) {
563       $dbh->rollback if $oldAutoCommit;
564       return $error;
565     }
566   }
567
568   warn "  ordering packages\n"
569     if $DEBUG > 1;
570
571   $error = $self->order_pkgs( $cust_pkgs,
572                               %options,
573                               'seconds_ref'    => \$seconds,
574                               'upbytes_ref'    => \$upbytes,
575                               'downbytes_ref'  => \$downbytes,
576                               'totalbytes_ref' => \$totalbytes,
577                             );
578   if ( $error ) {
579     $dbh->rollback if $oldAutoCommit;
580     return $error;
581   }
582
583   if ( $seconds ) {
584     $dbh->rollback if $oldAutoCommit;
585     return "No svc_acct record to apply pre-paid time";
586   }
587   if ( $upbytes || $downbytes || $totalbytes ) {
588     $dbh->rollback if $oldAutoCommit;
589     return "No svc_acct record to apply pre-paid data";
590   }
591
592   if ( $amount ) {
593     warn "  inserting initial $payby payment of $amount\n"
594       if $DEBUG > 1;
595     $error = $self->insert_cust_pay($payby, $amount, $prepay_identifier);
596     if ( $error ) {
597       $dbh->rollback if $oldAutoCommit;
598       return "inserting payment (transaction rolled back): $error";
599     }
600   }
601
602   unless ( $import || $skip_fuzzyfiles ) {
603     warn "  queueing fuzzyfiles update\n"
604       if $DEBUG > 1;
605     $error = $self->queue_fuzzyfiles_update;
606     if ( $error ) {
607       $dbh->rollback if $oldAutoCommit;
608       return "updating fuzzy search cache: $error";
609     }
610   }
611
612   # cust_main exports!
613   warn "  exporting\n" if $DEBUG > 1;
614
615   my $export_args = $options{'export_args'} || [];
616
617   my @part_export =
618     map qsearch( 'part_export', {exportnum=>$_} ),
619       $conf->config('cust_main-exports'); #, $agentnum
620
621   foreach my $part_export ( @part_export ) {
622     my $error = $part_export->export_insert($self, @$export_args);
623     if ( $error ) {
624       $dbh->rollback if $oldAutoCommit;
625       return "exporting to ". $part_export->exporttype.
626              " (transaction rolled back): $error";
627     }
628   }
629
630   #foreach my $depend_jobnum ( @$depend_jobnums ) {
631   #    warn "[$me] inserting dependancies on supplied job $depend_jobnum\n"
632   #      if $DEBUG;
633   #    foreach my $jobnum ( @jobnums ) {
634   #      my $queue = qsearchs('queue', { 'jobnum' => $jobnum } );
635   #      warn "[$me] inserting dependancy for job $jobnum on $depend_jobnum\n"
636   #        if $DEBUG;
637   #      my $error = $queue->depend_insert($depend_jobnum);
638   #      if ( $error ) {
639   #        $dbh->rollback if $oldAutoCommit;
640   #        return "error queuing job dependancy: $error";
641   #      }
642   #    }
643   #  }
644   #
645   #}
646   #
647   #if ( exists $options{'jobnums'} ) {
648   #  push @{ $options{'jobnums'} }, @jobnums;
649   #}
650
651   warn "  insert complete; committing transaction\n"
652     if $DEBUG > 1;
653
654   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
655   '';
656
657 }
658
659 use File::CounterFile;
660 sub auto_agent_custid {
661   my $self = shift;
662
663   my $format = $conf->config('cust_main-auto_agent_custid');
664   my $agent_custid;
665   if ( $format eq '1YMMXXXXXXXX' ) {
666
667     my $counter = new File::CounterFile 'cust_main.agent_custid';
668     $counter->lock;
669
670     my $ym = 100000000000 + time2str('%y%m00000000', time);
671     if ( $ym > $counter->value ) {
672       $counter->{'value'} = $agent_custid = $ym;
673       $counter->{'updated'} = 1;
674     } else {
675       $agent_custid = $counter->inc;
676     }
677
678     $counter->unlock;
679
680   } else {
681     die "Unknown cust_main-auto_agent_custid format: $format";
682   }
683
684   $self->agent_custid($agent_custid);
685
686 }
687
688 =item PACKAGE METHODS
689
690 Documentation on customer package methods has been moved to
691 L<FS::cust_main::Packages>.
692
693 =item recharge_prepay IDENTIFIER | PREPAY_CREDIT_OBJ [ , AMOUNTREF, SECONDSREF, UPBYTEREF, DOWNBYTEREF ]
694
695 Recharges this (existing) customer with the specified prepaid card (see
696 L<FS::prepay_credit>), specified either by I<identifier> or as an
697 FS::prepay_credit object.  If there is an error, returns the error, otherwise
698 returns false.
699
700 Optionally, five scalar references can be passed as well.  They will have their
701 values filled in with the amount, number of seconds, and number of upload,
702 download, and total bytes applied by this prepaid card.
703
704 =cut
705
706 #the ref bullshit here should be refactored like get_prepay.  MyAccount.pm is
707 #the only place that uses these args
708 sub recharge_prepay { 
709   my( $self, $prepay_credit, $amountref, $secondsref, 
710       $upbytesref, $downbytesref, $totalbytesref ) = @_;
711
712   local $SIG{HUP} = 'IGNORE';
713   local $SIG{INT} = 'IGNORE';
714   local $SIG{QUIT} = 'IGNORE';
715   local $SIG{TERM} = 'IGNORE';
716   local $SIG{TSTP} = 'IGNORE';
717   local $SIG{PIPE} = 'IGNORE';
718
719   my $oldAutoCommit = $FS::UID::AutoCommit;
720   local $FS::UID::AutoCommit = 0;
721   my $dbh = dbh;
722
723   my( $amount, $seconds, $upbytes, $downbytes, $totalbytes) = ( 0, 0, 0, 0, 0 );
724
725   my $error = $self->get_prepay( $prepay_credit,
726                                  'amount_ref'     => \$amount,
727                                  'seconds_ref'    => \$seconds,
728                                  'upbytes_ref'    => \$upbytes,
729                                  'downbytes_ref'  => \$downbytes,
730                                  'totalbytes_ref' => \$totalbytes,
731                                )
732            || $self->increment_seconds($seconds)
733            || $self->increment_upbytes($upbytes)
734            || $self->increment_downbytes($downbytes)
735            || $self->increment_totalbytes($totalbytes)
736            || $self->insert_cust_pay_prepay( $amount,
737                                              ref($prepay_credit)
738                                                ? $prepay_credit->identifier
739                                                : $prepay_credit
740                                            );
741
742   if ( $error ) {
743     $dbh->rollback if $oldAutoCommit;
744     return $error;
745   }
746
747   if ( defined($amountref)  ) { $$amountref  = $amount;  }
748   if ( defined($secondsref) ) { $$secondsref = $seconds; }
749   if ( defined($upbytesref) ) { $$upbytesref = $upbytes; }
750   if ( defined($downbytesref) ) { $$downbytesref = $downbytes; }
751   if ( defined($totalbytesref) ) { $$totalbytesref = $totalbytes; }
752
753   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
754   '';
755
756 }
757
758 =item get_prepay IDENTIFIER | PREPAY_CREDIT_OBJ [ , OPTION => VALUE ... ]
759
760 Looks up and deletes a prepaid card (see L<FS::prepay_credit>),
761 specified either by I<identifier> or as an FS::prepay_credit object.
762
763 Available options are: I<amount_ref>, I<seconds_ref>, I<upbytes_ref>, I<downbytes_ref>, and I<totalbytes_ref>.  The scalars (provided by references) will be
764 incremented by the values of the prepaid card.
765
766 If the prepaid card specifies an I<agentnum> (see L<FS::agent>), it is used to
767 check or set this customer's I<agentnum>.
768
769 If there is an error, returns the error, otherwise returns false.
770
771 =cut
772
773
774 sub get_prepay {
775   my( $self, $prepay_credit, %opt ) = @_;
776
777   local $SIG{HUP} = 'IGNORE';
778   local $SIG{INT} = 'IGNORE';
779   local $SIG{QUIT} = 'IGNORE';
780   local $SIG{TERM} = 'IGNORE';
781   local $SIG{TSTP} = 'IGNORE';
782   local $SIG{PIPE} = 'IGNORE';
783
784   my $oldAutoCommit = $FS::UID::AutoCommit;
785   local $FS::UID::AutoCommit = 0;
786   my $dbh = dbh;
787
788   unless ( ref($prepay_credit) ) {
789
790     my $identifier = $prepay_credit;
791
792     $prepay_credit = qsearchs(
793       'prepay_credit',
794       { 'identifier' => $identifier },
795       '',
796       'FOR UPDATE'
797     );
798
799     unless ( $prepay_credit ) {
800       $dbh->rollback if $oldAutoCommit;
801       return "Invalid prepaid card: ". $identifier;
802     }
803
804   }
805
806   if ( $prepay_credit->agentnum ) {
807     if ( $self->agentnum && $self->agentnum != $prepay_credit->agentnum ) {
808       $dbh->rollback if $oldAutoCommit;
809       return "prepaid card not valid for agent ". $self->agentnum;
810     }
811     $self->agentnum($prepay_credit->agentnum);
812   }
813
814   my $error = $prepay_credit->delete;
815   if ( $error ) {
816     $dbh->rollback if $oldAutoCommit;
817     return "removing prepay_credit (transaction rolled back): $error";
818   }
819
820   ${ $opt{$_.'_ref'} } += $prepay_credit->$_()
821     for grep $opt{$_.'_ref'}, qw( amount seconds upbytes downbytes totalbytes );
822
823   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
824   '';
825
826 }
827
828 =item increment_upbytes SECONDS
829
830 Updates this customer's single or primary account (see L<FS::svc_acct>) by
831 the specified number of upbytes.  If there is an error, returns the error,
832 otherwise returns false.
833
834 =cut
835
836 sub increment_upbytes {
837   _increment_column( shift, 'upbytes', @_);
838 }
839
840 =item increment_downbytes SECONDS
841
842 Updates this customer's single or primary account (see L<FS::svc_acct>) by
843 the specified number of downbytes.  If there is an error, returns the error,
844 otherwise returns false.
845
846 =cut
847
848 sub increment_downbytes {
849   _increment_column( shift, 'downbytes', @_);
850 }
851
852 =item increment_totalbytes SECONDS
853
854 Updates this customer's single or primary account (see L<FS::svc_acct>) by
855 the specified number of totalbytes.  If there is an error, returns the error,
856 otherwise returns false.
857
858 =cut
859
860 sub increment_totalbytes {
861   _increment_column( shift, 'totalbytes', @_);
862 }
863
864 =item increment_seconds SECONDS
865
866 Updates this customer's single or primary account (see L<FS::svc_acct>) by
867 the specified number of seconds.  If there is an error, returns the error,
868 otherwise returns false.
869
870 =cut
871
872 sub increment_seconds {
873   _increment_column( shift, 'seconds', @_);
874 }
875
876 =item _increment_column AMOUNT
877
878 Updates this customer's single or primary account (see L<FS::svc_acct>) by
879 the specified number of seconds or bytes.  If there is an error, returns
880 the error, otherwise returns false.
881
882 =cut
883
884 sub _increment_column {
885   my( $self, $column, $amount ) = @_;
886   warn "$me increment_column called: $column, $amount\n"
887     if $DEBUG;
888
889   return '' unless $amount;
890
891   my @cust_pkg = grep { $_->part_pkg->svcpart('svc_acct') }
892                       $self->ncancelled_pkgs;
893
894   if ( ! @cust_pkg ) {
895     return 'No packages with primary or single services found'.
896            ' to apply pre-paid time';
897   } elsif ( scalar(@cust_pkg) > 1 ) {
898     #maybe have a way to specify the package/account?
899     return 'Multiple packages found to apply pre-paid time';
900   }
901
902   my $cust_pkg = $cust_pkg[0];
903   warn "  found package pkgnum ". $cust_pkg->pkgnum. "\n"
904     if $DEBUG > 1;
905
906   my @cust_svc =
907     $cust_pkg->cust_svc( $cust_pkg->part_pkg->svcpart('svc_acct') );
908
909   if ( ! @cust_svc ) {
910     return 'No account found to apply pre-paid time';
911   } elsif ( scalar(@cust_svc) > 1 ) {
912     return 'Multiple accounts found to apply pre-paid time';
913   }
914   
915   my $svc_acct = $cust_svc[0]->svc_x;
916   warn "  found service svcnum ". $svc_acct->pkgnum.
917        ' ('. $svc_acct->email. ")\n"
918     if $DEBUG > 1;
919
920   $column = "increment_$column";
921   $svc_acct->$column($amount);
922
923 }
924
925 =item insert_cust_pay_prepay AMOUNT [ PAYINFO ]
926
927 Inserts a prepayment in the specified amount for this customer.  An optional
928 second argument can specify the prepayment identifier for tracking purposes.
929 If there is an error, returns the error, otherwise returns false.
930
931 =cut
932
933 sub insert_cust_pay_prepay {
934   shift->insert_cust_pay('PREP', @_);
935 }
936
937 =item insert_cust_pay_cash AMOUNT [ PAYINFO ]
938
939 Inserts a cash payment in the specified amount for this customer.  An optional
940 second argument can specify the payment identifier for tracking purposes.
941 If there is an error, returns the error, otherwise returns false.
942
943 =cut
944
945 sub insert_cust_pay_cash {
946   shift->insert_cust_pay('CASH', @_);
947 }
948
949 =item insert_cust_pay_west AMOUNT [ PAYINFO ]
950
951 Inserts a Western Union payment in the specified amount for this customer.  An
952 optional second argument can specify the prepayment identifier for tracking
953 purposes.  If there is an error, returns the error, otherwise returns false.
954
955 =cut
956
957 sub insert_cust_pay_west {
958   shift->insert_cust_pay('WEST', @_);
959 }
960
961 sub insert_cust_pay {
962   my( $self, $payby, $amount ) = splice(@_, 0, 3);
963   my $payinfo = scalar(@_) ? shift : '';
964
965   my $cust_pay = new FS::cust_pay {
966     'custnum' => $self->custnum,
967     'paid'    => sprintf('%.2f', $amount),
968     #'_date'   => #date the prepaid card was purchased???
969     'payby'   => $payby,
970     'payinfo' => $payinfo,
971   };
972   $cust_pay->insert;
973
974 }
975
976 =item reexport
977
978 This method is deprecated.  See the I<depend_jobnum> option to the insert and
979 order_pkgs methods for a better way to defer provisioning.
980
981 Re-schedules all exports by calling the B<reexport> method of all associated
982 packages (see L<FS::cust_pkg>).  If there is an error, returns the error;
983 otherwise returns false.
984
985 =cut
986
987 sub reexport {
988   my $self = shift;
989
990   carp "WARNING: FS::cust_main::reexport is deprectated; ".
991        "use the depend_jobnum option to insert or order_pkgs to delay export";
992
993   local $SIG{HUP} = 'IGNORE';
994   local $SIG{INT} = 'IGNORE';
995   local $SIG{QUIT} = 'IGNORE';
996   local $SIG{TERM} = 'IGNORE';
997   local $SIG{TSTP} = 'IGNORE';
998   local $SIG{PIPE} = 'IGNORE';
999
1000   my $oldAutoCommit = $FS::UID::AutoCommit;
1001   local $FS::UID::AutoCommit = 0;
1002   my $dbh = dbh;
1003
1004   foreach my $cust_pkg ( $self->ncancelled_pkgs ) {
1005     my $error = $cust_pkg->reexport;
1006     if ( $error ) {
1007       $dbh->rollback if $oldAutoCommit;
1008       return $error;
1009     }
1010   }
1011
1012   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1013   '';
1014
1015 }
1016
1017 =item delete [ OPTION => VALUE ... ]
1018
1019 This deletes the customer.  If there is an error, returns the error, otherwise
1020 returns false.
1021
1022 This will completely remove all traces of the customer record.  This is not
1023 what you want when a customer cancels service; for that, cancel all of the
1024 customer's packages (see L</cancel>).
1025
1026 If the customer has any uncancelled packages, you need to pass a new (valid)
1027 customer number for those packages to be transferred to, as the "new_customer"
1028 option.  Cancelled packages will be deleted.  Did I mention that this is NOT
1029 what you want when a customer cancels service and that you really should be
1030 looking at L<FS::cust_pkg/cancel>?  
1031
1032 You can't delete a customer with invoices (see L<FS::cust_bill>),
1033 statements (see L<FS::cust_statement>), credits (see L<FS::cust_credit>),
1034 payments (see L<FS::cust_pay>) or refunds (see L<FS::cust_refund>), unless you
1035 set the "delete_financials" option to a true value.
1036
1037 =cut
1038
1039 sub delete {
1040   my( $self, %opt ) = @_;
1041
1042   local $SIG{HUP} = 'IGNORE';
1043   local $SIG{INT} = 'IGNORE';
1044   local $SIG{QUIT} = 'IGNORE';
1045   local $SIG{TERM} = 'IGNORE';
1046   local $SIG{TSTP} = 'IGNORE';
1047   local $SIG{PIPE} = 'IGNORE';
1048
1049   my $oldAutoCommit = $FS::UID::AutoCommit;
1050   local $FS::UID::AutoCommit = 0;
1051   my $dbh = dbh;
1052
1053   if ( qsearch('agent', { 'agent_custnum' => $self->custnum } ) ) {
1054      $dbh->rollback if $oldAutoCommit;
1055      return "Can't delete a master agent customer";
1056   }
1057
1058   #use FS::access_user
1059   if ( qsearch('access_user', { 'user_custnum' => $self->custnum } ) ) {
1060      $dbh->rollback if $oldAutoCommit;
1061      return "Can't delete a master employee customer";
1062   }
1063
1064   tie my %financial_tables, 'Tie::IxHash',
1065     'cust_bill'      => 'invoices',
1066     'cust_statement' => 'statements',
1067     'cust_credit'    => 'credits',
1068     'cust_pay'       => 'payments',
1069     'cust_refund'    => 'refunds',
1070   ;
1071    
1072   foreach my $table ( keys %financial_tables ) {
1073
1074     my @records = $self->$table();
1075
1076     if ( @records && ! $opt{'delete_financials'} ) {
1077       $dbh->rollback if $oldAutoCommit;
1078       return "Can't delete a customer with ". $financial_tables{$table};
1079     }
1080
1081     foreach my $record ( @records ) {
1082       my $error = $record->delete;
1083       if ( $error ) {
1084         $dbh->rollback if $oldAutoCommit;
1085         return "Error deleting ". $financial_tables{$table}. ": $error\n";
1086       }
1087     }
1088
1089   }
1090
1091   my @cust_pkg = $self->ncancelled_pkgs;
1092   if ( @cust_pkg ) {
1093     my $new_custnum = $opt{'new_custnum'};
1094     unless ( qsearchs( 'cust_main', { 'custnum' => $new_custnum } ) ) {
1095       $dbh->rollback if $oldAutoCommit;
1096       return "Invalid new customer number: $new_custnum";
1097     }
1098     foreach my $cust_pkg ( @cust_pkg ) {
1099       my %hash = $cust_pkg->hash;
1100       $hash{'custnum'} = $new_custnum;
1101       my $new_cust_pkg = new FS::cust_pkg ( \%hash );
1102       my $error = $new_cust_pkg->replace($cust_pkg,
1103                                          options => { $cust_pkg->options },
1104                                         );
1105       if ( $error ) {
1106         $dbh->rollback if $oldAutoCommit;
1107         return $error;
1108       }
1109     }
1110   }
1111   my @cancelled_cust_pkg = $self->all_pkgs;
1112   foreach my $cust_pkg ( @cancelled_cust_pkg ) {
1113     my $error = $cust_pkg->delete;
1114     if ( $error ) {
1115       $dbh->rollback if $oldAutoCommit;
1116       return $error;
1117     }
1118   }
1119
1120   #cust_tax_adjustment in financials?
1121   #cust_pay_pending?  ouch
1122   #cust_recon?
1123   foreach my $table (qw(
1124     cust_main_invoice cust_main_exemption cust_tag cust_attachment contact
1125     cust_location cust_main_note cust_tax_adjustment
1126     cust_pay_void cust_pay_batch queue cust_tax_exempt
1127   )) {
1128     foreach my $record ( qsearch( $table, { 'custnum' => $self->custnum } ) ) {
1129       my $error = $record->delete;
1130       if ( $error ) {
1131         $dbh->rollback if $oldAutoCommit;
1132         return $error;
1133       }
1134     }
1135   }
1136
1137   my $sth = $dbh->prepare(
1138     'UPDATE cust_main SET referral_custnum = NULL WHERE referral_custnum = ?'
1139   ) or do {
1140     my $errstr = $dbh->errstr;
1141     $dbh->rollback if $oldAutoCommit;
1142     return $errstr;
1143   };
1144   $sth->execute($self->custnum) or do {
1145     my $errstr = $sth->errstr;
1146     $dbh->rollback if $oldAutoCommit;
1147     return $errstr;
1148   };
1149
1150   #tickets
1151
1152   my $ticket_dbh = '';
1153   if ($conf->config('ticket_system') eq 'RT_Internal') {
1154     $ticket_dbh = $dbh;
1155   } elsif ($conf->config('ticket_system') eq 'RT_External') {
1156     my ($datasrc, $user, $pass) = $conf->config('ticket_system-rt_external_datasrc');
1157     $ticket_dbh = DBI->connect($datasrc, $user, $pass, { 'ChopBlanks' => 1 });
1158       #or die "RT_External DBI->connect error: $DBI::errstr\n";
1159   }
1160
1161   if ( $ticket_dbh ) {
1162
1163     my $ticket_sth = $ticket_dbh->prepare(
1164       'DELETE FROM Links WHERE Target = ?'
1165     ) or do {
1166       my $errstr = $ticket_dbh->errstr;
1167       $dbh->rollback if $oldAutoCommit;
1168       return $errstr;
1169     };
1170     $ticket_sth->execute('freeside://freeside/cust_main/'.$self->custnum)
1171       or do {
1172         my $errstr = $ticket_sth->errstr;
1173         $dbh->rollback if $oldAutoCommit;
1174         return $errstr;
1175       };
1176
1177     #check and see if the customer is the only link on the ticket, and
1178     #if so, set the ticket to deleted status in RT?
1179     #maybe someday, for now this will at least fix tickets not displaying
1180
1181   }
1182
1183   #delete the customer record
1184
1185   my $error = $self->SUPER::delete;
1186   if ( $error ) {
1187     $dbh->rollback if $oldAutoCommit;
1188     return $error;
1189   }
1190
1191   # cust_main exports!
1192
1193   #my $export_args = $options{'export_args'} || [];
1194
1195   my @part_export =
1196     map qsearch( 'part_export', {exportnum=>$_} ),
1197       $conf->config('cust_main-exports'); #, $agentnum
1198
1199   foreach my $part_export ( @part_export ) {
1200     my $error = $part_export->export_delete( $self ); #, @$export_args);
1201     if ( $error ) {
1202       $dbh->rollback if $oldAutoCommit;
1203       return "exporting to ". $part_export->exporttype.
1204              " (transaction rolled back): $error";
1205     }
1206   }
1207
1208   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1209   '';
1210
1211 }
1212
1213 =item merge NEW_CUSTNUM [ , OPTION => VALUE ... ]
1214
1215 This merges this customer into the provided new custnum, and then deletes the
1216 customer.  If there is an error, returns the error, otherwise returns false.
1217
1218 The source customer's name, company name, phone numbers, agent,
1219 referring customer, customer class, advertising source, order taker, and
1220 billing information (except balance) are discarded.
1221
1222 All packages are moved to the target customer.  Packages with package locations
1223 are preserved.  Packages without package locations are moved to a new package
1224 location with the source customer's service/shipping address.
1225
1226 All invoices, statements, payments, credits and refunds are moved to the target
1227 customer.  The source customer's balance is added to the target customer.
1228
1229 All notes, attachments, tickets and customer tags are moved to the target
1230 customer.
1231
1232 Change history is not currently moved.
1233
1234 =cut
1235
1236 sub merge {
1237   my( $self, $new_custnum, %opt ) = @_;
1238
1239   return "Can't merge a customer into self" if $self->custnum == $new_custnum;
1240
1241   unless ( qsearchs( 'cust_main', { 'custnum' => $new_custnum } ) ) {
1242     return "Invalid new customer number: $new_custnum";
1243   }
1244
1245   local $SIG{HUP} = 'IGNORE';
1246   local $SIG{INT} = 'IGNORE';
1247   local $SIG{QUIT} = 'IGNORE';
1248   local $SIG{TERM} = 'IGNORE';
1249   local $SIG{TSTP} = 'IGNORE';
1250   local $SIG{PIPE} = 'IGNORE';
1251
1252   my $oldAutoCommit = $FS::UID::AutoCommit;
1253   local $FS::UID::AutoCommit = 0;
1254   my $dbh = dbh;
1255
1256   if ( qsearch('agent', { 'agent_custnum' => $self->custnum } ) ) {
1257      $dbh->rollback if $oldAutoCommit;
1258      return "Can't merge a master agent customer";
1259   }
1260
1261   #use FS::access_user
1262   if ( qsearch('access_user', { 'user_custnum' => $self->custnum } ) ) {
1263      $dbh->rollback if $oldAutoCommit;
1264      return "Can't merge a master employee customer";
1265   }
1266
1267   if ( qsearch('cust_pay_pending', { 'custnum' => $self->custnum,
1268                                      'status'  => { op=>'!=', value=>'done' },
1269                                    }
1270               )
1271   ) {
1272      $dbh->rollback if $oldAutoCommit;
1273      return "Can't merge a customer with pending payments";
1274   }
1275
1276   tie my %financial_tables, 'Tie::IxHash',
1277     'cust_bill'      => 'invoices',
1278     'cust_statement' => 'statements',
1279     'cust_credit'    => 'credits',
1280     'cust_pay'       => 'payments',
1281     'cust_pay_void'  => 'voided payments',
1282     'cust_refund'    => 'refunds',
1283   ;
1284    
1285   foreach my $table ( keys %financial_tables ) {
1286
1287     my @records = $self->$table();
1288
1289     foreach my $record ( @records ) {
1290       $record->custnum($new_custnum);
1291       my $error = $record->replace;
1292       if ( $error ) {
1293         $dbh->rollback if $oldAutoCommit;
1294         return "Error merging ". $financial_tables{$table}. ": $error\n";
1295       }
1296     }
1297
1298   }
1299
1300   my $name = $self->ship_name;
1301
1302   my $locationnum = '';
1303   foreach my $cust_pkg ( $self->all_pkgs ) {
1304     $cust_pkg->custnum($new_custnum);
1305
1306     unless ( $cust_pkg->locationnum ) {
1307       unless ( $locationnum ) {
1308         my $cust_location = new FS::cust_location {
1309           $self->location_hash,
1310           'custnum' => $new_custnum,
1311         };
1312         my $error = $cust_location->insert;
1313         if ( $error ) {
1314           $dbh->rollback if $oldAutoCommit;
1315           return $error;
1316         }
1317         $locationnum = $cust_location->locationnum;
1318       }
1319       $cust_pkg->locationnum($locationnum);
1320     }
1321
1322     my $error = $cust_pkg->replace;
1323     if ( $error ) {
1324       $dbh->rollback if $oldAutoCommit;
1325       return $error;
1326     }
1327
1328     # add customer (ship) name to svc_phone.phone_name if blank
1329     my @cust_svc = $cust_pkg->cust_svc;
1330     foreach my $cust_svc (@cust_svc) {
1331       my($label, $value, $svcdb) = $cust_svc->label;
1332       next unless $svcdb eq 'svc_phone';
1333       my $svc_phone = $cust_svc->svc_x;
1334       next if $svc_phone->phone_name;
1335       $svc_phone->phone_name($name);
1336       my $error = $svc_phone->replace;
1337       if ( $error ) {
1338         $dbh->rollback if $oldAutoCommit;
1339         return $error;
1340       }
1341     }
1342
1343   }
1344
1345   #not considered:
1346   # cust_tax_exempt (texas tax exemptions)
1347   # cust_recon (some sort of not-well understood thing for OnPac)
1348
1349   #these are moved over
1350   foreach my $table (qw(
1351     cust_tag cust_location contact cust_attachment cust_main_note
1352     cust_tax_adjustment cust_pay_batch queue
1353   )) {
1354     foreach my $record ( qsearch( $table, { 'custnum' => $self->custnum } ) ) {
1355       $record->custnum($new_custnum);
1356       my $error = $record->replace;
1357       if ( $error ) {
1358         $dbh->rollback if $oldAutoCommit;
1359         return $error;
1360       }
1361     }
1362   }
1363
1364   #these aren't preserved
1365   foreach my $table (qw(
1366     cust_main_exemption cust_main_invoice
1367   )) {
1368     foreach my $record ( qsearch( $table, { 'custnum' => $self->custnum } ) ) {
1369       my $error = $record->delete;
1370       if ( $error ) {
1371         $dbh->rollback if $oldAutoCommit;
1372         return $error;
1373       }
1374     }
1375   }
1376
1377
1378   my $sth = $dbh->prepare(
1379     'UPDATE cust_main SET referral_custnum = ? WHERE referral_custnum = ?'
1380   ) or do {
1381     my $errstr = $dbh->errstr;
1382     $dbh->rollback if $oldAutoCommit;
1383     return $errstr;
1384   };
1385   $sth->execute($new_custnum, $self->custnum) or do {
1386     my $errstr = $sth->errstr;
1387     $dbh->rollback if $oldAutoCommit;
1388     return $errstr;
1389   };
1390
1391   #tickets
1392
1393   my $ticket_dbh = '';
1394   if ($conf->config('ticket_system') eq 'RT_Internal') {
1395     $ticket_dbh = $dbh;
1396   } elsif ($conf->config('ticket_system') eq 'RT_External') {
1397     my ($datasrc, $user, $pass) = $conf->config('ticket_system-rt_external_datasrc');
1398     $ticket_dbh = DBI->connect($datasrc, $user, $pass, { 'ChopBlanks' => 1 });
1399       #or die "RT_External DBI->connect error: $DBI::errstr\n";
1400   }
1401
1402   if ( $ticket_dbh ) {
1403
1404     my $ticket_sth = $ticket_dbh->prepare(
1405       'UPDATE Links SET Target = ? WHERE Target = ?'
1406     ) or do {
1407       my $errstr = $ticket_dbh->errstr;
1408       $dbh->rollback if $oldAutoCommit;
1409       return $errstr;
1410     };
1411     $ticket_sth->execute('freeside://freeside/cust_main/'.$new_custnum,
1412                          'freeside://freeside/cust_main/'.$self->custnum)
1413       or do {
1414         my $errstr = $ticket_sth->errstr;
1415         $dbh->rollback if $oldAutoCommit;
1416         return $errstr;
1417       };
1418
1419   }
1420
1421   #delete the customer record
1422
1423   my $error = $self->delete;
1424   if ( $error ) {
1425     $dbh->rollback if $oldAutoCommit;
1426     return $error;
1427   }
1428
1429   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1430   '';
1431
1432 }
1433
1434 =item replace [ OLD_RECORD ] [ INVOICING_LIST_ARYREF ] [ , OPTION => VALUE ... ] ]
1435
1436
1437 Replaces the OLD_RECORD with this one in the database.  If there is an error,
1438 returns the error, otherwise returns false.
1439
1440 INVOICING_LIST_ARYREF: If you pass an arrarref to the insert method, it will
1441 be set as the invoicing list (see L<"invoicing_list">).  Errors return as
1442 expected and rollback the entire transaction; it is not necessary to call 
1443 check_invoicing_list first.  Here's an example:
1444
1445   $new_cust_main->replace( $old_cust_main, [ $email, 'POST' ] );
1446
1447 Currently available options are: I<tax_exemption>.
1448
1449 The I<tax_exemption> option can be set to an arrayref of tax names.
1450 FS::cust_main_exemption records will be deleted and inserted as appropriate.
1451
1452 =cut
1453
1454 sub replace {
1455   my $self = shift;
1456
1457   my $old = ( blessed($_[0]) && $_[0]->isa('FS::Record') )
1458               ? shift
1459               : $self->replace_old;
1460
1461   my @param = @_;
1462
1463   warn "$me replace called\n"
1464     if $DEBUG;
1465
1466   my $curuser = $FS::CurrentUser::CurrentUser;
1467   if (    $self->payby eq 'COMP'
1468        && $self->payby ne $old->payby
1469        && ! $curuser->access_right('Complimentary customer')
1470      )
1471   {
1472     return "You are not permitted to create complimentary accounts.";
1473   }
1474
1475   if ( $old->get('geocode') && $old->get('geocode') eq $self->get('geocode')
1476        && $conf->exists('enable_taxproducts')
1477      )
1478   {
1479     my $pre = ($conf->exists('tax-ship_address') && $self->ship_zip)
1480                 ? 'ship_' : '';
1481     $self->set('geocode', '')
1482       if $old->get($pre.'zip') ne $self->get($pre.'zip')
1483       && length($self->get($pre.'zip')) >= 10;
1484   }
1485
1486   for my $pre ( grep $old->get($_.'coord_auto'), ( '', 'ship_' ) ) {
1487
1488     $self->set($pre.'coord_auto', '') && next
1489       if $self->get($pre.'latitude') && $self->get($pre.'longitude')
1490       && (    $self->get($pre.'latitude')  != $old->get($pre.'latitude')
1491            || $self->get($pre.'longitude') != $old->get($pre.'longitude')
1492          );
1493
1494     $self->set_coord($pre)
1495       if $old->get($pre.'address1') ne $self->get($pre.'address1')
1496       || $old->get($pre.'city')     ne $self->get($pre.'city')
1497       || $old->get($pre.'state')    ne $self->get($pre.'state')
1498       || $old->get($pre.'country')  ne $self->get($pre.'country');
1499
1500   }
1501
1502   $self->set_coord
1503     if ! $self->coord_auto && ! $self->latitude && ! $self->longitude;
1504
1505   $self->set_coord('ship_')
1506     if $self->has_ship_address && ! $self->ship_coord_auto
1507     && ! $self->ship_latitude && ! $self->ship_longitude;
1508
1509   local($ignore_expired_card) = 1
1510     if $old->payby  =~ /^(CARD|DCRD)$/
1511     && $self->payby =~ /^(CARD|DCRD)$/
1512     && ( $old->payinfo eq $self->payinfo || $old->paymask eq $self->paymask );
1513
1514   local($ignore_banned_card) = 1
1515     if (    $old->payby  =~ /^(CARD|DCRD)$/ && $self->payby =~ /^(CARD|DCRD)$/
1516          || $old->payby  =~ /^(CHEK|DCHK)$/ && $self->payby =~ /^(CHEK|DCHK)$/ )
1517     && ( $old->payinfo eq $self->payinfo || $old->paymask eq $self->paymask );
1518
1519   if ( $self->censustract ne '' and $self->censustract ne $old->censustract ) {
1520     # update censusyear whenever tract code changes
1521     $self->censusyear($conf->config('census_year'));
1522   }
1523
1524
1525   local $SIG{HUP} = 'IGNORE';
1526   local $SIG{INT} = 'IGNORE';
1527   local $SIG{QUIT} = 'IGNORE';
1528   local $SIG{TERM} = 'IGNORE';
1529   local $SIG{TSTP} = 'IGNORE';
1530   local $SIG{PIPE} = 'IGNORE';
1531
1532   my $oldAutoCommit = $FS::UID::AutoCommit;
1533   local $FS::UID::AutoCommit = 0;
1534   my $dbh = dbh;
1535
1536   my $error = $self->SUPER::replace($old);
1537
1538   if ( $error ) {
1539     $dbh->rollback if $oldAutoCommit;
1540     return $error;
1541   }
1542
1543   if ( @param && ref($param[0]) eq 'ARRAY' ) { # INVOICING_LIST_ARYREF
1544     my $invoicing_list = shift @param;
1545     $error = $self->check_invoicing_list( $invoicing_list );
1546     if ( $error ) {
1547       $dbh->rollback if $oldAutoCommit;
1548       return $error;
1549     }
1550     $self->invoicing_list( $invoicing_list );
1551   }
1552
1553   if ( $self->exists('tagnum') ) { #so we don't delete these on edit by accident
1554
1555     #this could be more efficient than deleting and re-inserting, if it matters
1556     foreach my $cust_tag (qsearch('cust_tag', {'custnum'=>$self->custnum} )) {
1557       my $error = $cust_tag->delete;
1558       if ( $error ) {
1559         $dbh->rollback if $oldAutoCommit;
1560         return $error;
1561       }
1562     }
1563     foreach my $tagnum ( @{ $self->tagnum || [] } ) {
1564       my $cust_tag = new FS::cust_tag { 'tagnum'  => $tagnum,
1565                                         'custnum' => $self->custnum };
1566       my $error = $cust_tag->insert;
1567       if ( $error ) {
1568         $dbh->rollback if $oldAutoCommit;
1569         return $error;
1570       }
1571     }
1572
1573   }
1574
1575   my %options = @param;
1576
1577   my $tax_exemption = delete $options{'tax_exemption'};
1578   if ( $tax_exemption ) {
1579
1580     my %cust_main_exemption =
1581       map { $_->taxname => $_ }
1582           qsearch('cust_main_exemption', { 'custnum' => $old->custnum } );
1583
1584     foreach my $taxname ( @$tax_exemption ) {
1585
1586       next if delete $cust_main_exemption{$taxname};
1587
1588       my $cust_main_exemption = new FS::cust_main_exemption {
1589         'custnum' => $self->custnum,
1590         'taxname' => $taxname,
1591       };
1592       my $error = $cust_main_exemption->insert;
1593       if ( $error ) {
1594         $dbh->rollback if $oldAutoCommit;
1595         return "inserting cust_main_exemption (transaction rolled back): $error";
1596       }
1597     }
1598
1599     foreach my $cust_main_exemption ( values %cust_main_exemption ) {
1600       my $error = $cust_main_exemption->delete;
1601       if ( $error ) {
1602         $dbh->rollback if $oldAutoCommit;
1603         return "deleting cust_main_exemption (transaction rolled back): $error";
1604       }
1605     }
1606
1607   }
1608
1609   if ( $self->payby =~ /^(CARD|CHEK|LECB)$/
1610        && ( ( $self->get('payinfo') ne $old->get('payinfo')
1611               && $self->get('payinfo') !~ /^99\d{14}$/ 
1612             )
1613             || grep { $self->get($_) ne $old->get($_) } qw(paydate payname)
1614           )
1615      )
1616   {
1617
1618     # card/check/lec info has changed, want to retry realtime_ invoice events
1619     my $error = $self->retry_realtime;
1620     if ( $error ) {
1621       $dbh->rollback if $oldAutoCommit;
1622       return $error;
1623     }
1624   }
1625
1626   unless ( $import || $skip_fuzzyfiles ) {
1627     $error = $self->queue_fuzzyfiles_update;
1628     if ( $error ) {
1629       $dbh->rollback if $oldAutoCommit;
1630       return "updating fuzzy search cache: $error";
1631     }
1632   }
1633
1634   # cust_main exports!
1635
1636   my $export_args = $options{'export_args'} || [];
1637
1638   my @part_export =
1639     map qsearch( 'part_export', {exportnum=>$_} ),
1640       $conf->config('cust_main-exports'); #, $agentnum
1641
1642   foreach my $part_export ( @part_export ) {
1643     my $error = $part_export->export_replace( $self, $old, @$export_args);
1644     if ( $error ) {
1645       $dbh->rollback if $oldAutoCommit;
1646       return "exporting to ". $part_export->exporttype.
1647              " (transaction rolled back): $error";
1648     }
1649   }
1650
1651   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1652   '';
1653
1654 }
1655
1656 =item queue_fuzzyfiles_update
1657
1658 Used by insert & replace to update the fuzzy search cache
1659
1660 =cut
1661
1662 use FS::cust_main::Search;
1663 sub queue_fuzzyfiles_update {
1664   my $self = shift;
1665
1666   local $SIG{HUP} = 'IGNORE';
1667   local $SIG{INT} = 'IGNORE';
1668   local $SIG{QUIT} = 'IGNORE';
1669   local $SIG{TERM} = 'IGNORE';
1670   local $SIG{TSTP} = 'IGNORE';
1671   local $SIG{PIPE} = 'IGNORE';
1672
1673   my $oldAutoCommit = $FS::UID::AutoCommit;
1674   local $FS::UID::AutoCommit = 0;
1675   my $dbh = dbh;
1676
1677   my $queue = new FS::queue { 'job' => 'FS::cust_main::Search::append_fuzzyfiles' };
1678   my $error = $queue->insert( map $self->getfield($_), @FS::cust_main::Search::fuzzyfields );
1679   if ( $error ) {
1680     $dbh->rollback if $oldAutoCommit;
1681     return "queueing job (transaction rolled back): $error";
1682   }
1683
1684   if ( $self->ship_last ) {
1685     $queue = new FS::queue { 'job' => 'FS::cust_main::Search::append_fuzzyfiles' };
1686     $error = $queue->insert( map $self->getfield("ship_$_"), @FS::cust_main::Search::fuzzyfields );
1687     if ( $error ) {
1688       $dbh->rollback if $oldAutoCommit;
1689       return "queueing job (transaction rolled back): $error";
1690     }
1691   }
1692
1693   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1694   '';
1695
1696 }
1697
1698 =item check
1699
1700 Checks all fields to make sure this is a valid customer record.  If there is
1701 an error, returns the error, otherwise returns false.  Called by the insert
1702 and replace methods.
1703
1704 =cut
1705
1706 sub check {
1707   my $self = shift;
1708
1709   warn "$me check BEFORE: \n". $self->_dump
1710     if $DEBUG > 2;
1711
1712   my $error =
1713     $self->ut_numbern('custnum')
1714     || $self->ut_number('agentnum')
1715     || $self->ut_textn('agent_custid')
1716     || $self->ut_number('refnum')
1717     || $self->ut_foreign_keyn('classnum', 'cust_class', 'classnum')
1718     || $self->ut_textn('custbatch')
1719     || $self->ut_name('last')
1720     || $self->ut_name('first')
1721     || $self->ut_snumbern('birthdate')
1722     || $self->ut_snumbern('signupdate')
1723     || $self->ut_textn('company')
1724     || $self->ut_text('address1')
1725     || $self->ut_textn('address2')
1726     || $self->ut_text('city')
1727     || $self->ut_textn('county')
1728     || $self->ut_textn('state')
1729     || $self->ut_country('country')
1730     || $self->ut_coordn('latitude')
1731     || $self->ut_coordn('longitude')
1732     || $self->ut_enum('coord_auto', [ '', 'Y' ])
1733     || $self->ut_numbern('censusyear')
1734     || $self->ut_anything('comments')
1735     || $self->ut_numbern('referral_custnum')
1736     || $self->ut_textn('stateid')
1737     || $self->ut_textn('stateid_state')
1738     || $self->ut_textn('invoice_terms')
1739     || $self->ut_alphan('geocode')
1740     || $self->ut_floatn('cdr_termination_percentage')
1741     || $self->ut_floatn('credit_limit')
1742     || $self->ut_numbern('billday')
1743     || $self->ut_enum('edit_subject', [ '', 'Y' ] )
1744     || $self->ut_enum('calling_list_exempt', [ '', 'Y' ] )
1745     || $self->ut_enum('locale', [ '', FS::Locales->locales ])
1746   ;
1747
1748   $self->set_coord
1749     unless $import || ($self->latitude && $self->longitude);
1750
1751   #barf.  need message catalogs.  i18n.  etc.
1752   $error .= "Please select an advertising source."
1753     if $error =~ /^Illegal or empty \(numeric\) refnum: /;
1754   return $error if $error;
1755
1756   return "Unknown agent"
1757     unless qsearchs( 'agent', { 'agentnum' => $self->agentnum } );
1758
1759   return "Unknown refnum"
1760     unless qsearchs( 'part_referral', { 'refnum' => $self->refnum } );
1761
1762   return "Unknown referring custnum: ". $self->referral_custnum
1763     unless ! $self->referral_custnum 
1764            || qsearchs( 'cust_main', { 'custnum' => $self->referral_custnum } );
1765
1766   if ( $self->censustract ne '' ) {
1767     $self->censustract =~ /^\s*(\d{9})\.?(\d{2})\s*$/
1768       or return "Illegal census tract: ". $self->censustract;
1769     
1770     $self->censustract("$1.$2");
1771   }
1772
1773   if ( $self->ss eq '' ) {
1774     $self->ss('');
1775   } else {
1776     my $ss = $self->ss;
1777     $ss =~ s/\D//g;
1778     $ss =~ /^(\d{3})(\d{2})(\d{4})$/
1779       or return "Illegal social security number: ". $self->ss;
1780     $self->ss("$1-$2-$3");
1781   }
1782
1783
1784 # bad idea to disable, causes billing to fail because of no tax rates later
1785 # except we don't fail any more
1786   unless ( $import ) {
1787     unless ( qsearch('cust_main_county', {
1788       'country' => $self->country,
1789       'state'   => '',
1790      } ) ) {
1791       return "Unknown state/county/country: ".
1792         $self->state. "/". $self->county. "/". $self->country
1793         unless qsearch('cust_main_county',{
1794           'state'   => $self->state,
1795           'county'  => $self->county,
1796           'country' => $self->country,
1797         } );
1798     }
1799   }
1800
1801   $error =
1802        $self->ut_phonen('daytime', $self->country)
1803     || $self->ut_phonen('night',   $self->country)
1804     || $self->ut_phonen('fax',     $self->country)
1805     || $self->ut_phonen('mobile',  $self->country)
1806   ;
1807   return $error if $error;
1808
1809   unless ( $ignore_illegal_zip ) {
1810     $error = $self->ut_zip('zip', $self->country);
1811     return $error if $error;
1812   }
1813
1814   if ( $conf->exists('cust_main-require_phone')
1815        && ! length($self->daytime) && ! length($self->night) && ! length($self->mobile)
1816      ) {
1817
1818     my $daytime_label = FS::Msgcat::_gettext('daytime') =~ /^(daytime)?$/
1819                           ? 'Day Phone'
1820                           : FS::Msgcat::_gettext('daytime');
1821     my $night_label = FS::Msgcat::_gettext('night') =~ /^(night)?$/
1822                         ? 'Night Phone'
1823                         : FS::Msgcat::_gettext('night');
1824
1825     my $mobile_label = FS::Msgcat::_gettext('mobile') =~ /^(mobile)?$/
1826                         ? 'Mobile Phone'
1827                         : FS::Msgcat::_gettext('mobile');
1828
1829     return "$daytime_label, $night_label or $mobile_label is required"
1830   
1831   }
1832
1833   if ( $self->has_ship_address
1834        && scalar ( grep { $self->getfield($_) ne $self->getfield("ship_$_") }
1835                         $self->addr_fields )
1836      )
1837   {
1838     my $error =
1839       $self->ut_name('ship_last')
1840       || $self->ut_name('ship_first')
1841       || $self->ut_textn('ship_company')
1842       || $self->ut_text('ship_address1')
1843       || $self->ut_textn('ship_address2')
1844       || $self->ut_text('ship_city')
1845       || $self->ut_textn('ship_county')
1846       || $self->ut_textn('ship_state')
1847       || $self->ut_country('ship_country')
1848       || $self->ut_coordn('ship_latitude')
1849       || $self->ut_coordn('ship_longitude')
1850       || $self->ut_enum('ship_coord_auto', [ '', 'Y' ] )
1851     ;
1852     return $error if $error;
1853
1854     $self->set_coord('ship_')
1855       unless $import || ($self->ship_latitude && $self->ship_longitude);
1856
1857     #false laziness with above
1858     unless ( qsearchs('cust_main_county', {
1859       'country' => $self->ship_country,
1860       'state'   => '',
1861      } ) ) {
1862       return "Unknown ship_state/ship_county/ship_country: ".
1863         $self->ship_state. "/". $self->ship_county. "/". $self->ship_country
1864         unless qsearch('cust_main_county',{
1865           'state'   => $self->ship_state,
1866           'county'  => $self->ship_county,
1867           'country' => $self->ship_country,
1868         } );
1869     }
1870     #eofalse
1871
1872     $error =
1873          $self->ut_phonen('ship_daytime', $self->ship_country)
1874       || $self->ut_phonen('ship_night',   $self->ship_country)
1875       || $self->ut_phonen('ship_fax',     $self->ship_country)
1876       || $self->ut_phonen('ship_mobile',  $self->ship_country)
1877     ;
1878     return $error if $error;
1879
1880     unless ( $ignore_illegal_zip ) {
1881       $error = $self->ut_zip('ship_zip', $self->ship_country);
1882       return $error if $error;
1883     }
1884     return "Unit # is required."
1885       if $self->ship_address2 =~ /^\s*$/
1886       && $conf->exists('cust_main-require_address2');
1887
1888   } else { # ship_ info eq billing info, so don't store dup info in database
1889
1890     $self->setfield("ship_$_", '')
1891       foreach $self->addr_fields;
1892
1893     return "Unit # is required."
1894       if $self->address2 =~ /^\s*$/
1895       && $conf->exists('cust_main-require_address2');
1896
1897   }
1898
1899   #$self->payby =~ /^(CARD|DCRD|CHEK|DCHK|LECB|BILL|COMP|PREPAY|CASH|WEST|MCRD)$/
1900   #  or return "Illegal payby: ". $self->payby;
1901   #$self->payby($1);
1902   FS::payby->can_payby($self->table, $self->payby)
1903     or return "Illegal payby: ". $self->payby;
1904
1905   $error =    $self->ut_numbern('paystart_month')
1906            || $self->ut_numbern('paystart_year')
1907            || $self->ut_numbern('payissue')
1908            || $self->ut_textn('paytype')
1909   ;
1910   return $error if $error;
1911
1912   if ( $self->payip eq '' ) {
1913     $self->payip('');
1914   } else {
1915     $error = $self->ut_ip('payip');
1916     return $error if $error;
1917   }
1918
1919   # If it is encrypted and the private key is not availaible then we can't
1920   # check the credit card.
1921   my $check_payinfo = ! $self->is_encrypted($self->payinfo);
1922
1923   if ( $check_payinfo && $self->payby =~ /^(CARD|DCRD)$/ ) {
1924
1925     my $payinfo = $self->payinfo;
1926     $payinfo =~ s/\D//g;
1927     $payinfo =~ /^(\d{13,16}|\d{8,9})$/
1928       or return gettext('invalid_card'); # . ": ". $self->payinfo;
1929     $payinfo = $1;
1930     $self->payinfo($payinfo);
1931     validate($payinfo)
1932       or return gettext('invalid_card'); # . ": ". $self->payinfo;
1933
1934     return gettext('unknown_card_type')
1935       if $self->payinfo !~ /^99\d{14}$/ #token
1936       && cardtype($self->payinfo) eq "Unknown";
1937
1938     unless ( $ignore_banned_card ) {
1939       my $ban = FS::banned_pay->ban_search( %{ $self->_banned_pay_hashref } );
1940       if ( $ban ) {
1941         if ( $ban->bantype eq 'warn' ) {
1942           #or others depending on value of $ban->reason ?
1943           return '_duplicate_card'.
1944                  ': disabled from'. time2str('%a %h %o at %r', $ban->_date).
1945                  ' until '.         time2str('%a %h %o at %r', $ban->_end_date).
1946                  ' (ban# '. $ban->bannum. ')'
1947             unless $self->override_ban_warn;
1948         } else {
1949           return 'Banned credit card: banned on '.
1950                  time2str('%a %h %o at %r', $ban->_date).
1951                  ' by '. $ban->otaker.
1952                  ' (ban# '. $ban->bannum. ')';
1953         }
1954       }
1955     }
1956
1957     if (length($self->paycvv) && !$self->is_encrypted($self->paycvv)) {
1958       if ( cardtype($self->payinfo) eq 'American Express card' ) {
1959         $self->paycvv =~ /^(\d{4})$/
1960           or return "CVV2 (CID) for American Express cards is four digits.";
1961         $self->paycvv($1);
1962       } else {
1963         $self->paycvv =~ /^(\d{3})$/
1964           or return "CVV2 (CVC2/CID) is three digits.";
1965         $self->paycvv($1);
1966       }
1967     } else {
1968       $self->paycvv('');
1969     }
1970
1971     my $cardtype = cardtype($payinfo);
1972     if ( $cardtype =~ /^(Switch|Solo)$/i ) {
1973
1974       return "Start date or issue number is required for $cardtype cards"
1975         unless $self->paystart_month && $self->paystart_year or $self->payissue;
1976
1977       return "Start month must be between 1 and 12"
1978         if $self->paystart_month
1979            and $self->paystart_month < 1 || $self->paystart_month > 12;
1980
1981       return "Start year must be 1990 or later"
1982         if $self->paystart_year
1983            and $self->paystart_year < 1990;
1984
1985       return "Issue number must be beween 1 and 99"
1986         if $self->payissue
1987           and $self->payissue < 1 || $self->payissue > 99;
1988
1989     } else {
1990       $self->paystart_month('');
1991       $self->paystart_year('');
1992       $self->payissue('');
1993     }
1994
1995   } elsif ( $check_payinfo && $self->payby =~ /^(CHEK|DCHK)$/ ) {
1996
1997     my $payinfo = $self->payinfo;
1998     $payinfo =~ s/[^\d\@\.]//g;
1999     if ( $conf->exists('cust_main-require-bank-branch') ) {
2000       $payinfo =~ /^(\d+)\@(\d+)\.(\d+)$/ or return 'invalid echeck account@branch.bank';
2001       $payinfo = "$1\@$2.$3";
2002     } elsif ( $conf->exists('echeck-nonus') ) {
2003       $payinfo =~ /^(\d+)\@(\d+)$/ or return 'invalid echeck account@aba';
2004       $payinfo = "$1\@$2";
2005     } else {
2006       $payinfo =~ /^(\d+)\@(\d{9})$/ or return 'invalid echeck account@aba';
2007       $payinfo = "$1\@$2";
2008     }
2009     $self->payinfo($payinfo);
2010     $self->paycvv('');
2011
2012     unless ( $ignore_banned_card ) {
2013       my $ban = FS::banned_pay->ban_search( %{ $self->_banned_pay_hashref } );
2014       if ( $ban ) {
2015         if ( $ban->bantype eq 'warn' ) {
2016           #or others depending on value of $ban->reason ?
2017           return '_duplicate_ach' unless $self->override_ban_warn;
2018         } else {
2019           return 'Banned ACH account: banned on '.
2020                  time2str('%a %h %o at %r', $ban->_date).
2021                  ' by '. $ban->otaker.
2022                  ' (ban# '. $ban->bannum. ')';
2023         }
2024       }
2025     }
2026
2027   } elsif ( $self->payby eq 'LECB' ) {
2028
2029     my $payinfo = $self->payinfo;
2030     $payinfo =~ s/\D//g;
2031     $payinfo =~ /^1?(\d{10})$/ or return 'invalid btn billing telephone number';
2032     $payinfo = $1;
2033     $self->payinfo($payinfo);
2034     $self->paycvv('');
2035
2036   } elsif ( $self->payby eq 'BILL' ) {
2037
2038     $error = $self->ut_textn('payinfo');
2039     return "Illegal P.O. number: ". $self->payinfo if $error;
2040     $self->paycvv('');
2041
2042   } elsif ( $self->payby eq 'COMP' ) {
2043
2044     my $curuser = $FS::CurrentUser::CurrentUser;
2045     if (    ! $self->custnum
2046          && ! $curuser->access_right('Complimentary customer')
2047        )
2048     {
2049       return "You are not permitted to create complimentary accounts."
2050     }
2051
2052     $error = $self->ut_textn('payinfo');
2053     return "Illegal comp account issuer: ". $self->payinfo if $error;
2054     $self->paycvv('');
2055
2056   } elsif ( $self->payby eq 'PREPAY' ) {
2057
2058     my $payinfo = $self->payinfo;
2059     $payinfo =~ s/\W//g; #anything else would just confuse things
2060     $self->payinfo($payinfo);
2061     $error = $self->ut_alpha('payinfo');
2062     return "Illegal prepayment identifier: ". $self->payinfo if $error;
2063     return "Unknown prepayment identifier"
2064       unless qsearchs('prepay_credit', { 'identifier' => $self->payinfo } );
2065     $self->paycvv('');
2066
2067   }
2068
2069   if ( $self->paydate eq '' || $self->paydate eq '-' ) {
2070     return "Expiration date required"
2071       unless $self->payby =~ /^(BILL|PREPAY|CHEK|DCHK|LECB|CASH|WEST|MCRD)$/;
2072     $self->paydate('');
2073   } else {
2074     my( $m, $y );
2075     if ( $self->paydate =~ /^(\d{1,2})[\/\-](\d{2}(\d{2})?)$/ ) {
2076       ( $m, $y ) = ( $1, length($2) == 4 ? $2 : "20$2" );
2077     } elsif ( $self->paydate =~ /^19(\d{2})[\/\-](\d{1,2})[\/\-]\d+$/ ) {
2078       ( $m, $y ) = ( $2, "19$1" );
2079     } elsif ( $self->paydate =~ /^(20)?(\d{2})[\/\-](\d{1,2})[\/\-]\d+$/ ) {
2080       ( $m, $y ) = ( $3, "20$2" );
2081     } else {
2082       return "Illegal expiration date: ". $self->paydate;
2083     }
2084     $m = sprintf('%02d',$m);
2085     $self->paydate("$y-$m-01");
2086     my($nowm,$nowy)=(localtime(time))[4,5]; $nowm++; $nowy+=1900;
2087     return gettext('expired_card')
2088       if !$import
2089       && !$ignore_expired_card 
2090       && ( $y<$nowy || ( $y==$nowy && $1<$nowm ) );
2091   }
2092
2093   if ( $self->payname eq '' && $self->payby !~ /^(CHEK|DCHK)$/ &&
2094        ( ! $conf->exists('require_cardname')
2095          || $self->payby !~ /^(CARD|DCRD)$/  ) 
2096   ) {
2097     $self->payname( $self->first. " ". $self->getfield('last') );
2098   } else {
2099     $self->payname =~ /^([\w \,\.\-\'\&]+)$/
2100       or return gettext('illegal_name'). " payname: ". $self->payname;
2101     $self->payname($1);
2102   }
2103
2104   foreach my $flag (qw( tax spool_cdr squelch_cdr archived email_csv_cdr )) {
2105     $self->$flag() =~ /^(Y?)$/ or return "Illegal $flag: ". $self->$flag();
2106     $self->$flag($1);
2107   }
2108
2109   $self->usernum($FS::CurrentUser::CurrentUser->usernum) unless $self->usernum;
2110
2111   warn "$me check AFTER: \n". $self->_dump
2112     if $DEBUG > 2;
2113
2114   $self->SUPER::check;
2115 }
2116
2117 =item addr_fields 
2118
2119 Returns a list of fields which have ship_ duplicates.
2120
2121 =cut
2122
2123 sub addr_fields {
2124   qw( last first company
2125       address1 address2 city county state zip country
2126       latitude longitude
2127       daytime night fax mobile
2128     );
2129 }
2130
2131 =item has_ship_address
2132
2133 Returns true if this customer record has a separate shipping address.
2134
2135 =cut
2136
2137 sub has_ship_address {
2138   my $self = shift;
2139   scalar( grep { $self->getfield("ship_$_") ne '' } $self->addr_fields );
2140 }
2141
2142 =item location_hash
2143
2144 Returns a list of key/value pairs, with the following keys: address1, adddress2,
2145 city, county, state, zip, country, and geocode.  The shipping address is used if present.
2146
2147 =cut
2148
2149 =item cust_location
2150
2151 Returns all locations (see L<FS::cust_location>) for this customer.
2152
2153 =cut
2154
2155 sub cust_location {
2156   my $self = shift;
2157   qsearch('cust_location', { 'custnum' => $self->custnum } );
2158 }
2159
2160 =item cust_contact
2161
2162 Returns all contacts (see L<FS::contact>) for this customer.
2163
2164 =cut
2165
2166 #already used :/ sub contact {
2167 sub cust_contact {
2168   my $self = shift;
2169   qsearch('contact', { 'custnum' => $self->custnum } );
2170 }
2171
2172 =item unsuspend
2173
2174 Unsuspends all unflagged suspended packages (see L</unflagged_suspended_pkgs>
2175 and L<FS::cust_pkg>) for this customer.  Always returns a list: an empty list
2176 on success or a list of errors.
2177
2178 =cut
2179
2180 sub unsuspend {
2181   my $self = shift;
2182   grep { $_->unsuspend } $self->suspended_pkgs;
2183 }
2184
2185 =item suspend
2186
2187 Suspends all unsuspended packages (see L<FS::cust_pkg>) for this customer.
2188
2189 Returns a list: an empty list on success or a list of errors.
2190
2191 =cut
2192
2193 sub suspend {
2194   my $self = shift;
2195   grep { $_->suspend(@_) } $self->unsuspended_pkgs;
2196 }
2197
2198 =item suspend_if_pkgpart HASHREF | PKGPART [ , PKGPART ... ]
2199
2200 Suspends all unsuspended packages (see L<FS::cust_pkg>) matching the listed
2201 PKGPARTs (see L<FS::part_pkg>).  Preferred usage is to pass a hashref instead
2202 of a list of pkgparts; the hashref has the following keys:
2203
2204 =over 4
2205
2206 =item pkgparts - listref of pkgparts
2207
2208 =item (other options are passed to the suspend method)
2209
2210 =back
2211
2212
2213 Returns a list: an empty list on success or a list of errors.
2214
2215 =cut
2216
2217 sub suspend_if_pkgpart {
2218   my $self = shift;
2219   my (@pkgparts, %opt);
2220   if (ref($_[0]) eq 'HASH'){
2221     @pkgparts = @{$_[0]{pkgparts}};
2222     %opt      = %{$_[0]};
2223   }else{
2224     @pkgparts = @_;
2225   }
2226   grep { $_->suspend(%opt) }
2227     grep { my $pkgpart = $_->pkgpart; grep { $pkgpart eq $_ } @pkgparts }
2228       $self->unsuspended_pkgs;
2229 }
2230
2231 =item suspend_unless_pkgpart HASHREF | PKGPART [ , PKGPART ... ]
2232
2233 Suspends all unsuspended packages (see L<FS::cust_pkg>) unless they match the
2234 given PKGPARTs (see L<FS::part_pkg>).  Preferred usage is to pass a hashref
2235 instead of a list of pkgparts; the hashref has the following keys:
2236
2237 =over 4
2238
2239 =item pkgparts - listref of pkgparts
2240
2241 =item (other options are passed to the suspend method)
2242
2243 =back
2244
2245 Returns a list: an empty list on success or a list of errors.
2246
2247 =cut
2248
2249 sub suspend_unless_pkgpart {
2250   my $self = shift;
2251   my (@pkgparts, %opt);
2252   if (ref($_[0]) eq 'HASH'){
2253     @pkgparts = @{$_[0]{pkgparts}};
2254     %opt      = %{$_[0]};
2255   }else{
2256     @pkgparts = @_;
2257   }
2258   grep { $_->suspend(%opt) }
2259     grep { my $pkgpart = $_->pkgpart; ! grep { $pkgpart eq $_ } @pkgparts }
2260       $self->unsuspended_pkgs;
2261 }
2262
2263 =item cancel [ OPTION => VALUE ... ]
2264
2265 Cancels all uncancelled packages (see L<FS::cust_pkg>) for this customer.
2266
2267 Available options are:
2268
2269 =over 4
2270
2271 =item quiet - can be set true to supress email cancellation notices.
2272
2273 =item reason - can be set to a cancellation reason (see L<FS:reason>), either a reasonnum of an existing reason, or passing a hashref will create a new reason.  The hashref should have the following keys: typenum - Reason type (see L<FS::reason_type>, reason - Text of the new reason.
2274
2275 =item ban - can be set true to ban this customer's credit card or ACH information, if present.
2276
2277 =item nobill - can be set true to skip billing if it might otherwise be done.
2278
2279 =back
2280
2281 Always returns a list: an empty list on success or a list of errors.
2282
2283 =cut
2284
2285 # nb that dates are not specified as valid options to this method
2286
2287 sub cancel {
2288   my( $self, %opt ) = @_;
2289
2290   warn "$me cancel called on customer ". $self->custnum. " with options ".
2291        join(', ', map { "$_: $opt{$_}" } keys %opt ). "\n"
2292     if $DEBUG;
2293
2294   return ( 'access denied' )
2295     unless $FS::CurrentUser::CurrentUser->access_right('Cancel customer');
2296
2297   if ( $opt{'ban'} && $self->payby =~ /^(CARD|DCRD|CHEK|DCHK)$/ ) {
2298
2299     #should try decryption (we might have the private key)
2300     # and if not maybe queue a job for the server that does?
2301     return ( "Can't (yet) ban encrypted credit cards" )
2302       if $self->is_encrypted($self->payinfo);
2303
2304     my $ban = new FS::banned_pay $self->_new_banned_pay_hashref;
2305     my $error = $ban->insert;
2306     return ( $error ) if $error;
2307
2308   }
2309
2310   my @pkgs = $self->ncancelled_pkgs;
2311
2312   if ( !$opt{nobill} && $conf->exists('bill_usage_on_cancel') ) {
2313     $opt{nobill} = 1;
2314     my $error = $self->bill( pkg_list => [ @pkgs ], cancel => 1 );
2315     warn "Error billing during cancel, custnum ". $self->custnum. ": $error"
2316       if $error;
2317   }
2318
2319   warn "$me cancelling ". scalar($self->ncancelled_pkgs). "/".
2320        scalar(@pkgs). " packages for customer ". $self->custnum. "\n"
2321     if $DEBUG;
2322
2323   grep { $_ } map { $_->cancel(%opt) } $self->ncancelled_pkgs;
2324 }
2325
2326 sub _banned_pay_hashref {
2327   my $self = shift;
2328
2329   my %payby2ban = (
2330     'CARD' => 'CARD',
2331     'DCRD' => 'CARD',
2332     'CHEK' => 'CHEK',
2333     'DCHK' => 'CHEK'
2334   );
2335
2336   {
2337     'payby'   => $payby2ban{$self->payby},
2338     'payinfo' => $self->payinfo,
2339     #don't ever *search* on reason! #'reason'  =>
2340   };
2341 }
2342
2343 sub _new_banned_pay_hashref {
2344   my $self = shift;
2345   my $hr = $self->_banned_pay_hashref;
2346   $hr->{payinfo} = md5_base64($hr->{payinfo});
2347   $hr;
2348 }
2349
2350 =item notes
2351
2352 Returns all notes (see L<FS::cust_main_note>) for this customer.
2353
2354 =cut
2355
2356 sub notes {
2357   my($self,$orderby_classnum) = (shift,shift);
2358   my $orderby = "_DATE DESC";
2359   $orderby = "CLASSNUM ASC, $orderby" if $orderby_classnum;
2360   qsearch( 'cust_main_note',
2361            { 'custnum' => $self->custnum },
2362            '',
2363            "ORDER BY $orderby",
2364          );
2365 }
2366
2367 =item agent
2368
2369 Returns the agent (see L<FS::agent>) for this customer.
2370
2371 =cut
2372
2373 sub agent {
2374   my $self = shift;
2375   qsearchs( 'agent', { 'agentnum' => $self->agentnum } );
2376 }
2377
2378 =item agent_name
2379
2380 Returns the agent name (see L<FS::agent>) for this customer.
2381
2382 =cut
2383
2384 sub agent_name {
2385   my $self = shift;
2386   $self->agent->agent;
2387 }
2388
2389 =item cust_tag
2390
2391 Returns any tags associated with this customer, as FS::cust_tag objects,
2392 or an empty list if there are no tags.
2393
2394 =cut
2395
2396 sub cust_tag {
2397   my $self = shift;
2398   qsearch('cust_tag', { 'custnum' => $self->custnum } );
2399 }
2400
2401 =item part_tag
2402
2403 Returns any tags associated with this customer, as FS::part_tag objects,
2404 or an empty list if there are no tags.
2405
2406 =cut
2407
2408 sub part_tag {
2409   my $self = shift;
2410   map $_->part_tag, $self->cust_tag; 
2411 }
2412
2413
2414 =item cust_class
2415
2416 Returns the customer class, as an FS::cust_class object, or the empty string
2417 if there is no customer class.
2418
2419 =cut
2420
2421 sub cust_class {
2422   my $self = shift;
2423   if ( $self->classnum ) {
2424     qsearchs('cust_class', { 'classnum' => $self->classnum } );
2425   } else {
2426     return '';
2427   } 
2428 }
2429
2430 =item categoryname 
2431
2432 Returns the customer category name, or the empty string if there is no customer
2433 category.
2434
2435 =cut
2436
2437 sub categoryname {
2438   my $self = shift;
2439   my $cust_class = $self->cust_class;
2440   $cust_class
2441     ? $cust_class->categoryname
2442     : '';
2443 }
2444
2445 =item classname 
2446
2447 Returns the customer class name, or the empty string if there is no customer
2448 class.
2449
2450 =cut
2451
2452 sub classname {
2453   my $self = shift;
2454   my $cust_class = $self->cust_class;
2455   $cust_class
2456     ? $cust_class->classname
2457     : '';
2458 }
2459
2460 =item BILLING METHODS
2461
2462 Documentation on billing methods has been moved to
2463 L<FS::cust_main::Billing>.
2464
2465 =item REALTIME BILLING METHODS
2466
2467 Documentation on realtime billing methods has been moved to
2468 L<FS::cust_main::Billing_Realtime>.
2469
2470 =item remove_cvv
2471
2472 Removes the I<paycvv> field from the database directly.
2473
2474 If there is an error, returns the error, otherwise returns false.
2475
2476 =cut
2477
2478 sub remove_cvv {
2479   my $self = shift;
2480   my $sth = dbh->prepare("UPDATE cust_main SET paycvv = '' WHERE custnum = ?")
2481     or return dbh->errstr;
2482   $sth->execute($self->custnum)
2483     or return $sth->errstr;
2484   $self->paycvv('');
2485   '';
2486 }
2487
2488 =item batch_card OPTION => VALUE...
2489
2490 Adds a payment for this invoice to the pending credit card batch (see
2491 L<FS::cust_pay_batch>), or, if the B<realtime> option is set to a true value,
2492 runs the payment using a realtime gateway.
2493
2494 =cut
2495
2496 sub batch_card {
2497   my ($self, %options) = @_;
2498
2499   my $amount;
2500   if (exists($options{amount})) {
2501     $amount = $options{amount};
2502   }else{
2503     $amount = sprintf("%.2f", $self->balance - $self->in_transit_payments);
2504   }
2505   return '' unless $amount > 0;
2506   
2507   my $invnum = delete $options{invnum};
2508   my $payby = $options{payby} || $self->payby;  #still dubious
2509
2510   if ($options{'realtime'}) {
2511     return $self->realtime_bop( FS::payby->payby2bop($self->payby),
2512                                 $amount,
2513                                 %options,
2514                               );
2515   }
2516
2517   my $oldAutoCommit = $FS::UID::AutoCommit;
2518   local $FS::UID::AutoCommit = 0;
2519   my $dbh = dbh;
2520
2521   #this needs to handle mysql as well as Pg, like svc_acct.pm
2522   #(make it into a common function if folks need to do batching with mysql)
2523   $dbh->do("LOCK TABLE pay_batch IN SHARE ROW EXCLUSIVE MODE")
2524     or return "Cannot lock pay_batch: " . $dbh->errstr;
2525
2526   my %pay_batch = (
2527     'status' => 'O',
2528     'payby'  => FS::payby->payby2payment($payby),
2529   );
2530   $pay_batch{agentnum} = $self->agentnum if $conf->exists('batch-spoolagent');
2531
2532   my $pay_batch = qsearchs( 'pay_batch', \%pay_batch );
2533
2534   unless ( $pay_batch ) {
2535     $pay_batch = new FS::pay_batch \%pay_batch;
2536     my $error = $pay_batch->insert;
2537     if ( $error ) {
2538       $dbh->rollback if $oldAutoCommit;
2539       die "error creating new batch: $error\n";
2540     }
2541   }
2542
2543   my $old_cust_pay_batch = qsearchs('cust_pay_batch', {
2544       'batchnum' => $pay_batch->batchnum,
2545       'custnum'  => $self->custnum,
2546   } );
2547
2548   foreach (qw( address1 address2 city state zip country latitude longitude
2549                payby payinfo paydate payname ))
2550   {
2551     $options{$_} = '' unless exists($options{$_});
2552   }
2553
2554   my $cust_pay_batch = new FS::cust_pay_batch ( {
2555     'batchnum' => $pay_batch->batchnum,
2556     'invnum'   => $invnum || 0,                    # is there a better value?
2557                                                    # this field should be
2558                                                    # removed...
2559                                                    # cust_bill_pay_batch now
2560     'custnum'  => $self->custnum,
2561     'last'     => $self->getfield('last'),
2562     'first'    => $self->getfield('first'),
2563     'address1' => $options{address1} || $self->address1,
2564     'address2' => $options{address2} || $self->address2,
2565     'city'     => $options{city}     || $self->city,
2566     'state'    => $options{state}    || $self->state,
2567     'zip'      => $options{zip}      || $self->zip,
2568     'country'  => $options{country}  || $self->country,
2569     'payby'    => $options{payby}    || $self->payby,
2570     'payinfo'  => $options{payinfo}  || $self->payinfo,
2571     'exp'      => $options{paydate}  || $self->paydate,
2572     'payname'  => $options{payname}  || $self->payname,
2573     'amount'   => $amount,                         # consolidating
2574   } );
2575   
2576   $cust_pay_batch->paybatchnum($old_cust_pay_batch->paybatchnum)
2577     if $old_cust_pay_batch;
2578
2579   my $error;
2580   if ($old_cust_pay_batch) {
2581     $error = $cust_pay_batch->replace($old_cust_pay_batch)
2582   } else {
2583     $error = $cust_pay_batch->insert;
2584   }
2585
2586   if ( $error ) {
2587     $dbh->rollback if $oldAutoCommit;
2588     die $error;
2589   }
2590
2591   my $unapplied =   $self->total_unapplied_credits
2592                   + $self->total_unapplied_payments
2593                   + $self->in_transit_payments;
2594   foreach my $cust_bill ($self->open_cust_bill) {
2595     #$dbh->commit or die $dbh->errstr if $oldAutoCommit;
2596     my $cust_bill_pay_batch = new FS::cust_bill_pay_batch {
2597       'invnum' => $cust_bill->invnum,
2598       'paybatchnum' => $cust_pay_batch->paybatchnum,
2599       'amount' => $cust_bill->owed,
2600       '_date' => time,
2601     };
2602     if ($unapplied >= $cust_bill_pay_batch->amount){
2603       $unapplied -= $cust_bill_pay_batch->amount;
2604       next;
2605     }else{
2606       $cust_bill_pay_batch->amount(sprintf ( "%.2f", 
2607                                    $cust_bill_pay_batch->amount - $unapplied ));      $unapplied = 0;
2608     }
2609     $error = $cust_bill_pay_batch->insert;
2610     if ( $error ) {
2611       $dbh->rollback if $oldAutoCommit;
2612       die $error;
2613     }
2614   }
2615
2616   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
2617   '';
2618 }
2619
2620 =item total_owed
2621
2622 Returns the total owed for this customer on all invoices
2623 (see L<FS::cust_bill/owed>).
2624
2625 =cut
2626
2627 sub total_owed {
2628   my $self = shift;
2629   $self->total_owed_date(2145859200); #12/31/2037
2630 }
2631
2632 =item total_owed_date TIME
2633
2634 Returns the total owed for this customer on all invoices with date earlier than
2635 TIME.  TIME is specified as a UNIX timestamp; see L<perlfunc/"time">).  Also
2636 see L<Time::Local> and L<Date::Parse> for conversion functions.
2637
2638 =cut
2639
2640 sub total_owed_date {
2641   my $self = shift;
2642   my $time = shift;
2643
2644   my $custnum = $self->custnum;
2645
2646   my $owed_sql = FS::cust_bill->owed_sql;
2647
2648   my $sql = "
2649     SELECT SUM($owed_sql) FROM cust_bill
2650       WHERE custnum = $custnum
2651         AND _date <= $time
2652   ";
2653
2654   sprintf( "%.2f", $self->scalar_sql($sql) || 0 );
2655
2656 }
2657
2658 =item total_owed_pkgnum PKGNUM
2659
2660 Returns the total owed on all invoices for this customer's specific package
2661 when using experimental package balances (see L<FS::cust_bill/owed_pkgnum>).
2662
2663 =cut
2664
2665 sub total_owed_pkgnum {
2666   my( $self, $pkgnum ) = @_;
2667   $self->total_owed_date_pkgnum(2145859200, $pkgnum); #12/31/2037
2668 }
2669
2670 =item total_owed_date_pkgnum TIME PKGNUM
2671
2672 Returns the total owed for this customer's specific package when using
2673 experimental package balances on all invoices with date earlier than
2674 TIME.  TIME is specified as a UNIX timestamp; see L<perlfunc/"time">).  Also
2675 see L<Time::Local> and L<Date::Parse> for conversion functions.
2676
2677 =cut
2678
2679 sub total_owed_date_pkgnum {
2680   my( $self, $time, $pkgnum ) = @_;
2681
2682   my $total_bill = 0;
2683   foreach my $cust_bill (
2684     grep { $_->_date <= $time }
2685       qsearch('cust_bill', { 'custnum' => $self->custnum, } )
2686   ) {
2687     $total_bill += $cust_bill->owed_pkgnum($pkgnum);
2688   }
2689   sprintf( "%.2f", $total_bill );
2690
2691 }
2692
2693 =item total_paid
2694
2695 Returns the total amount of all payments.
2696
2697 =cut
2698
2699 sub total_paid {
2700   my $self = shift;
2701   my $total = 0;
2702   $total += $_->paid foreach $self->cust_pay;
2703   sprintf( "%.2f", $total );
2704 }
2705
2706 =item total_unapplied_credits
2707
2708 Returns the total outstanding credit (see L<FS::cust_credit>) for this
2709 customer.  See L<FS::cust_credit/credited>.
2710
2711 =item total_credited
2712
2713 Old name for total_unapplied_credits.  Don't use.
2714
2715 =cut
2716
2717 sub total_credited {
2718   #carp "total_credited deprecated, use total_unapplied_credits";
2719   shift->total_unapplied_credits(@_);
2720 }
2721
2722 sub total_unapplied_credits {
2723   my $self = shift;
2724
2725   my $custnum = $self->custnum;
2726
2727   my $unapplied_sql = FS::cust_credit->unapplied_sql;
2728
2729   my $sql = "
2730     SELECT SUM($unapplied_sql) FROM cust_credit
2731       WHERE custnum = $custnum
2732   ";
2733
2734   sprintf( "%.2f", $self->scalar_sql($sql) || 0 );
2735
2736 }
2737
2738 =item total_unapplied_credits_pkgnum PKGNUM
2739
2740 Returns the total outstanding credit (see L<FS::cust_credit>) for this
2741 customer.  See L<FS::cust_credit/credited>.
2742
2743 =cut
2744
2745 sub total_unapplied_credits_pkgnum {
2746   my( $self, $pkgnum ) = @_;
2747   my $total_credit = 0;
2748   $total_credit += $_->credited foreach $self->cust_credit_pkgnum($pkgnum);
2749   sprintf( "%.2f", $total_credit );
2750 }
2751
2752
2753 =item total_unapplied_payments
2754
2755 Returns the total unapplied payments (see L<FS::cust_pay>) for this customer.
2756 See L<FS::cust_pay/unapplied>.
2757
2758 =cut
2759
2760 sub total_unapplied_payments {
2761   my $self = shift;
2762
2763   my $custnum = $self->custnum;
2764
2765   my $unapplied_sql = FS::cust_pay->unapplied_sql;
2766
2767   my $sql = "
2768     SELECT SUM($unapplied_sql) FROM cust_pay
2769       WHERE custnum = $custnum
2770   ";
2771
2772   sprintf( "%.2f", $self->scalar_sql($sql) || 0 );
2773
2774 }
2775
2776 =item total_unapplied_payments_pkgnum PKGNUM
2777
2778 Returns the total unapplied payments (see L<FS::cust_pay>) for this customer's
2779 specific package when using experimental package balances.  See
2780 L<FS::cust_pay/unapplied>.
2781
2782 =cut
2783
2784 sub total_unapplied_payments_pkgnum {
2785   my( $self, $pkgnum ) = @_;
2786   my $total_unapplied = 0;
2787   $total_unapplied += $_->unapplied foreach $self->cust_pay_pkgnum($pkgnum);
2788   sprintf( "%.2f", $total_unapplied );
2789 }
2790
2791
2792 =item total_unapplied_refunds
2793
2794 Returns the total unrefunded refunds (see L<FS::cust_refund>) for this
2795 customer.  See L<FS::cust_refund/unapplied>.
2796
2797 =cut
2798
2799 sub total_unapplied_refunds {
2800   my $self = shift;
2801   my $custnum = $self->custnum;
2802
2803   my $unapplied_sql = FS::cust_refund->unapplied_sql;
2804
2805   my $sql = "
2806     SELECT SUM($unapplied_sql) FROM cust_refund
2807       WHERE custnum = $custnum
2808   ";
2809
2810   sprintf( "%.2f", $self->scalar_sql($sql) || 0 );
2811
2812 }
2813
2814 =item balance
2815
2816 Returns the balance for this customer (total_owed plus total_unrefunded, minus
2817 total_unapplied_credits minus total_unapplied_payments).
2818
2819 =cut
2820
2821 sub balance {
2822   my $self = shift;
2823   $self->balance_date_range;
2824 }
2825
2826 =item balance_date TIME
2827
2828 Returns the balance for this customer, only considering invoices with date
2829 earlier than TIME (total_owed_date minus total_credited minus
2830 total_unapplied_payments).  TIME is specified as a UNIX timestamp; see
2831 L<perlfunc/"time">).  Also see L<Time::Local> and L<Date::Parse> for conversion
2832 functions.
2833
2834 =cut
2835
2836 sub balance_date {
2837   my $self = shift;
2838   $self->balance_date_range(shift);
2839 }
2840
2841 =item balance_date_range [ START_TIME [ END_TIME [ OPTION => VALUE ... ] ] ]
2842
2843 Returns the balance for this customer, optionally considering invoices with
2844 date earlier than START_TIME, and not later than END_TIME
2845 (total_owed_date minus total_unapplied_credits minus total_unapplied_payments).
2846
2847 Times are specified as SQL fragments or numeric
2848 UNIX timestamps; see L<perlfunc/"time">).  Also see L<Time::Local> and
2849 L<Date::Parse> for conversion functions.  The empty string can be passed
2850 to disable that time constraint completely.
2851
2852 Available options are:
2853
2854 =over 4
2855
2856 =item unapplied_date
2857
2858 set to true to disregard unapplied credits, payments and refunds outside the specified time period - by default the time period restriction only applies to invoices (useful for reporting, probably a bad idea for event triggering)
2859
2860 =back
2861
2862 =cut
2863
2864 sub balance_date_range {
2865   my $self = shift;
2866   my $sql = 'SELECT SUM('. $self->balance_date_sql(@_).
2867             ') FROM cust_main WHERE custnum='. $self->custnum;
2868   sprintf( '%.2f', $self->scalar_sql($sql) || 0 );
2869 }
2870
2871 =item balance_pkgnum PKGNUM
2872
2873 Returns the balance for this customer's specific package when using
2874 experimental package balances (total_owed plus total_unrefunded, minus
2875 total_unapplied_credits minus total_unapplied_payments)
2876
2877 =cut
2878
2879 sub balance_pkgnum {
2880   my( $self, $pkgnum ) = @_;
2881
2882   sprintf( "%.2f",
2883       $self->total_owed_pkgnum($pkgnum)
2884 # n/a - refunds aren't part of pkg-balances since they don't apply to invoices
2885 #    + $self->total_unapplied_refunds_pkgnum($pkgnum)
2886     - $self->total_unapplied_credits_pkgnum($pkgnum)
2887     - $self->total_unapplied_payments_pkgnum($pkgnum)
2888   );
2889 }
2890
2891 =item in_transit_payments
2892
2893 Returns the total of requests for payments for this customer pending in 
2894 batches in transit to the bank.  See L<FS::pay_batch> and L<FS::cust_pay_batch>
2895
2896 =cut
2897
2898 sub in_transit_payments {
2899   my $self = shift;
2900   my $in_transit_payments = 0;
2901   foreach my $pay_batch ( qsearch('pay_batch', {
2902     'status' => 'I',
2903   } ) ) {
2904     foreach my $cust_pay_batch ( qsearch('cust_pay_batch', {
2905       'batchnum' => $pay_batch->batchnum,
2906       'custnum' => $self->custnum,
2907     } ) ) {
2908       $in_transit_payments += $cust_pay_batch->amount;
2909     }
2910   }
2911   sprintf( "%.2f", $in_transit_payments );
2912 }
2913
2914 =item payment_info
2915
2916 Returns a hash of useful information for making a payment.
2917
2918 =over 4
2919
2920 =item balance
2921
2922 Current balance.
2923
2924 =item payby
2925
2926 'CARD' (credit card - automatic), 'DCRD' (credit card - on-demand),
2927 'CHEK' (electronic check - automatic), 'DCHK' (electronic check - on-demand),
2928 'LECB' (Phone bill billing), 'BILL' (billing), or 'COMP' (free).
2929
2930 =back
2931
2932 For credit card transactions:
2933
2934 =over 4
2935
2936 =item card_type 1
2937
2938 =item payname
2939
2940 Exact name on card
2941
2942 =back
2943
2944 For electronic check transactions:
2945
2946 =over 4
2947
2948 =item stateid_state
2949
2950 =back
2951
2952 =cut
2953
2954 sub payment_info {
2955   my $self = shift;
2956
2957   my %return = ();
2958
2959   $return{balance} = $self->balance;
2960
2961   $return{payname} = $self->payname
2962                      || ( $self->first. ' '. $self->get('last') );
2963
2964   $return{$_} = $self->get($_) for qw(address1 address2 city state zip);
2965
2966   $return{payby} = $self->payby;
2967   $return{stateid_state} = $self->stateid_state;
2968
2969   if ( $self->payby =~ /^(CARD|DCRD)$/ ) {
2970     $return{card_type} = cardtype($self->payinfo);
2971     $return{payinfo} = $self->paymask;
2972
2973     @return{'month', 'year'} = $self->paydate_monthyear;
2974
2975   }
2976
2977   if ( $self->payby =~ /^(CHEK|DCHK)$/ ) {
2978     my ($payinfo1, $payinfo2) = split '@', $self->paymask;
2979     $return{payinfo1} = $payinfo1;
2980     $return{payinfo2} = $payinfo2;
2981     $return{paytype}  = $self->paytype;
2982     $return{paystate} = $self->paystate;
2983
2984   }
2985
2986   #doubleclick protection
2987   my $_date = time;
2988   $return{paybatch} = "webui-MyAccount-$_date-$$-". rand() * 2**32;
2989
2990   %return;
2991
2992 }
2993
2994 =item paydate_monthyear
2995
2996 Returns a two-element list consisting of the month and year of this customer's
2997 paydate (credit card expiration date for CARD customers)
2998
2999 =cut
3000
3001 sub paydate_monthyear {
3002   my $self = shift;
3003   if ( $self->paydate  =~ /^(\d{4})-(\d{1,2})-\d{1,2}$/ ) { #Pg date format
3004     ( $2, $1 );
3005   } elsif ( $self->paydate =~ /^(\d{1,2})-(\d{1,2}-)?(\d{4}$)/ ) {
3006     ( $1, $3 );
3007   } else {
3008     ('', '');
3009   }
3010 }
3011
3012 =item paydate_epoch
3013
3014 Returns the exact time in seconds corresponding to the payment method 
3015 expiration date.  For CARD/DCRD customers this is the end of the month;
3016 for others (COMP is the only other payby that uses paydate) it's the start.
3017 Returns 0 if the paydate is empty or set to the far future.
3018
3019 =cut
3020
3021 sub paydate_epoch {
3022   my $self = shift;
3023   my ($month, $year) = $self->paydate_monthyear;
3024   return 0 if !$year or $year >= 2037;
3025   if ( $self->payby eq 'CARD' or $self->payby eq 'DCRD' ) {
3026     $month++;
3027     if ( $month == 13 ) {
3028       $month = 1;
3029       $year++;
3030     }
3031     return timelocal(0,0,0,1,$month-1,$year) - 1;
3032   }
3033   else {
3034     return timelocal(0,0,0,1,$month-1,$year);
3035   }
3036 }
3037
3038 =item paydate_epoch_sql
3039
3040 Class method.  Returns an SQL expression to obtain the payment expiration date
3041 as a number of seconds.
3042
3043 =cut
3044
3045 # Special expiration date behavior for non-CARD/DCRD customers has been 
3046 # carefully preserved.  Do we really use that?
3047 sub paydate_epoch_sql {
3048   my $class = shift;
3049   my $table = shift || 'cust_main';
3050   my ($case1, $case2);
3051   if ( driver_name eq 'Pg' ) {
3052     $case1 = "EXTRACT( EPOCH FROM CAST( $table.paydate AS TIMESTAMP ) + INTERVAL '1 month') - 1";
3053     $case2 = "EXTRACT( EPOCH FROM CAST( $table.paydate AS TIMESTAMP ) )";
3054   }
3055   elsif ( lc(driver_name) eq 'mysql' ) {
3056     $case1 = "UNIX_TIMESTAMP( DATE_ADD( CAST( $table.paydate AS DATETIME ), INTERVAL 1 month ) ) - 1";
3057     $case2 = "UNIX_TIMESTAMP( CAST( $table.paydate AS DATETIME ) )";
3058   }
3059   else { return '' }
3060   return "CASE WHEN $table.payby IN('CARD','DCRD') 
3061   THEN ($case1)
3062   ELSE ($case2)
3063   END"
3064 }
3065
3066 =item tax_exemption TAXNAME
3067
3068 =cut
3069
3070 sub tax_exemption {
3071   my( $self, $taxname ) = @_;
3072
3073   qsearchs( 'cust_main_exemption', { 'custnum' => $self->custnum,
3074                                      'taxname' => $taxname,
3075                                    },
3076           );
3077 }
3078
3079 =item cust_main_exemption
3080
3081 =cut
3082
3083 sub cust_main_exemption {
3084   my $self = shift;
3085   qsearch( 'cust_main_exemption', { 'custnum' => $self->custnum } );
3086 }
3087
3088 =item invoicing_list [ ARRAYREF ]
3089
3090 If an arguement is given, sets these email addresses as invoice recipients
3091 (see L<FS::cust_main_invoice>).  Errors are not fatal and are not reported
3092 (except as warnings), so use check_invoicing_list first.
3093
3094 Returns a list of email addresses (with svcnum entries expanded).
3095
3096 Note: You can clear the invoicing list by passing an empty ARRAYREF.  You can
3097 check it without disturbing anything by passing nothing.
3098
3099 This interface may change in the future.
3100
3101 =cut
3102
3103 sub invoicing_list {
3104   my( $self, $arrayref ) = @_;
3105
3106   if ( $arrayref ) {
3107     my @cust_main_invoice;
3108     if ( $self->custnum ) {
3109       @cust_main_invoice = 
3110         qsearch( 'cust_main_invoice', { 'custnum' => $self->custnum } );
3111     } else {
3112       @cust_main_invoice = ();
3113     }
3114     foreach my $cust_main_invoice ( @cust_main_invoice ) {
3115       #warn $cust_main_invoice->destnum;
3116       unless ( grep { $cust_main_invoice->address eq $_ } @{$arrayref} ) {
3117         #warn $cust_main_invoice->destnum;
3118         my $error = $cust_main_invoice->delete;
3119         warn $error if $error;
3120       }
3121     }
3122     if ( $self->custnum ) {
3123       @cust_main_invoice = 
3124         qsearch( 'cust_main_invoice', { 'custnum' => $self->custnum } );
3125     } else {
3126       @cust_main_invoice = ();
3127     }
3128     my %seen = map { $_->address => 1 } @cust_main_invoice;
3129     foreach my $address ( @{$arrayref} ) {
3130       next if exists $seen{$address} && $seen{$address};
3131       $seen{$address} = 1;
3132       my $cust_main_invoice = new FS::cust_main_invoice ( {
3133         'custnum' => $self->custnum,
3134         'dest'    => $address,
3135       } );
3136       my $error = $cust_main_invoice->insert;
3137       warn $error if $error;
3138     }
3139   }
3140   
3141   if ( $self->custnum ) {
3142     map { $_->address }
3143       qsearch( 'cust_main_invoice', { 'custnum' => $self->custnum } );
3144   } else {
3145     ();
3146   }
3147
3148 }
3149
3150 =item check_invoicing_list ARRAYREF
3151
3152 Checks these arguements as valid input for the invoicing_list method.  If there
3153 is an error, returns the error, otherwise returns false.
3154
3155 =cut
3156
3157 sub check_invoicing_list {
3158   my( $self, $arrayref ) = @_;
3159
3160   foreach my $address ( @$arrayref ) {
3161
3162     if ($address eq 'FAX' and $self->getfield('fax') eq '') {
3163       return 'Can\'t add FAX invoice destination with a blank FAX number.';
3164     }
3165
3166     my $cust_main_invoice = new FS::cust_main_invoice ( {
3167       'custnum' => $self->custnum,
3168       'dest'    => $address,
3169     } );
3170     my $error = $self->custnum
3171                 ? $cust_main_invoice->check
3172                 : $cust_main_invoice->checkdest
3173     ;
3174     return $error if $error;
3175
3176   }
3177
3178   return "Email address required"
3179     if $conf->exists('cust_main-require_invoicing_list_email')
3180     && ! grep { $_ !~ /^([A-Z]+)$/ } @$arrayref;
3181
3182   '';
3183 }
3184
3185 =item set_default_invoicing_list
3186
3187 Sets the invoicing list to all accounts associated with this customer,
3188 overwriting any previous invoicing list.
3189
3190 =cut
3191
3192 sub set_default_invoicing_list {
3193   my $self = shift;
3194   $self->invoicing_list($self->all_emails);
3195 }
3196
3197 =item all_emails
3198
3199 Returns the email addresses of all accounts provisioned for this customer.
3200
3201 =cut
3202
3203 sub all_emails {
3204   my $self = shift;
3205   my %list;
3206   foreach my $cust_pkg ( $self->all_pkgs ) {
3207     my @cust_svc = qsearch('cust_svc', { 'pkgnum' => $cust_pkg->pkgnum } );
3208     my @svc_acct =
3209       map { qsearchs('svc_acct', { 'svcnum' => $_->svcnum } ) }
3210         grep { qsearchs('svc_acct', { 'svcnum' => $_->svcnum } ) }
3211           @cust_svc;
3212     $list{$_}=1 foreach map { $_->email } @svc_acct;
3213   }
3214   keys %list;
3215 }
3216
3217 =item invoicing_list_addpost
3218
3219 Adds postal invoicing to this customer.  If this customer is already configured
3220 to receive postal invoices, does nothing.
3221
3222 =cut
3223
3224 sub invoicing_list_addpost {
3225   my $self = shift;
3226   return if grep { $_ eq 'POST' } $self->invoicing_list;
3227   my @invoicing_list = $self->invoicing_list;
3228   push @invoicing_list, 'POST';
3229   $self->invoicing_list(\@invoicing_list);
3230 }
3231
3232 =item invoicing_list_emailonly
3233
3234 Returns the list of email invoice recipients (invoicing_list without non-email
3235 destinations such as POST and FAX).
3236
3237 =cut
3238
3239 sub invoicing_list_emailonly {
3240   my $self = shift;
3241   warn "$me invoicing_list_emailonly called"
3242     if $DEBUG;
3243   grep { $_ !~ /^([A-Z]+)$/ } $self->invoicing_list;
3244 }
3245
3246 =item invoicing_list_emailonly_scalar
3247
3248 Returns the list of email invoice recipients (invoicing_list without non-email
3249 destinations such as POST and FAX) as a comma-separated scalar.
3250
3251 =cut
3252
3253 sub invoicing_list_emailonly_scalar {
3254   my $self = shift;
3255   warn "$me invoicing_list_emailonly_scalar called"
3256     if $DEBUG;
3257   join(', ', $self->invoicing_list_emailonly);
3258 }
3259
3260 =item referral_custnum_cust_main
3261
3262 Returns the customer who referred this customer (or the empty string, if
3263 this customer was not referred).
3264
3265 Note the difference with referral_cust_main method: This method,
3266 referral_custnum_cust_main returns the single customer (if any) who referred
3267 this customer, while referral_cust_main returns an array of customers referred
3268 BY this customer.
3269
3270 =cut
3271
3272 sub referral_custnum_cust_main {
3273   my $self = shift;
3274   return '' unless $self->referral_custnum;
3275   qsearchs('cust_main', { 'custnum' => $self->referral_custnum } );
3276 }
3277
3278 =item referral_cust_main [ DEPTH [ EXCLUDE_HASHREF ] ]
3279
3280 Returns an array of customers referred by this customer (referral_custnum set
3281 to this custnum).  If DEPTH is given, recurses up to the given depth, returning
3282 customers referred by customers referred by this customer and so on, inclusive.
3283 The default behavior is DEPTH 1 (no recursion).
3284
3285 Note the difference with referral_custnum_cust_main method: This method,
3286 referral_cust_main, returns an array of customers referred BY this customer,
3287 while referral_custnum_cust_main returns the single customer (if any) who
3288 referred this customer.
3289
3290 =cut
3291
3292 sub referral_cust_main {
3293   my $self = shift;
3294   my $depth = @_ ? shift : 1;
3295   my $exclude = @_ ? shift : {};
3296
3297   my @cust_main =
3298     map { $exclude->{$_->custnum}++; $_; }
3299       grep { ! $exclude->{ $_->custnum } }
3300         qsearch( 'cust_main', { 'referral_custnum' => $self->custnum } );
3301
3302   if ( $depth > 1 ) {
3303     push @cust_main,
3304       map { $_->referral_cust_main($depth-1, $exclude) }
3305         @cust_main;
3306   }
3307
3308   @cust_main;
3309 }
3310
3311 =item referral_cust_main_ncancelled
3312
3313 Same as referral_cust_main, except only returns customers with uncancelled
3314 packages.
3315
3316 =cut
3317
3318 sub referral_cust_main_ncancelled {
3319   my $self = shift;
3320   grep { scalar($_->ncancelled_pkgs) } $self->referral_cust_main;
3321 }
3322
3323 =item referral_cust_pkg [ DEPTH ]
3324
3325 Like referral_cust_main, except returns a flat list of all unsuspended (and
3326 uncancelled) packages for each customer.  The number of items in this list may
3327 be useful for commission calculations (perhaps after a C<grep { my $pkgpart = $_->pkgpart; grep { $_ == $pkgpart } @commission_worthy_pkgparts> } $cust_main-> ).
3328
3329 =cut
3330
3331 sub referral_cust_pkg {
3332   my $self = shift;
3333   my $depth = @_ ? shift : 1;
3334
3335   map { $_->unsuspended_pkgs }
3336     grep { $_->unsuspended_pkgs }
3337       $self->referral_cust_main($depth);
3338 }
3339
3340 =item referring_cust_main
3341
3342 Returns the single cust_main record for the customer who referred this customer
3343 (referral_custnum), or false.
3344
3345 =cut
3346
3347 sub referring_cust_main {
3348   my $self = shift;
3349   return '' unless $self->referral_custnum;
3350   qsearchs('cust_main', { 'custnum' => $self->referral_custnum } );
3351 }
3352
3353 =item credit AMOUNT, REASON [ , OPTION => VALUE ... ]
3354
3355 Applies a credit to this customer.  If there is an error, returns the error,
3356 otherwise returns false.
3357
3358 REASON can be a text string, an FS::reason object, or a scalar reference to
3359 a reasonnum.  If a text string, it will be automatically inserted as a new
3360 reason, and a 'reason_type' option must be passed to indicate the
3361 FS::reason_type for the new reason.
3362
3363 An I<addlinfo> option may be passed to set the credit's I<addlinfo> field.
3364
3365 Any other options are passed to FS::cust_credit::insert.
3366
3367 =cut
3368
3369 sub credit {
3370   my( $self, $amount, $reason, %options ) = @_;
3371
3372   my $cust_credit = new FS::cust_credit {
3373     'custnum' => $self->custnum,
3374     'amount'  => $amount,
3375   };
3376
3377   if ( ref($reason) ) {
3378
3379     if ( ref($reason) eq 'SCALAR' ) {
3380       $cust_credit->reasonnum( $$reason );
3381     } else {
3382       $cust_credit->reasonnum( $reason->reasonnum );
3383     }
3384
3385   } else {
3386     $cust_credit->set('reason', $reason)
3387   }
3388
3389   for (qw( addlinfo eventnum )) {
3390     $cust_credit->$_( delete $options{$_} )
3391       if exists($options{$_});
3392   }
3393
3394   $cust_credit->insert(%options);
3395
3396 }
3397
3398 =item charge HASHREF || AMOUNT [ PKG [ COMMENT [ TAXCLASS ] ] ]
3399
3400 Creates a one-time charge for this customer.  If there is an error, returns
3401 the error, otherwise returns false.
3402
3403 New-style, with a hashref of options:
3404
3405   my $error = $cust_main->charge(
3406                                   {
3407                                     'amount'     => 54.32,
3408                                     'quantity'   => 1,
3409                                     'start_date' => str2time('7/4/2009'),
3410                                     'pkg'        => 'Description',
3411                                     'comment'    => 'Comment',
3412                                     'additional' => [], #extra invoice detail
3413                                     'classnum'   => 1,  #pkg_class
3414
3415                                     'setuptax'   => '', # or 'Y' for tax exempt
3416
3417                                     #internal taxation
3418                                     'taxclass'   => 'Tax class',
3419
3420                                     #vendor taxation
3421                                     'taxproduct' => 2,  #part_pkg_taxproduct
3422                                     'override'   => {}, #XXX describe
3423
3424                                     #will be filled in with the new object
3425                                     'cust_pkg_ref' => \$cust_pkg,
3426
3427                                     #generate an invoice immediately
3428                                     'bill_now' => 0,
3429                                     'invoice_terms' => '', #with these terms
3430                                   }
3431                                 );
3432
3433 Old-style:
3434
3435   my $error = $cust_main->charge( 54.32, 'Description', 'Comment', 'Tax class' );
3436
3437 =cut
3438
3439 sub charge {
3440   my $self = shift;
3441   my ( $amount, $quantity, $start_date, $classnum );
3442   my ( $pkg, $comment, $additional );
3443   my ( $setuptax, $taxclass );   #internal taxes
3444   my ( $taxproduct, $override ); #vendor (CCH) taxes
3445   my $no_auto = '';
3446   my $cust_pkg_ref = '';
3447   my ( $bill_now, $invoice_terms ) = ( 0, '' );
3448   if ( ref( $_[0] ) ) {
3449     $amount     = $_[0]->{amount};
3450     $quantity   = exists($_[0]->{quantity}) ? $_[0]->{quantity} : 1;
3451     $start_date = exists($_[0]->{start_date}) ? $_[0]->{start_date} : '';
3452     $no_auto    = exists($_[0]->{no_auto}) ? $_[0]->{no_auto} : '';
3453     $pkg        = exists($_[0]->{pkg}) ? $_[0]->{pkg} : 'One-time charge';
3454     $comment    = exists($_[0]->{comment}) ? $_[0]->{comment}
3455                                            : '$'. sprintf("%.2f",$amount);
3456     $setuptax   = exists($_[0]->{setuptax}) ? $_[0]->{setuptax} : '';
3457     $taxclass   = exists($_[0]->{taxclass}) ? $_[0]->{taxclass} : '';
3458     $classnum   = exists($_[0]->{classnum}) ? $_[0]->{classnum} : '';
3459     $additional = $_[0]->{additional} || [];
3460     $taxproduct = $_[0]->{taxproductnum};
3461     $override   = { '' => $_[0]->{tax_override} };
3462     $cust_pkg_ref = exists($_[0]->{cust_pkg_ref}) ? $_[0]->{cust_pkg_ref} : '';
3463     $bill_now = exists($_[0]->{bill_now}) ? $_[0]->{bill_now} : '';
3464     $invoice_terms = exists($_[0]->{invoice_terms}) ? $_[0]->{invoice_terms} : '';
3465   } else {
3466     $amount     = shift;
3467     $quantity   = 1;
3468     $start_date = '';
3469     $pkg        = @_ ? shift : 'One-time charge';
3470     $comment    = @_ ? shift : '$'. sprintf("%.2f",$amount);
3471     $setuptax   = '';
3472     $taxclass   = @_ ? shift : '';
3473     $additional = [];
3474   }
3475
3476   local $SIG{HUP} = 'IGNORE';
3477   local $SIG{INT} = 'IGNORE';
3478   local $SIG{QUIT} = 'IGNORE';
3479   local $SIG{TERM} = 'IGNORE';
3480   local $SIG{TSTP} = 'IGNORE';
3481   local $SIG{PIPE} = 'IGNORE';
3482
3483   my $oldAutoCommit = $FS::UID::AutoCommit;
3484   local $FS::UID::AutoCommit = 0;
3485   my $dbh = dbh;
3486
3487   my $part_pkg = new FS::part_pkg ( {
3488     'pkg'           => $pkg,
3489     'comment'       => $comment,
3490     'plan'          => 'flat',
3491     'freq'          => 0,
3492     'disabled'      => 'Y',
3493     'classnum'      => ( $classnum ? $classnum : '' ),
3494     'setuptax'      => $setuptax,
3495     'taxclass'      => $taxclass,
3496     'taxproductnum' => $taxproduct,
3497   } );
3498
3499   my %options = ( ( map { ("additional_info$_" => $additional->[$_] ) }
3500                         ( 0 .. @$additional - 1 )
3501                   ),
3502                   'additional_count' => scalar(@$additional),
3503                   'setup_fee' => $amount,
3504                 );
3505
3506   my $error = $part_pkg->insert( options       => \%options,
3507                                  tax_overrides => $override,
3508                                );
3509   if ( $error ) {
3510     $dbh->rollback if $oldAutoCommit;
3511     return $error;
3512   }
3513
3514   my $pkgpart = $part_pkg->pkgpart;
3515   my %type_pkgs = ( 'typenum' => $self->agent->typenum, 'pkgpart' => $pkgpart );
3516   unless ( qsearchs('type_pkgs', \%type_pkgs ) ) {
3517     my $type_pkgs = new FS::type_pkgs \%type_pkgs;
3518     $error = $type_pkgs->insert;
3519     if ( $error ) {
3520       $dbh->rollback if $oldAutoCommit;
3521       return $error;
3522     }
3523   }
3524
3525   my $cust_pkg = new FS::cust_pkg ( {
3526     'custnum'    => $self->custnum,
3527     'pkgpart'    => $pkgpart,
3528     'quantity'   => $quantity,
3529     'start_date' => $start_date,
3530     'no_auto'    => $no_auto,
3531   } );
3532
3533   $error = $cust_pkg->insert;
3534   if ( $error ) {
3535     $dbh->rollback if $oldAutoCommit;
3536     return $error;
3537   } elsif ( $cust_pkg_ref ) {
3538     ${$cust_pkg_ref} = $cust_pkg;
3539   }
3540
3541   if ( $bill_now ) {
3542     my $error = $self->bill( 'invoice_terms' => $invoice_terms,
3543                              'pkg_list'      => [ $cust_pkg ],
3544                            );
3545     if ( $error ) {
3546       $dbh->rollback if $oldAutoCommit;
3547       return $error;
3548     }   
3549   }
3550
3551   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
3552   return '';
3553
3554 }
3555
3556 #=item charge_postal_fee
3557 #
3558 #Applies a one time charge this customer.  If there is an error,
3559 #returns the error, returns the cust_pkg charge object or false
3560 #if there was no charge.
3561 #
3562 #=cut
3563 #
3564 # This should be a customer event.  For that to work requires that bill
3565 # also be a customer event.
3566
3567 sub charge_postal_fee {
3568   my $self = shift;
3569
3570   my $pkgpart = $conf->config('postal_invoice-fee_pkgpart', $self->agentnum);
3571   return '' unless ($pkgpart && grep { $_ eq 'POST' } $self->invoicing_list);
3572
3573   my $cust_pkg = new FS::cust_pkg ( {
3574     'custnum'  => $self->custnum,
3575     'pkgpart'  => $pkgpart,
3576     'quantity' => 1,
3577   } );
3578
3579   my $error = $cust_pkg->insert;
3580   $error ? $error : $cust_pkg;
3581 }
3582
3583 =item cust_bill [ OPTION => VALUE... | EXTRA_QSEARCH_PARAMS_HASHREF ]
3584
3585 Returns all the invoices (see L<FS::cust_bill>) for this customer.
3586
3587 Optionally, a list or hashref of additional arguments to the qsearch call can
3588 be passed.
3589
3590 =cut
3591
3592 sub cust_bill {
3593   my $self = shift;
3594   my $opt = ref($_[0]) ? shift : { @_ };
3595
3596   #return $self->num_cust_bill unless wantarray || keys %$opt;
3597
3598   $opt->{'table'} = 'cust_bill';
3599   $opt->{'hashref'} ||= {}; #i guess it would autovivify anyway...
3600   $opt->{'hashref'}{'custnum'} = $self->custnum;
3601   $opt->{'order_by'} ||= 'ORDER BY _date ASC';
3602
3603   map { $_ } #behavior of sort undefined in scalar context
3604     sort { $a->_date <=> $b->_date }
3605       qsearch($opt);
3606 }
3607
3608 =item open_cust_bill
3609
3610 Returns all the open (owed > 0) invoices (see L<FS::cust_bill>) for this
3611 customer.
3612
3613 =cut
3614
3615 sub open_cust_bill {
3616   my $self = shift;
3617
3618   $self->cust_bill(
3619     'extra_sql' => ' AND '. FS::cust_bill->owed_sql. ' > 0',
3620     #@_
3621   );
3622
3623 }
3624
3625 =item legacy_cust_bill [ OPTION => VALUE... | EXTRA_QSEARCH_PARAMS_HASHREF ]
3626
3627 Returns all the legacy invoices (see L<FS::legacy_cust_bill>) for this customer.
3628
3629 =cut
3630
3631 sub legacy_cust_bill {
3632   my $self = shift;
3633
3634   #return $self->num_legacy_cust_bill unless wantarray;
3635
3636   map { $_ } #behavior of sort undefined in scalar context
3637     sort { $a->_date <=> $b->_date }
3638       qsearch({ 'table'    => 'legacy_cust_bill',
3639                 'hashref'  => { 'custnum' => $self->custnum, },
3640                 'order_by' => 'ORDER BY _date ASC',
3641              });
3642 }
3643
3644 =item cust_statement [ OPTION => VALUE... | EXTRA_QSEARCH_PARAMS_HASHREF ]
3645
3646 Returns all the statements (see L<FS::cust_statement>) for this customer.
3647
3648 Optionally, a list or hashref of additional arguments to the qsearch call can
3649 be passed.
3650
3651 =cut
3652
3653 sub cust_statement {
3654   my $self = shift;
3655   my $opt = ref($_[0]) ? shift : { @_ };
3656
3657   #return $self->num_cust_statement unless wantarray || keys %$opt;
3658
3659   $opt->{'table'} = 'cust_statement';
3660   $opt->{'hashref'} ||= {}; #i guess it would autovivify anyway...
3661   $opt->{'hashref'}{'custnum'} = $self->custnum;
3662   $opt->{'order_by'} ||= 'ORDER BY _date ASC';
3663
3664   map { $_ } #behavior of sort undefined in scalar context
3665     sort { $a->_date <=> $b->_date }
3666       qsearch($opt);
3667 }
3668
3669 =item cust_credit
3670
3671 Returns all the credits (see L<FS::cust_credit>) for this customer.
3672
3673 =cut
3674
3675 sub cust_credit {
3676   my $self = shift;
3677   map { $_ } #return $self->num_cust_credit unless wantarray;
3678   sort { $a->_date <=> $b->_date }
3679     qsearch( 'cust_credit', { 'custnum' => $self->custnum } )
3680 }
3681
3682 =item cust_credit_pkgnum
3683
3684 Returns all the credits (see L<FS::cust_credit>) for this customer's specific
3685 package when using experimental package balances.
3686
3687 =cut
3688
3689 sub cust_credit_pkgnum {
3690   my( $self, $pkgnum ) = @_;
3691   map { $_ } #return $self->num_cust_credit_pkgnum($pkgnum) unless wantarray;
3692   sort { $a->_date <=> $b->_date }
3693     qsearch( 'cust_credit', { 'custnum' => $self->custnum,
3694                               'pkgnum'  => $pkgnum,
3695                             }
3696     );
3697 }
3698
3699 =item cust_pay
3700
3701 Returns all the payments (see L<FS::cust_pay>) for this customer.
3702
3703 =cut
3704
3705 sub cust_pay {
3706   my $self = shift;
3707   return $self->num_cust_pay unless wantarray;
3708   sort { $a->_date <=> $b->_date }
3709     qsearch( 'cust_pay', { 'custnum' => $self->custnum } )
3710 }
3711
3712 =item num_cust_pay
3713
3714 Returns the number of payments (see L<FS::cust_pay>) for this customer.  Also
3715 called automatically when the cust_pay method is used in a scalar context.
3716
3717 =cut
3718
3719 sub num_cust_pay {
3720   my $self = shift;
3721   my $sql = "SELECT COUNT(*) FROM cust_pay WHERE custnum = ?";
3722   my $sth = dbh->prepare($sql) or die dbh->errstr;
3723   $sth->execute($self->custnum) or die $sth->errstr;
3724   $sth->fetchrow_arrayref->[0];
3725 }
3726
3727 =item cust_pay_pkgnum
3728
3729 Returns all the payments (see L<FS::cust_pay>) for this customer's specific
3730 package when using experimental package balances.
3731
3732 =cut
3733
3734 sub cust_pay_pkgnum {
3735   my( $self, $pkgnum ) = @_;
3736   map { $_ } #return $self->num_cust_pay_pkgnum($pkgnum) unless wantarray;
3737   sort { $a->_date <=> $b->_date }
3738     qsearch( 'cust_pay', { 'custnum' => $self->custnum,
3739                            'pkgnum'  => $pkgnum,
3740                          }
3741     );
3742 }
3743
3744 =item cust_pay_void
3745
3746 Returns all voided payments (see L<FS::cust_pay_void>) for this customer.
3747
3748 =cut
3749
3750 sub cust_pay_void {
3751   my $self = shift;
3752   map { $_ } #return $self->num_cust_pay_void unless wantarray;
3753   sort { $a->_date <=> $b->_date }
3754     qsearch( 'cust_pay_void', { 'custnum' => $self->custnum } )
3755 }
3756
3757 =item cust_pay_batch [ OPTION => VALUE... | EXTRA_QSEARCH_PARAMS_HASHREF ]
3758
3759 Returns all batched payments (see L<FS::cust_pay_void>) for this customer.
3760
3761 Optionally, a list or hashref of additional arguments to the qsearch call can
3762 be passed.
3763
3764 =cut
3765
3766 sub cust_pay_batch {
3767   my $self = shift;
3768   my $opt = ref($_[0]) ? shift : { @_ };
3769
3770   #return $self->num_cust_statement unless wantarray || keys %$opt;
3771
3772   $opt->{'table'} = 'cust_pay_batch';
3773   $opt->{'hashref'} ||= {}; #i guess it would autovivify anyway...
3774   $opt->{'hashref'}{'custnum'} = $self->custnum;
3775   $opt->{'order_by'} ||= 'ORDER BY paybatchnum ASC';
3776
3777   map { $_ } #behavior of sort undefined in scalar context
3778     sort { $a->paybatchnum <=> $b->paybatchnum }
3779       qsearch($opt);
3780 }
3781
3782 =item cust_pay_pending
3783
3784 Returns all pending payments (see L<FS::cust_pay_pending>) for this customer
3785 (without status "done").
3786
3787 =cut
3788
3789 sub cust_pay_pending {
3790   my $self = shift;
3791   return $self->num_cust_pay_pending unless wantarray;
3792   sort { $a->_date <=> $b->_date }
3793     qsearch( 'cust_pay_pending', {
3794                                    'custnum' => $self->custnum,
3795                                    'status'  => { op=>'!=', value=>'done' },
3796                                  },
3797            );
3798 }
3799
3800 =item cust_pay_pending_attempt
3801
3802 Returns all payment attempts / declined payments for this customer, as pending
3803 payments objects (see L<FS::cust_pay_pending>), with status "done" but without
3804 a corresponding payment (see L<FS::cust_pay>).
3805
3806 =cut
3807
3808 sub cust_pay_pending_attempt {
3809   my $self = shift;
3810   return $self->num_cust_pay_pending_attempt unless wantarray;
3811   sort { $a->_date <=> $b->_date }
3812     qsearch( 'cust_pay_pending', {
3813                                    'custnum' => $self->custnum,
3814                                    'status'  => 'done',
3815                                    'paynum'  => '',
3816                                  },
3817            );
3818 }
3819
3820 =item num_cust_pay_pending
3821
3822 Returns the number of pending payments (see L<FS::cust_pay_pending>) for this
3823 customer (without status "done").  Also called automatically when the
3824 cust_pay_pending method is used in a scalar context.
3825
3826 =cut
3827
3828 sub num_cust_pay_pending {
3829   my $self = shift;
3830   $self->scalar_sql(
3831     " SELECT COUNT(*) FROM cust_pay_pending ".
3832       " WHERE custnum = ? AND status != 'done' ",
3833     $self->custnum
3834   );
3835 }
3836
3837 =item num_cust_pay_pending_attempt
3838
3839 Returns the number of pending payments (see L<FS::cust_pay_pending>) for this
3840 customer, with status "done" but without a corresp.  Also called automatically when the
3841 cust_pay_pending method is used in a scalar context.
3842
3843 =cut
3844
3845 sub num_cust_pay_pending_attempt {
3846   my $self = shift;
3847   $self->scalar_sql(
3848     " SELECT COUNT(*) FROM cust_pay_pending ".
3849       " WHERE custnum = ? AND status = 'done' AND paynum IS NULL",
3850     $self->custnum
3851   );
3852 }
3853
3854 =item cust_refund
3855
3856 Returns all the refunds (see L<FS::cust_refund>) for this customer.
3857
3858 =cut
3859
3860 sub cust_refund {
3861   my $self = shift;
3862   map { $_ } #return $self->num_cust_refund unless wantarray;
3863   sort { $a->_date <=> $b->_date }
3864     qsearch( 'cust_refund', { 'custnum' => $self->custnum } )
3865 }
3866
3867 =item display_custnum
3868
3869 Returns the displayed customer number for this customer: agent_custid if
3870 cust_main-default_agent_custid is set and it has a value, custnum otherwise.
3871
3872 =cut
3873
3874 sub display_custnum {
3875   my $self = shift;
3876   if ( $conf->exists('cust_main-default_agent_custid') && $self->agent_custid ){
3877     return $self->agent_custid;
3878   } elsif ( $conf->config('cust_main-custnum-display_prefix') ) {
3879     return $conf->config('cust_main-custnum-display_prefix').
3880            sprintf('%08d', $self->custnum)
3881   } else {
3882     return $self->custnum;
3883   }
3884 }
3885
3886 =item name
3887
3888 Returns a name string for this customer, either "Company (Last, First)" or
3889 "Last, First".
3890
3891 =cut
3892
3893 sub name {
3894   my $self = shift;
3895   my $name = $self->contact;
3896   $name = $self->company. " ($name)" if $self->company;
3897   $name;
3898 }
3899
3900 =item ship_name
3901
3902 Returns a name string for this (service/shipping) contact, either
3903 "Company (Last, First)" or "Last, First".
3904
3905 =cut
3906
3907 sub ship_name {
3908   my $self = shift;
3909   if ( $self->get('ship_last') ) { 
3910     my $name = $self->ship_contact;
3911     $name = $self->ship_company. " ($name)" if $self->ship_company;
3912     $name;
3913   } else {
3914     $self->name;
3915   }
3916 }
3917
3918 =item name_short
3919
3920 Returns a name string for this customer, either "Company" or "First Last".
3921
3922 =cut
3923
3924 sub name_short {
3925   my $self = shift;
3926   $self->company !~ /^\s*$/ ? $self->company : $self->contact_firstlast;
3927 }
3928
3929 =item ship_name_short
3930
3931 Returns a name string for this (service/shipping) contact, either "Company"
3932 or "First Last".
3933
3934 =cut
3935
3936 sub ship_name_short {
3937   my $self = shift;
3938   if ( $self->get('ship_last') ) { 
3939     $self->ship_company !~ /^\s*$/
3940       ? $self->ship_company
3941       : $self->ship_contact_firstlast;
3942   } else {
3943     $self->name_company_or_firstlast;
3944   }
3945 }
3946
3947 =item contact
3948
3949 Returns this customer's full (billing) contact name only, "Last, First"
3950
3951 =cut
3952
3953 sub contact {
3954   my $self = shift;
3955   $self->get('last'). ', '. $self->first;
3956 }
3957
3958 =item ship_contact
3959
3960 Returns this customer's full (shipping) contact name only, "Last, First"
3961
3962 =cut
3963
3964 sub ship_contact {
3965   my $self = shift;
3966   $self->get('ship_last')
3967     ? $self->get('ship_last'). ', '. $self->ship_first
3968     : $self->contact;
3969 }
3970
3971 =item contact_firstlast
3972
3973 Returns this customers full (billing) contact name only, "First Last".
3974
3975 =cut
3976
3977 sub contact_firstlast {
3978   my $self = shift;
3979   $self->first. ' '. $self->get('last');
3980 }
3981
3982 =item ship_contact_firstlast
3983
3984 Returns this customer's full (shipping) contact name only, "First Last".
3985
3986 =cut
3987
3988 sub ship_contact_firstlast {
3989   my $self = shift;
3990   $self->get('ship_last')
3991     ? $self->first. ' '. $self->get('ship_last')
3992     : $self->contact_firstlast;
3993 }
3994
3995 =item country_full
3996
3997 Returns this customer's full country name
3998
3999 =cut
4000
4001 sub country_full {
4002   my $self = shift;
4003   code2country($self->country);
4004 }
4005
4006 =item geocode DATA_VENDOR
4007
4008 Returns a value for the customer location as encoded by DATA_VENDOR.
4009 Currently this only makes sense for "CCH" as DATA_VENDOR.
4010
4011 =cut
4012
4013 =item cust_status
4014
4015 =item status
4016
4017 Returns a status string for this customer, currently:
4018
4019 =over 4
4020
4021 =item prospect - No packages have ever been ordered
4022
4023 =item ordered - Recurring packages all are new (not yet billed).
4024
4025 =item active - One or more recurring packages is active
4026
4027 =item inactive - No active recurring packages, but otherwise unsuspended/uncancelled (the inactive status is new - previously inactive customers were mis-identified as cancelled)
4028
4029 =item suspended - All non-cancelled recurring packages are suspended
4030
4031 =item cancelled - All recurring packages are cancelled
4032
4033 =back
4034
4035 Behavior of inactive vs. cancelled edge cases can be adjusted with the
4036 cust_main-status_module configuration option.
4037
4038 =cut
4039
4040 sub status { shift->cust_status(@_); }
4041
4042 sub cust_status {
4043   my $self = shift;
4044   for my $status ( FS::cust_main->statuses() ) {
4045     my $method = $status.'_sql';
4046     my $numnum = ( my $sql = $self->$method() ) =~ s/cust_main\.custnum/?/g;
4047     my $sth = dbh->prepare("SELECT $sql") or die dbh->errstr;
4048     $sth->execute( ($self->custnum) x $numnum )
4049       or die "Error executing 'SELECT $sql': ". $sth->errstr;
4050     return $status if $sth->fetchrow_arrayref->[0];
4051   }
4052 }
4053
4054 =item ucfirst_cust_status
4055
4056 =item ucfirst_status
4057
4058 Returns the status with the first character capitalized.
4059
4060 =cut
4061
4062 sub ucfirst_status { shift->ucfirst_cust_status(@_); }
4063
4064 sub ucfirst_cust_status {
4065   my $self = shift;
4066   ucfirst($self->cust_status);
4067 }
4068
4069 =item statuscolor
4070
4071 Returns a hex triplet color string for this customer's status.
4072
4073 =cut
4074
4075 sub statuscolor { shift->cust_statuscolor(@_); }
4076
4077 sub cust_statuscolor {
4078   my $self = shift;
4079   __PACKAGE__->statuscolors->{$self->cust_status};
4080 }
4081
4082 =item tickets
4083
4084 Returns an array of hashes representing the customer's RT tickets.
4085
4086 =cut
4087
4088 sub tickets {
4089   my $self = shift;
4090
4091   my $num = $conf->config('cust_main-max_tickets') || 10;
4092   my @tickets = ();
4093
4094   if ( $conf->config('ticket_system') ) {
4095     unless ( $conf->config('ticket_system-custom_priority_field') ) {
4096
4097       @tickets = @{ FS::TicketSystem->customer_tickets($self->custnum, $num) };
4098
4099     } else {
4100
4101       foreach my $priority (
4102         $conf->config('ticket_system-custom_priority_field-values'), ''
4103       ) {
4104         last if scalar(@tickets) >= $num;
4105         push @tickets, 
4106           @{ FS::TicketSystem->customer_tickets( $self->custnum,
4107                                                  $num - scalar(@tickets),
4108                                                  $priority,
4109                                                )
4110            };
4111       }
4112     }
4113   }
4114   (@tickets);
4115 }
4116
4117 # Return services representing svc_accts in customer support packages
4118 sub support_services {
4119   my $self = shift;
4120   my %packages = map { $_ => 1 } $conf->config('support_packages');
4121
4122   grep { $_->pkg_svc && $_->pkg_svc->primary_svc eq 'Y' }
4123     grep { $_->part_svc->svcdb eq 'svc_acct' }
4124     map { $_->cust_svc }
4125     grep { exists $packages{ $_->pkgpart } }
4126     $self->ncancelled_pkgs;
4127
4128 }
4129
4130 # Return a list of latitude/longitude for one of the services (if any)
4131 sub service_coordinates {
4132   my $self = shift;
4133
4134   my @svc_X = 
4135     grep { $_->latitude && $_->longitude }
4136     map { $_->svc_x }
4137     map { $_->cust_svc }
4138     $self->ncancelled_pkgs;
4139
4140   scalar(@svc_X) ? ( $svc_X[0]->latitude, $svc_X[0]->longitude ) : ()
4141 }
4142
4143 =item masked FIELD
4144
4145 Returns a masked version of the named field
4146
4147 =cut
4148
4149 sub masked {
4150 my ($self,$field) = @_;
4151
4152 # Show last four
4153
4154 'x'x(length($self->getfield($field))-4).
4155   substr($self->getfield($field), (length($self->getfield($field))-4));
4156
4157 }
4158
4159 =back
4160
4161 =head1 CLASS METHODS
4162
4163 =over 4
4164
4165 =item statuses
4166
4167 Class method that returns the list of possible status strings for customers
4168 (see L<the status method|/status>).  For example:
4169
4170   @statuses = FS::cust_main->statuses();
4171
4172 =cut
4173
4174 sub statuses {
4175   my $self = shift;
4176   keys %{ $self->statuscolors };
4177 }
4178
4179 =item cust_status_sql
4180
4181 Returns an SQL fragment to determine the status of a cust_main record, as a 
4182 string.
4183
4184 =cut
4185
4186 sub cust_status_sql {
4187   my $sql = 'CASE';
4188   for my $status ( FS::cust_main->statuses() ) {
4189     my $method = $status.'_sql';
4190     $sql .= ' WHEN ('.FS::cust_main->$method.") THEN '$status'";
4191   }
4192   $sql .= ' END';
4193   return $sql;
4194 }
4195
4196
4197 =item prospect_sql
4198
4199 Returns an SQL expression identifying prospective cust_main records (customers
4200 with no packages ever ordered)
4201
4202 =cut
4203
4204 use vars qw($select_count_pkgs);
4205 $select_count_pkgs =
4206   "SELECT COUNT(*) FROM cust_pkg
4207     WHERE cust_pkg.custnum = cust_main.custnum";
4208
4209 sub select_count_pkgs_sql {
4210   $select_count_pkgs;
4211 }
4212
4213 sub prospect_sql {
4214   " 0 = ( $select_count_pkgs ) ";
4215 }
4216
4217 =item ordered_sql
4218
4219 Returns an SQL expression identifying ordered cust_main records (customers with
4220 no active packages, but recurring packages not yet setup or one time charges
4221 not yet billed).
4222
4223 =cut
4224
4225 sub ordered_sql {
4226   FS::cust_main->none_active_sql.
4227   " AND 0 < ( $select_count_pkgs AND ". FS::cust_pkg->not_yet_billed_sql. " ) ";
4228 }
4229
4230 =item active_sql
4231
4232 Returns an SQL expression identifying active cust_main records (customers with
4233 active recurring packages).
4234
4235 =cut
4236
4237 sub active_sql {
4238   " 0 < ( $select_count_pkgs AND ". FS::cust_pkg->active_sql. " ) ";
4239 }
4240
4241 =item none_active_sql
4242
4243 Returns an SQL expression identifying cust_main records with no active
4244 recurring packages.  This includes customers of status prospect, ordered,
4245 inactive, and suspended.
4246
4247 =cut
4248
4249 sub none_active_sql {
4250   " 0 = ( $select_count_pkgs AND ". FS::cust_pkg->active_sql. " ) ";
4251 }
4252
4253 =item inactive_sql
4254
4255 Returns an SQL expression identifying inactive cust_main records (customers with
4256 no active recurring packages, but otherwise unsuspended/uncancelled).
4257
4258 =cut
4259
4260 sub inactive_sql {
4261   FS::cust_main->none_active_sql.
4262   " AND 0 < ( $select_count_pkgs AND ". FS::cust_pkg->inactive_sql. " ) ";
4263 }
4264
4265 =item susp_sql
4266 =item suspended_sql
4267
4268 Returns an SQL expression identifying suspended cust_main records.
4269
4270 =cut
4271
4272
4273 sub suspended_sql { susp_sql(@_); }
4274 sub susp_sql {
4275   FS::cust_main->none_active_sql.
4276   " AND 0 < ( $select_count_pkgs AND ". FS::cust_pkg->suspended_sql. " ) ";
4277 }
4278
4279 =item cancel_sql
4280 =item cancelled_sql
4281
4282 Returns an SQL expression identifying cancelled cust_main records.
4283
4284 =cut
4285
4286 sub cancel_sql { shift->cancelled_sql(@_); }
4287
4288 =item uncancel_sql
4289 =item uncancelled_sql
4290
4291 Returns an SQL expression identifying un-cancelled cust_main records.
4292
4293 =cut
4294
4295 sub uncancelled_sql { uncancel_sql(@_); }
4296 sub uncancel_sql { "
4297   ( 0 < ( $select_count_pkgs
4298                    AND ( cust_pkg.cancel IS NULL
4299                          OR cust_pkg.cancel = 0
4300                        )
4301         )
4302     OR 0 = ( $select_count_pkgs )
4303   )
4304 "; }
4305
4306 =item balance_sql
4307
4308 Returns an SQL fragment to retreive the balance.
4309
4310 =cut
4311
4312 sub balance_sql { "
4313     ( SELECT COALESCE( SUM(charged), 0 ) FROM cust_bill
4314         WHERE cust_bill.custnum   = cust_main.custnum     )
4315   - ( SELECT COALESCE( SUM(paid),    0 ) FROM cust_pay
4316         WHERE cust_pay.custnum    = cust_main.custnum     )
4317   - ( SELECT COALESCE( SUM(amount),  0 ) FROM cust_credit
4318         WHERE cust_credit.custnum = cust_main.custnum     )
4319   + ( SELECT COALESCE( SUM(refund),  0 ) FROM cust_refund
4320         WHERE cust_refund.custnum = cust_main.custnum     )
4321 "; }
4322
4323 =item balance_date_sql [ START_TIME [ END_TIME [ OPTION => VALUE ... ] ] ]
4324
4325 Returns an SQL fragment to retreive the balance for this customer, optionally
4326 considering invoices with date earlier than START_TIME, and not
4327 later than END_TIME (total_owed_date minus total_unapplied_credits minus
4328 total_unapplied_payments).
4329
4330 Times are specified as SQL fragments or numeric
4331 UNIX timestamps; see L<perlfunc/"time">).  Also see L<Time::Local> and
4332 L<Date::Parse> for conversion functions.  The empty string can be passed
4333 to disable that time constraint completely.
4334
4335 Available options are:
4336
4337 =over 4
4338
4339 =item unapplied_date
4340
4341 set to true to disregard unapplied credits, payments and refunds outside the specified time period - by default the time period restriction only applies to invoices (useful for reporting, probably a bad idea for event triggering)
4342
4343 =item total
4344
4345 (unused.  obsolete?)
4346 set to true to remove all customer comparison clauses, for totals
4347
4348 =item where
4349
4350 (unused.  obsolete?)
4351 WHERE clause hashref (elements "AND"ed together) (typically used with the total option)
4352
4353 =item join
4354
4355 (unused.  obsolete?)
4356 JOIN clause (typically used with the total option)
4357
4358 =item cutoff
4359
4360 An absolute cutoff time.  Payments, credits, and refunds I<applied> after this 
4361 time will be ignored.  Note that START_TIME and END_TIME only limit the date 
4362 range for invoices and I<unapplied> payments, credits, and refunds.
4363
4364 =back
4365
4366 =cut
4367
4368 sub balance_date_sql {
4369   my( $class, $start, $end, %opt ) = @_;
4370
4371   my $cutoff = $opt{'cutoff'};
4372
4373   my $owed         = FS::cust_bill->owed_sql($cutoff);
4374   my $unapp_refund = FS::cust_refund->unapplied_sql($cutoff);
4375   my $unapp_credit = FS::cust_credit->unapplied_sql($cutoff);
4376   my $unapp_pay    = FS::cust_pay->unapplied_sql($cutoff);
4377
4378   my $j = $opt{'join'} || '';
4379
4380   my $owed_wh   = $class->_money_table_where( 'cust_bill',   $start,$end,%opt );
4381   my $refund_wh = $class->_money_table_where( 'cust_refund', $start,$end,%opt );
4382   my $credit_wh = $class->_money_table_where( 'cust_credit', $start,$end,%opt );
4383   my $pay_wh    = $class->_money_table_where( 'cust_pay',    $start,$end,%opt );
4384
4385   "   ( SELECT COALESCE(SUM($owed),         0) FROM cust_bill   $j $owed_wh   )
4386     + ( SELECT COALESCE(SUM($unapp_refund), 0) FROM cust_refund $j $refund_wh )
4387     - ( SELECT COALESCE(SUM($unapp_credit), 0) FROM cust_credit $j $credit_wh )
4388     - ( SELECT COALESCE(SUM($unapp_pay),    0) FROM cust_pay    $j $pay_wh    )
4389   ";
4390
4391 }
4392
4393 =item unapplied_payments_date_sql START_TIME [ END_TIME ]
4394
4395 Returns an SQL fragment to retreive the total unapplied payments for this
4396 customer, only considering payments with date earlier than START_TIME, and
4397 optionally not later than END_TIME.
4398
4399 Times are specified as SQL fragments or numeric
4400 UNIX timestamps; see L<perlfunc/"time">).  Also see L<Time::Local> and
4401 L<Date::Parse> for conversion functions.  The empty string can be passed
4402 to disable that time constraint completely.
4403
4404 Available options are:
4405
4406 =cut
4407
4408 sub unapplied_payments_date_sql {
4409   my( $class, $start, $end, %opt ) = @_;
4410
4411   my $cutoff = $opt{'cutoff'};
4412
4413   my $unapp_pay    = FS::cust_pay->unapplied_sql($cutoff);
4414
4415   my $pay_where = $class->_money_table_where( 'cust_pay', $start, $end,
4416                                                           'unapplied_date'=>1 );
4417
4418   " ( SELECT COALESCE(SUM($unapp_pay), 0) FROM cust_pay $pay_where ) ";
4419 }
4420
4421 =item _money_table_where TABLE START_TIME [ END_TIME [ OPTION => VALUE ... ] ]
4422
4423 Helper method for balance_date_sql; name (and usage) subject to change
4424 (suggestions welcome).
4425
4426 Returns a WHERE clause for the specified monetary TABLE (cust_bill,
4427 cust_refund, cust_credit or cust_pay).
4428
4429 If TABLE is "cust_bill" or the unapplied_date option is true, only
4430 considers records with date earlier than START_TIME, and optionally not
4431 later than END_TIME .
4432
4433 =cut
4434
4435 sub _money_table_where {
4436   my( $class, $table, $start, $end, %opt ) = @_;
4437
4438   my @where = ();
4439   push @where, "cust_main.custnum = $table.custnum" unless $opt{'total'};
4440   if ( $table eq 'cust_bill' || $opt{'unapplied_date'} ) {
4441     push @where, "$table._date <= $start" if defined($start) && length($start);
4442     push @where, "$table._date >  $end"   if defined($end)   && length($end);
4443   }
4444   push @where, @{$opt{'where'}} if $opt{'where'};
4445   my $where = scalar(@where) ? 'WHERE '. join(' AND ', @where ) : '';
4446
4447   $where;
4448
4449 }
4450
4451 #for dyanmic FS::$table->search in httemplate/misc/email_customers.html
4452 use FS::cust_main::Search;
4453 sub search {
4454   my $class = shift;
4455   FS::cust_main::Search->search(@_);
4456 }
4457
4458 =back
4459
4460 =head1 SUBROUTINES
4461
4462 =over 4
4463
4464 =item batch_charge
4465
4466 =cut
4467
4468 sub batch_charge {
4469   my $param = shift;
4470   #warn join('-',keys %$param);
4471   my $fh = $param->{filehandle};
4472   my $agentnum = $param->{agentnum};
4473   my $format = $param->{format};
4474
4475   my $extra_sql = ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql;
4476
4477   my @fields;
4478   if ( $format eq 'simple' ) {
4479     @fields = qw( custnum agent_custid amount pkg );
4480   } else {
4481     die "unknown format $format";
4482   }
4483
4484   eval "use Text::CSV_XS;";
4485   die $@ if $@;
4486
4487   my $csv = new Text::CSV_XS;
4488   #warn $csv;
4489   #warn $fh;
4490
4491   my $imported = 0;
4492   #my $columns;
4493
4494   local $SIG{HUP} = 'IGNORE';
4495   local $SIG{INT} = 'IGNORE';
4496   local $SIG{QUIT} = 'IGNORE';
4497   local $SIG{TERM} = 'IGNORE';
4498   local $SIG{TSTP} = 'IGNORE';
4499   local $SIG{PIPE} = 'IGNORE';
4500
4501   my $oldAutoCommit = $FS::UID::AutoCommit;
4502   local $FS::UID::AutoCommit = 0;
4503   my $dbh = dbh;
4504   
4505   #while ( $columns = $csv->getline($fh) ) {
4506   my $line;
4507   while ( defined($line=<$fh>) ) {
4508
4509     $csv->parse($line) or do {
4510       $dbh->rollback if $oldAutoCommit;
4511       return "can't parse: ". $csv->error_input();
4512     };
4513
4514     my @columns = $csv->fields();
4515     #warn join('-',@columns);
4516
4517     my %row = ();
4518     foreach my $field ( @fields ) {
4519       $row{$field} = shift @columns;
4520     }
4521
4522     if ( $row{custnum} && $row{agent_custid} ) {
4523       dbh->rollback if $oldAutoCommit;
4524       return "can't specify custnum with agent_custid $row{agent_custid}";
4525     }
4526
4527     my %hash = ();
4528     if ( $row{agent_custid} && $agentnum ) {
4529       %hash = ( 'agent_custid' => $row{agent_custid},
4530                 'agentnum'     => $agentnum,
4531               );
4532     }
4533
4534     if ( $row{custnum} ) {
4535       %hash = ( 'custnum' => $row{custnum} );
4536     }
4537
4538     unless ( scalar(keys %hash) ) {
4539       $dbh->rollback if $oldAutoCommit;
4540       return "can't find customer without custnum or agent_custid and agentnum";
4541     }
4542
4543     my $cust_main = qsearchs('cust_main', { %hash } );
4544     unless ( $cust_main ) {
4545       $dbh->rollback if $oldAutoCommit;
4546       my $custnum = $row{custnum} || $row{agent_custid};
4547       return "unknown custnum $custnum";
4548     }
4549
4550     if ( $row{'amount'} > 0 ) {
4551       my $error = $cust_main->charge($row{'amount'}, $row{'pkg'});
4552       if ( $error ) {
4553         $dbh->rollback if $oldAutoCommit;
4554         return $error;
4555       }
4556       $imported++;
4557     } elsif ( $row{'amount'} < 0 ) {
4558       my $error = $cust_main->credit( sprintf( "%.2f", 0-$row{'amount'} ),
4559                                       $row{'pkg'}                         );
4560       if ( $error ) {
4561         $dbh->rollback if $oldAutoCommit;
4562         return $error;
4563       }
4564       $imported++;
4565     } else {
4566       #hmm?
4567     }
4568
4569   }
4570
4571   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
4572
4573   return "Empty file!" unless $imported;
4574
4575   ''; #no error
4576
4577 }
4578
4579 =item notify CUSTOMER_OBJECT TEMPLATE_NAME OPTIONS
4580
4581 Deprecated.  Use event notification and message templates 
4582 (L<FS::msg_template>) instead.
4583
4584 Sends a templated email notification to the customer (see L<Text::Template>).
4585
4586 OPTIONS is a hash and may include
4587
4588 I<from> - the email sender (default is invoice_from)
4589
4590 I<to> - comma-separated scalar or arrayref of recipients 
4591    (default is invoicing_list)
4592
4593 I<subject> - The subject line of the sent email notification
4594    (default is "Notice from company_name")
4595
4596 I<extra_fields> - a hashref of name/value pairs which will be substituted
4597    into the template
4598
4599 The following variables are vavailable in the template.
4600
4601 I<$first> - the customer first name
4602 I<$last> - the customer last name
4603 I<$company> - the customer company
4604 I<$payby> - a description of the method of payment for the customer
4605             # would be nice to use FS::payby::shortname
4606 I<$payinfo> - the account information used to collect for this customer
4607 I<$expdate> - the expiration of the customer payment in seconds from epoch
4608
4609 =cut
4610
4611 sub notify {
4612   my ($self, $template, %options) = @_;
4613
4614   return unless $conf->exists($template);
4615
4616   my $from = $conf->config('invoice_from', $self->agentnum)
4617     if $conf->exists('invoice_from', $self->agentnum);
4618   $from = $options{from} if exists($options{from});
4619
4620   my $to = join(',', $self->invoicing_list_emailonly);
4621   $to = $options{to} if exists($options{to});
4622   
4623   my $subject = "Notice from " . $conf->config('company_name', $self->agentnum)
4624     if $conf->exists('company_name', $self->agentnum);
4625   $subject = $options{subject} if exists($options{subject});
4626
4627   my $notify_template = new Text::Template (TYPE => 'ARRAY',
4628                                             SOURCE => [ map "$_\n",
4629                                               $conf->config($template)]
4630                                            )
4631     or die "can't create new Text::Template object: Text::Template::ERROR";
4632   $notify_template->compile()
4633     or die "can't compile template: Text::Template::ERROR";
4634
4635   $FS::notify_template::_template::company_name =
4636     $conf->config('company_name', $self->agentnum);
4637   $FS::notify_template::_template::company_address =
4638     join("\n", $conf->config('company_address', $self->agentnum) ). "\n";
4639
4640   my $paydate = $self->paydate || '2037-12-31';
4641   $FS::notify_template::_template::first = $self->first;
4642   $FS::notify_template::_template::last = $self->last;
4643   $FS::notify_template::_template::company = $self->company;
4644   $FS::notify_template::_template::payinfo = $self->mask_payinfo;
4645   my $payby = $self->payby;
4646   my ($payyear,$paymonth,$payday) = split (/-/,$paydate);
4647   my $expire_time = timelocal(0,0,0,$payday,--$paymonth,$payyear);
4648
4649   #credit cards expire at the end of the month/year of their exp date
4650   if ($payby eq 'CARD' || $payby eq 'DCRD') {
4651     $FS::notify_template::_template::payby = 'credit card';
4652     ($paymonth < 11) ? $paymonth++ : ($paymonth=0, $payyear++);
4653     $expire_time = timelocal(0,0,0,$payday,$paymonth,$payyear);
4654     $expire_time--;
4655   }elsif ($payby eq 'COMP') {
4656     $FS::notify_template::_template::payby = 'complimentary account';
4657   }else{
4658     $FS::notify_template::_template::payby = 'current method';
4659   }
4660   $FS::notify_template::_template::expdate = $expire_time;
4661
4662   for (keys %{$options{extra_fields}}){
4663     no strict "refs";
4664     ${"FS::notify_template::_template::$_"} = $options{extra_fields}->{$_};
4665   }
4666
4667   send_email(from => $from,
4668              to => $to,
4669              subject => $subject,
4670              body => $notify_template->fill_in( PACKAGE =>
4671                                                 'FS::notify_template::_template'                                              ),
4672             );
4673
4674 }
4675
4676 =item generate_letter CUSTOMER_OBJECT TEMPLATE_NAME OPTIONS
4677
4678 Generates a templated notification to the customer (see L<Text::Template>).
4679
4680 OPTIONS is a hash and may include
4681
4682 I<extra_fields> - a hashref of name/value pairs which will be substituted
4683    into the template.  These values may override values mentioned below
4684    and those from the customer record.
4685
4686 The following variables are available in the template instead of or in addition
4687 to the fields of the customer record.
4688
4689 I<$payby> - a description of the method of payment for the customer
4690             # would be nice to use FS::payby::shortname
4691 I<$payinfo> - the masked account information used to collect for this customer
4692 I<$expdate> - the expiration of the customer payment method in seconds from epoch
4693 I<$returnaddress> - the return address defaults to invoice_latexreturnaddress or company_address
4694
4695 =cut
4696
4697 # a lot like cust_bill::print_latex
4698 sub generate_letter {
4699   my ($self, $template, %options) = @_;
4700
4701   return unless $conf->exists($template);
4702
4703   my $letter_template = new Text::Template
4704                         ( TYPE       => 'ARRAY',
4705                           SOURCE     => [ map "$_\n", $conf->config($template)],
4706                           DELIMITERS => [ '[@--', '--@]' ],
4707                         )
4708     or die "can't create new Text::Template object: Text::Template::ERROR";
4709
4710   $letter_template->compile()
4711     or die "can't compile template: Text::Template::ERROR";
4712
4713   my %letter_data = map { $_ => $self->$_ } $self->fields;
4714   $letter_data{payinfo} = $self->mask_payinfo;
4715
4716   #my $paydate = $self->paydate || '2037-12-31';
4717   my $paydate = $self->paydate =~ /^\S+$/ ? $self->paydate : '2037-12-31';
4718
4719   my $payby = $self->payby;
4720   my ($payyear,$paymonth,$payday) = split (/-/,$paydate);
4721   my $expire_time = timelocal(0,0,0,$payday,--$paymonth,$payyear);
4722
4723   #credit cards expire at the end of the month/year of their exp date
4724   if ($payby eq 'CARD' || $payby eq 'DCRD') {
4725     $letter_data{payby} = 'credit card';
4726     ($paymonth < 11) ? $paymonth++ : ($paymonth=0, $payyear++);
4727     $expire_time = timelocal(0,0,0,$payday,$paymonth,$payyear);
4728     $expire_time--;
4729   }elsif ($payby eq 'COMP') {
4730     $letter_data{payby} = 'complimentary account';
4731   }else{
4732     $letter_data{payby} = 'current method';
4733   }
4734   $letter_data{expdate} = $expire_time;
4735
4736   for (keys %{$options{extra_fields}}){
4737     $letter_data{$_} = $options{extra_fields}->{$_};
4738   }
4739
4740   unless(exists($letter_data{returnaddress})){
4741     my $retadd = join("\n", $conf->config_orbase( 'invoice_latexreturnaddress',
4742                                                   $self->agent_template)
4743                      );
4744     if ( length($retadd) ) {
4745       $letter_data{returnaddress} = $retadd;
4746     } elsif ( grep /\S/, $conf->config('company_address', $self->agentnum) ) {
4747       $letter_data{returnaddress} =
4748         join( "\n", map { s/( {2,})/'~' x length($1)/eg;
4749                           s/$/\\\\\*/;
4750                           $_;
4751                         }
4752                     ( $conf->config('company_name', $self->agentnum),
4753                       $conf->config('company_address', $self->agentnum),
4754                     )
4755         );
4756     } else {
4757       $letter_data{returnaddress} = '~';
4758     }
4759   }
4760
4761   $letter_data{conf_dir} = "$FS::UID::conf_dir/conf.$FS::UID::datasrc";
4762
4763   $letter_data{company_name} = $conf->config('company_name', $self->agentnum);
4764
4765   my $dir = $FS::UID::conf_dir."/cache.". $FS::UID::datasrc;
4766
4767   my $lh = new File::Temp( TEMPLATE => 'letter.'. $self->custnum. '.XXXXXXXX',
4768                            DIR      => $dir,
4769                            SUFFIX   => '.eps',
4770                            UNLINK   => 0,
4771                          ) or die "can't open temp file: $!\n";
4772   print $lh $conf->config_binary('logo.eps', $self->agentnum)
4773     or die "can't write temp file: $!\n";
4774   close $lh;
4775   $letter_data{'logo_file'} = $lh->filename;
4776
4777   my $fh = new File::Temp( TEMPLATE => 'letter.'. $self->custnum. '.XXXXXXXX',
4778                            DIR      => $dir,
4779                            SUFFIX   => '.tex',
4780                            UNLINK   => 0,
4781                          ) or die "can't open temp file: $!\n";
4782
4783   $letter_template->fill_in( OUTPUT => $fh, HASH => \%letter_data );
4784   close $fh;
4785   $fh->filename =~ /^(.*).tex$/ or die "unparsable filename: ". $fh->filename;
4786   return ($1, $letter_data{'logo_file'});
4787
4788 }
4789
4790 =item print_ps TEMPLATE 
4791
4792 Returns an postscript letter filled in from TEMPLATE, as a scalar.
4793
4794 =cut
4795
4796 sub print_ps {
4797   my $self = shift;
4798   my($file, $lfile) = $self->generate_letter(@_);
4799   my $ps = FS::Misc::generate_ps($file);
4800   unlink($file.'.tex');
4801   unlink($lfile);
4802
4803   $ps;
4804 }
4805
4806 =item print TEMPLATE
4807
4808 Prints the filled in template.
4809
4810 TEMPLATE is the name of a L<Text::Template> to fill in and print.
4811
4812 =cut
4813
4814 sub queueable_print {
4815   my %opt = @_;
4816
4817   my $self = qsearchs('cust_main', { 'custnum' => $opt{custnum} } )
4818     or die "invalid customer number: " . $opt{custvnum};
4819
4820   my $error = $self->print( $opt{template} );
4821   die $error if $error;
4822 }
4823
4824 sub print {
4825   my ($self, $template) = (shift, shift);
4826   do_print [ $self->print_ps($template) ];
4827 }
4828
4829 #these three subs should just go away once agent stuff is all config overrides
4830
4831 sub agent_template {
4832   my $self = shift;
4833   $self->_agent_plandata('agent_templatename');
4834 }
4835
4836 sub agent_invoice_from {
4837   my $self = shift;
4838   $self->_agent_plandata('agent_invoice_from');
4839 }
4840
4841 sub _agent_plandata {
4842   my( $self, $option ) = @_;
4843
4844   #yuck.  this whole thing needs to be reconciled better with 1.9's idea of
4845   #agent-specific Conf
4846
4847   use FS::part_event::Condition;
4848   
4849   my $agentnum = $self->agentnum;
4850
4851   my $regexp = regexp_sql();
4852
4853   my $part_event_option =
4854     qsearchs({
4855       'select'    => 'part_event_option.*',
4856       'table'     => 'part_event_option',
4857       'addl_from' => q{
4858         LEFT JOIN part_event USING ( eventpart )
4859         LEFT JOIN part_event_option AS peo_agentnum
4860           ON ( part_event.eventpart = peo_agentnum.eventpart
4861                AND peo_agentnum.optionname = 'agentnum'
4862                AND peo_agentnum.optionvalue }. $regexp. q{ '(^|,)}. $agentnum. q{(,|$)'
4863              )
4864         LEFT JOIN part_event_condition
4865           ON ( part_event.eventpart = part_event_condition.eventpart
4866                AND part_event_condition.conditionname = 'cust_bill_age'
4867              )
4868         LEFT JOIN part_event_condition_option
4869           ON ( part_event_condition.eventconditionnum = part_event_condition_option.eventconditionnum
4870                AND part_event_condition_option.optionname = 'age'
4871              )
4872       },
4873       #'hashref'   => { 'optionname' => $option },
4874       #'hashref'   => { 'part_event_option.optionname' => $option },
4875       'extra_sql' =>
4876         " WHERE part_event_option.optionname = ". dbh->quote($option).
4877         " AND action = 'cust_bill_send_agent' ".
4878         " AND ( disabled IS NULL OR disabled != 'Y' ) ".
4879         " AND peo_agentnum.optionname = 'agentnum' ".
4880         " AND ( agentnum IS NULL OR agentnum = $agentnum ) ".
4881         " ORDER BY
4882            CASE WHEN part_event_condition_option.optionname IS NULL
4883            THEN -1
4884            ELSE ". FS::part_event::Condition->age2seconds_sql('part_event_condition_option.optionvalue').
4885         " END
4886           , part_event.weight".
4887         " LIMIT 1"
4888     });
4889     
4890   unless ( $part_event_option ) {
4891     return $self->agent->invoice_template || ''
4892       if $option eq 'agent_templatename';
4893     return '';
4894   }
4895
4896   $part_event_option->optionvalue;
4897
4898 }
4899
4900 =item queued_bill 'custnum' => CUSTNUM [ , OPTION => VALUE ... ]
4901
4902 Subroutine (not a method), designed to be called from the queue.
4903
4904 Takes a list of options and values.
4905
4906 Pulls up the customer record via the custnum option and calls bill_and_collect.
4907
4908 =cut
4909
4910 sub queued_bill {
4911   my (%args) = @_; #, ($time, $invoice_time, $check_freq, $resetup) = @_;
4912
4913   my $cust_main = qsearchs( 'cust_main', { custnum => $args{'custnum'} } );
4914   warn 'bill_and_collect custnum#'. $cust_main->custnum. "\n";#log custnum w/pid
4915
4916   $cust_main->bill_and_collect( %args );
4917 }
4918
4919 sub process_bill_and_collect {
4920   my $job = shift;
4921   my $param = thaw(decode_base64(shift));
4922   my $cust_main = qsearchs( 'cust_main', { custnum => $param->{'custnum'} } )
4923       or die "custnum '$param->{custnum}' not found!\n";
4924   $param->{'job'}   = $job;
4925   $param->{'fatal'} = 1; # runs from job queue, will be caught
4926   $param->{'retry'} = 1;
4927
4928   $cust_main->bill_and_collect( %$param );
4929 }
4930
4931 =item process_censustract_update CUSTNUM
4932
4933 Queueable function to update the census tract to the current year (as set in 
4934 the 'census_year' configuration variable) and retrieve the new tract code.
4935
4936 =cut
4937
4938 sub process_censustract_update { 
4939   eval "use FS::Misc::Geo qw(get_censustract)";
4940   die $@ if $@;
4941   my $custnum = shift;
4942   my $cust_main = qsearchs( 'cust_main', { custnum => $custnum })
4943       or die "custnum '$custnum' not found!\n";
4944
4945   my $new_year = $conf->config('census_year') or return;
4946   my $new_tract = get_censustract({ $cust_main->location_hash }, $new_year);
4947   if ( $new_tract =~ /^\d/ ) {
4948     # then it's a tract code
4949         $cust_main->set('censustract', $new_tract);
4950     $cust_main->set('censusyear',  $new_year);
4951     my $error = $cust_main->replace;
4952     die $error if $error;
4953   }
4954   else {
4955     # it's an error message
4956     die $new_tract;
4957   }
4958   return;
4959 }
4960
4961 sub _upgrade_data { #class method
4962   my ($class, %opts) = @_;
4963
4964   my @statements = (
4965     'UPDATE h_cust_main SET paycvv = NULL WHERE paycvv IS NOT NULL',
4966     'UPDATE cust_main SET signupdate = (SELECT signupdate FROM h_cust_main WHERE signupdate IS NOT NULL AND h_cust_main.custnum = cust_main.custnum ORDER BY historynum DESC LIMIT 1) WHERE signupdate IS NULL',
4967   );
4968   # fix yyyy-m-dd formatted paydates
4969   if ( driver_name =~ /^mysql$/i ) {
4970     push @statements,
4971     "UPDATE cust_main SET paydate = CONCAT( SUBSTRING(paydate FROM 1 FOR 5), '0', SUBSTRING(paydate FROM 6) ) WHERE SUBSTRING(paydate FROM 7 FOR 1) = '-'";
4972   }
4973   else { # the SQL standard
4974     push @statements, 
4975     "UPDATE cust_main SET paydate = SUBSTRING(paydate FROM 1 FOR 5) || '0' || SUBSTRING(paydate FROM 6) WHERE SUBSTRING(paydate FROM 7 FOR 1) = '-'";
4976   }
4977
4978   foreach my $sql ( @statements ) {
4979     my $sth = dbh->prepare($sql) or die dbh->errstr;
4980     $sth->execute or die $sth->errstr;
4981   }
4982
4983   local($ignore_expired_card) = 1;
4984   local($ignore_illegal_zip) = 1;
4985   local($ignore_banned_card) = 1;
4986   local($skip_fuzzyfiles) = 1;
4987   $class->_upgrade_otaker(%opts);
4988
4989 }
4990
4991 =back
4992
4993 =head1 BUGS
4994
4995 The delete method.
4996
4997 The delete method should possibly take an FS::cust_main object reference
4998 instead of a scalar customer number.
4999
5000 Bill and collect options should probably be passed as references instead of a
5001 list.
5002
5003 There should probably be a configuration file with a list of allowed credit
5004 card types.
5005
5006 No multiple currency support (probably a larger project than just this module).
5007
5008 payinfo_masked false laziness with cust_pay.pm and cust_refund.pm
5009
5010 Birthdates rely on negative epoch values.
5011
5012 The payby for card/check batches is broken.  With mixed batching, bad
5013 things will happen.
5014
5015 B<collect> I<invoice_time> should be renamed I<time>, like B<bill>.
5016
5017 =head1 SEE ALSO
5018
5019 L<FS::Record>, L<FS::cust_pkg>, L<FS::cust_bill>, L<FS::cust_credit>
5020 L<FS::agent>, L<FS::part_referral>, L<FS::cust_main_county>,
5021 L<FS::cust_main_invoice>, L<FS::UID>, schema.html from the base documentation.
5022
5023 =cut
5024
5025 1;
5026