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