RT#7266: aging report "as of" date now limits applied payments
[freeside.git] / FS / FS / cust_main.pm
1 package FS::cust_main;
2
3 require 5.006;
4 use strict;
5 use base qw( FS::otaker_Mixin FS::payinfo_Mixin FS::Record );
6 use vars qw( @EXPORT_OK $DEBUG $me $conf
7              @encrypted_fields
8              $import $ignore_expired_card
9              $skip_fuzzyfiles @fuzzyfields
10              @paytypes
11            );
12 use vars qw( $realtime_bop_decline_quiet ); #ugh
13 use Safe;
14 use Carp;
15 use Exporter;
16 use Scalar::Util qw( blessed );
17 use List::Util qw( min );
18 use Time::Local qw(timelocal);
19 use Data::Dumper;
20 use Tie::IxHash;
21 use Digest::MD5 qw(md5_base64);
22 use Date::Format;
23 #use Date::Manip;
24 use File::Temp qw( tempfile );
25 use String::Approx qw(amatch);
26 use Business::CreditCard 0.28;
27 use Locale::Country;
28 use FS::UID qw( getotaker dbh driver_name );
29 use FS::Record qw( qsearchs qsearch dbdef regexp_sql );
30 use FS::Misc qw( generate_email send_email generate_ps do_print );
31 use FS::Msgcat qw(gettext);
32 use FS::payby;
33 use FS::cust_pkg;
34 use FS::cust_svc;
35 use FS::cust_bill;
36 use FS::cust_bill_pkg;
37 use FS::cust_bill_pkg_display;
38 use FS::cust_bill_pkg_tax_location;
39 use FS::cust_bill_pkg_tax_rate_location;
40 use FS::cust_pay;
41 use FS::cust_pay_pending;
42 use FS::cust_pay_void;
43 use FS::cust_pay_batch;
44 use FS::cust_credit;
45 use FS::cust_refund;
46 use FS::part_referral;
47 use FS::cust_main_county;
48 use FS::cust_location;
49 use FS::cust_class;
50 use FS::cust_main_exemption;
51 use FS::cust_tax_adjustment;
52 use FS::tax_rate;
53 use FS::tax_rate_location;
54 use FS::cust_tax_location;
55 use FS::part_pkg_taxrate;
56 use FS::agent;
57 use FS::cust_main_invoice;
58 use FS::cust_credit_bill;
59 use FS::cust_bill_pay;
60 use FS::prepay_credit;
61 use FS::queue;
62 use FS::part_pkg;
63 use FS::part_event;
64 use FS::part_event_condition;
65 #use FS::cust_event;
66 use FS::type_pkgs;
67 use FS::payment_gateway;
68 use FS::agent_payment_gateway;
69 use FS::banned_pay;
70 use FS::TicketSystem;
71
72 @EXPORT_OK = qw( smart_search );
73
74 $realtime_bop_decline_quiet = 0;
75
76 # 1 is mostly method/subroutine entry and options
77 # 2 traces progress of some operations
78 # 3 is even more information including possibly sensitive data
79 $DEBUG = 0;
80 $me = '[FS::cust_main]';
81
82 $import = 0;
83 $ignore_expired_card = 0;
84
85 $skip_fuzzyfiles = 0;
86 @fuzzyfields = ( 'first', 'last', 'company', 'address1' );
87
88 @encrypted_fields = ('payinfo', 'paycvv');
89 sub nohistory_fields { ('paycvv'); }
90
91 @paytypes = ('', 'Personal checking', 'Personal savings', 'Business checking', 'Business savings');
92
93 #ask FS::UID to run this stuff for us later
94 #$FS::UID::callback{'FS::cust_main'} = sub { 
95 install_callback FS::UID sub { 
96   $conf = new FS::Conf;
97   #yes, need it for stuff below (prolly should be cached)
98 };
99
100 sub _cache {
101   my $self = shift;
102   my ( $hashref, $cache ) = @_;
103   if ( exists $hashref->{'pkgnum'} ) {
104     #@{ $self->{'_pkgnum'} } = ();
105     my $subcache = $cache->subcache( 'pkgnum', 'cust_pkg', $hashref->{custnum});
106     $self->{'_pkgnum'} = $subcache;
107     #push @{ $self->{'_pkgnum'} },
108     FS::cust_pkg->new_or_cached($hashref, $subcache) if $hashref->{pkgnum};
109   }
110 }
111
112 =head1 NAME
113
114 FS::cust_main - Object methods for cust_main records
115
116 =head1 SYNOPSIS
117
118   use FS::cust_main;
119
120   $record = new FS::cust_main \%hash;
121   $record = new FS::cust_main { 'column' => 'value' };
122
123   $error = $record->insert;
124
125   $error = $new_record->replace($old_record);
126
127   $error = $record->delete;
128
129   $error = $record->check;
130
131   @cust_pkg = $record->all_pkgs;
132
133   @cust_pkg = $record->ncancelled_pkgs;
134
135   @cust_pkg = $record->suspended_pkgs;
136
137   $error = $record->bill;
138   $error = $record->bill %options;
139   $error = $record->bill 'time' => $time;
140
141   $error = $record->collect;
142   $error = $record->collect %options;
143   $error = $record->collect 'invoice_time'   => $time,
144                           ;
145
146 =head1 DESCRIPTION
147
148 An FS::cust_main object represents a customer.  FS::cust_main inherits from 
149 FS::Record.  The following fields are currently supported:
150
151 =over 4
152
153 =item custnum
154
155 Primary key (assigned automatically for new customers)
156
157 =item agentnum
158
159 Agent (see L<FS::agent>)
160
161 =item refnum
162
163 Advertising source (see L<FS::part_referral>)
164
165 =item first
166
167 First name
168
169 =item last
170
171 Last name
172
173 =item ss
174
175 Cocial security number (optional)
176
177 =item company
178
179 (optional)
180
181 =item address1
182
183 =item address2
184
185 (optional)
186
187 =item city
188
189 =item county
190
191 (optional, see L<FS::cust_main_county>)
192
193 =item state
194
195 (see L<FS::cust_main_county>)
196
197 =item zip
198
199 =item country
200
201 (see L<FS::cust_main_county>)
202
203 =item daytime
204
205 phone (optional)
206
207 =item night
208
209 phone (optional)
210
211 =item fax
212
213 phone (optional)
214
215 =item ship_first
216
217 Shipping first name
218
219 =item ship_last
220
221 Shipping last name
222
223 =item ship_company
224
225 (optional)
226
227 =item ship_address1
228
229 =item ship_address2
230
231 (optional)
232
233 =item ship_city
234
235 =item ship_county
236
237 (optional, see L<FS::cust_main_county>)
238
239 =item ship_state
240
241 (see L<FS::cust_main_county>)
242
243 =item ship_zip
244
245 =item ship_country
246
247 (see L<FS::cust_main_county>)
248
249 =item ship_daytime
250
251 phone (optional)
252
253 =item ship_night
254
255 phone (optional)
256
257 =item ship_fax
258
259 phone (optional)
260
261 =item payby
262
263 Payment Type (See L<FS::payinfo_Mixin> for valid payby values)
264
265 =item payinfo
266
267 Payment Information (See L<FS::payinfo_Mixin> for data format)
268
269 =item paymask
270
271 Masked payinfo (See L<FS::payinfo_Mixin> for how this works)
272
273 =item paycvv
274
275 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
276
277 =item paydate
278
279 Expiration date, mm/yyyy, m/yyyy, mm/yy or m/yy
280
281 =item paystart_month
282
283 Start date month (maestro/solo cards only)
284
285 =item paystart_year
286
287 Start date year (maestro/solo cards only)
288
289 =item payissue
290
291 Issue number (maestro/solo cards only)
292
293 =item payname
294
295 Name on card or billing name
296
297 =item payip
298
299 IP address from which payment information was received
300
301 =item tax
302
303 Tax exempt, empty or `Y'
304
305 =item usernum
306
307 Order taker (see L<FS::access_user>)
308
309 =item comments
310
311 Comments (optional)
312
313 =item referral_custnum
314
315 Referring customer number
316
317 =item spool_cdr
318
319 Enable individual CDR spooling, empty or `Y'
320
321 =item dundate
322
323 A suggestion to events (see L<FS::part_bill_event">) to delay until this unix timestamp
324
325 =item squelch_cdr
326
327 Discourage individual CDR printing, empty or `Y'
328
329 =back
330
331 =head1 METHODS
332
333 =over 4
334
335 =item new HASHREF
336
337 Creates a new customer.  To add the customer to the database, see L<"insert">.
338
339 Note that this stores the hash reference, not a distinct copy of the hash it
340 points to.  You can ask the object for a copy with the I<hash> method.
341
342 =cut
343
344 sub table { 'cust_main'; }
345
346 =item insert [ CUST_PKG_HASHREF [ , INVOICING_LIST_ARYREF ] [ , OPTION => VALUE ... ] ]
347
348 Adds this customer to the database.  If there is an error, returns the error,
349 otherwise returns false.
350
351 CUST_PKG_HASHREF: If you pass a Tie::RefHash data structure to the insert
352 method containing FS::cust_pkg and FS::svc_I<tablename> objects, all records
353 are inserted atomicly, or the transaction is rolled back.  Passing an empty
354 hash reference is equivalent to not supplying this parameter.  There should be
355 a better explanation of this, but until then, here's an example:
356
357   use Tie::RefHash;
358   tie %hash, 'Tie::RefHash'; #this part is important
359   %hash = (
360     $cust_pkg => [ $svc_acct ],
361     ...
362   );
363   $cust_main->insert( \%hash );
364
365 INVOICING_LIST_ARYREF: If you pass an arrarref to the insert method, it will
366 be set as the invoicing list (see L<"invoicing_list">).  Errors return as
367 expected and rollback the entire transaction; it is not necessary to call 
368 check_invoicing_list first.  The invoicing_list is set after the records in the
369 CUST_PKG_HASHREF above are inserted, so it is now possible to set an
370 invoicing_list destination to the newly-created svc_acct.  Here's an example:
371
372   $cust_main->insert( {}, [ $email, 'POST' ] );
373
374 Currently available options are: I<depend_jobnum>, I<noexport> and I<tax_exemption>.
375
376 If I<depend_jobnum> is set, all provisioning jobs will have a dependancy
377 on the supplied jobnum (they will not run until the specific job completes).
378 This can be used to defer provisioning until some action completes (such
379 as running the customer's credit card successfully).
380
381 The I<noexport> option is deprecated.  If I<noexport> is set true, no
382 provisioning jobs (exports) are scheduled.  (You can schedule them later with
383 the B<reexport> method.)
384
385 The I<tax_exemption> option can be set to an arrayref of tax names.
386 FS::cust_main_exemption records will be created and inserted.
387
388 =cut
389
390 sub insert {
391   my $self = shift;
392   my $cust_pkgs = @_ ? shift : {};
393   my $invoicing_list = @_ ? shift : '';
394   my %options = @_;
395   warn "$me insert called with options ".
396        join(', ', map { "$_: $options{$_}" } keys %options ). "\n"
397     if $DEBUG;
398
399   local $SIG{HUP} = 'IGNORE';
400   local $SIG{INT} = 'IGNORE';
401   local $SIG{QUIT} = 'IGNORE';
402   local $SIG{TERM} = 'IGNORE';
403   local $SIG{TSTP} = 'IGNORE';
404   local $SIG{PIPE} = 'IGNORE';
405
406   my $oldAutoCommit = $FS::UID::AutoCommit;
407   local $FS::UID::AutoCommit = 0;
408   my $dbh = dbh;
409
410   my $prepay_identifier = '';
411   my( $amount, $seconds, $upbytes, $downbytes, $totalbytes ) = (0, 0, 0, 0, 0);
412   my $payby = '';
413   if ( $self->payby eq 'PREPAY' ) {
414
415     $self->payby('BILL');
416     $prepay_identifier = $self->payinfo;
417     $self->payinfo('');
418
419     warn "  looking up prepaid card $prepay_identifier\n"
420       if $DEBUG > 1;
421
422     my $error = $self->get_prepay( $prepay_identifier,
423                                    'amount_ref'     => \$amount,
424                                    'seconds_ref'    => \$seconds,
425                                    'upbytes_ref'    => \$upbytes,
426                                    'downbytes_ref'  => \$downbytes,
427                                    'totalbytes_ref' => \$totalbytes,
428                                  );
429     if ( $error ) {
430       $dbh->rollback if $oldAutoCommit;
431       #return "error applying prepaid card (transaction rolled back): $error";
432       return $error;
433     }
434
435     $payby = 'PREP' if $amount;
436
437   } elsif ( $self->payby =~ /^(CASH|WEST|MCRD)$/ ) {
438
439     $payby = $1;
440     $self->payby('BILL');
441     $amount = $self->paid;
442
443   }
444
445   warn "  inserting $self\n"
446     if $DEBUG > 1;
447
448   $self->signupdate(time) unless $self->signupdate;
449
450   $self->auto_agent_custid()
451     if $conf->config('cust_main-auto_agent_custid') && ! $self->agent_custid;
452
453   my $error = $self->SUPER::insert;
454   if ( $error ) {
455     $dbh->rollback if $oldAutoCommit;
456     #return "inserting cust_main record (transaction rolled back): $error";
457     return $error;
458   }
459
460   warn "  setting invoicing list\n"
461     if $DEBUG > 1;
462
463   if ( $invoicing_list ) {
464     $error = $self->check_invoicing_list( $invoicing_list );
465     if ( $error ) {
466       $dbh->rollback if $oldAutoCommit;
467       #return "checking invoicing_list (transaction rolled back): $error";
468       return $error;
469     }
470     $self->invoicing_list( $invoicing_list );
471   }
472
473   warn "  setting cust_main_exemption\n"
474     if $DEBUG > 1;
475
476   my $tax_exemption = delete $options{'tax_exemption'};
477   if ( $tax_exemption ) {
478     foreach my $taxname ( @$tax_exemption ) {
479       my $cust_main_exemption = new FS::cust_main_exemption {
480         'custnum' => $self->custnum,
481         'taxname' => $taxname,
482       };
483       my $error = $cust_main_exemption->insert;
484       if ( $error ) {
485         $dbh->rollback if $oldAutoCommit;
486         return "inserting cust_main_exemption (transaction rolled back): $error";
487       }
488     }
489   }
490
491   if (    $conf->config('cust_main-skeleton_tables')
492        && $conf->config('cust_main-skeleton_custnum') ) {
493
494     warn "  inserting skeleton records\n"
495       if $DEBUG > 1;
496
497     my $error = $self->start_copy_skel;
498     if ( $error ) {
499       $dbh->rollback if $oldAutoCommit;
500       return $error;
501     }
502
503   }
504
505   warn "  ordering packages\n"
506     if $DEBUG > 1;
507
508   $error = $self->order_pkgs( $cust_pkgs,
509                               %options,
510                               'seconds_ref'    => \$seconds,
511                               'upbytes_ref'    => \$upbytes,
512                               'downbytes_ref'  => \$downbytes,
513                               'totalbytes_ref' => \$totalbytes,
514                             );
515   if ( $error ) {
516     $dbh->rollback if $oldAutoCommit;
517     return $error;
518   }
519
520   if ( $seconds ) {
521     $dbh->rollback if $oldAutoCommit;
522     return "No svc_acct record to apply pre-paid time";
523   }
524   if ( $upbytes || $downbytes || $totalbytes ) {
525     $dbh->rollback if $oldAutoCommit;
526     return "No svc_acct record to apply pre-paid data";
527   }
528
529   if ( $amount ) {
530     warn "  inserting initial $payby payment of $amount\n"
531       if $DEBUG > 1;
532     $error = $self->insert_cust_pay($payby, $amount, $prepay_identifier);
533     if ( $error ) {
534       $dbh->rollback if $oldAutoCommit;
535       return "inserting payment (transaction rolled back): $error";
536     }
537   }
538
539   unless ( $import || $skip_fuzzyfiles ) {
540     warn "  queueing fuzzyfiles update\n"
541       if $DEBUG > 1;
542     $error = $self->queue_fuzzyfiles_update;
543     if ( $error ) {
544       $dbh->rollback if $oldAutoCommit;
545       return "updating fuzzy search cache: $error";
546     }
547   }
548
549   warn "  insert complete; committing transaction\n"
550     if $DEBUG > 1;
551
552   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
553   '';
554
555 }
556
557 use File::CounterFile;
558 sub auto_agent_custid {
559   my $self = shift;
560
561   my $format = $conf->config('cust_main-auto_agent_custid');
562   my $agent_custid;
563   if ( $format eq '1YMMXXXXXXXX' ) {
564
565     my $counter = new File::CounterFile 'cust_main.agent_custid';
566     $counter->lock;
567
568     my $ym = 100000000000 + time2str('%y%m00000000', time);
569     if ( $ym > $counter->value ) {
570       $counter->{'value'} = $agent_custid = $ym;
571       $counter->{'updated'} = 1;
572     } else {
573       $agent_custid = $counter->inc;
574     }
575
576     $counter->unlock;
577
578   } else {
579     die "Unknown cust_main-auto_agent_custid format: $format";
580   }
581
582   $self->agent_custid($agent_custid);
583
584 }
585
586 sub start_copy_skel {
587   my $self = shift;
588
589   #'mg_user_preference' => {},
590   #'mg_user_indicator_profile.user_indicator_profile_id' => { 'mg_profile_indicator.profile_indicator_id' => { 'mg_profile_details.profile_detail_id' }, },
591   #'mg_watchlist_header.watchlist_header_id' => { 'mg_watchlist_details.watchlist_details_id' },
592   #'mg_user_grid_header.grid_header_id' => { 'mg_user_grid_details.user_grid_details_id' },
593   #'mg_portfolio_header.portfolio_header_id' => { 'mg_portfolio_trades.portfolio_trades_id' => { 'mg_portfolio_trades_positions.portfolio_trades_positions_id' } },
594   my @tables = eval(join('\n',$conf->config('cust_main-skeleton_tables')));
595   die $@ if $@;
596
597   _copy_skel( 'cust_main',                                 #tablename
598               $conf->config('cust_main-skeleton_custnum'), #sourceid
599               $self->custnum,                              #destid
600               @tables,                                     #child tables
601             );
602 }
603
604 #recursive subroutine, not a method
605 sub _copy_skel {
606   my( $table, $sourceid, $destid, %child_tables ) = @_;
607
608   my $primary_key;
609   if ( $table =~ /^(\w+)\.(\w+)$/ ) {
610     ( $table, $primary_key ) = ( $1, $2 );
611   } else {
612     my $dbdef_table = dbdef->table($table);
613     $primary_key = $dbdef_table->primary_key
614       or return "$table has no primary key".
615                 " (or do you need to run dbdef-create?)";
616   }
617
618   warn "  _copy_skel: $table.$primary_key $sourceid to $destid for ".
619        join (', ', keys %child_tables). "\n"
620     if $DEBUG > 2;
621
622   foreach my $child_table_def ( keys %child_tables ) {
623
624     my $child_table;
625     my $child_pkey = '';
626     if ( $child_table_def =~ /^(\w+)\.(\w+)$/ ) {
627       ( $child_table, $child_pkey ) = ( $1, $2 );
628     } else {
629       $child_table = $child_table_def;
630
631       $child_pkey = dbdef->table($child_table)->primary_key;
632       #  or return "$table has no primary key".
633       #            " (or do you need to run dbdef-create?)\n";
634     }
635
636     my $sequence = '';
637     if ( keys %{ $child_tables{$child_table_def} } ) {
638
639       return "$child_table has no primary key".
640              " (run dbdef-create or try specifying it?)\n"
641         unless $child_pkey;
642
643       #false laziness w/Record::insert and only works on Pg
644       #refactor the proper last-inserted-id stuff out of Record::insert if this
645       # ever gets use for anything besides a quick kludge for one customer
646       my $default = dbdef->table($child_table)->column($child_pkey)->default;
647       $default =~ /^nextval\(\(?'"?([\w\.]+)"?'/i
648         or return "can't parse $child_table.$child_pkey default value ".
649                   " for sequence name: $default";
650       $sequence = $1;
651
652     }
653   
654     my @sel_columns = grep { $_ ne $primary_key }
655                            dbdef->table($child_table)->columns;
656     my $sel_columns = join(', ', @sel_columns );
657
658     my @ins_columns = grep { $_ ne $child_pkey } @sel_columns;
659     my $ins_columns = ' ( '. join(', ', $primary_key, @ins_columns ). ' ) ';
660     my $placeholders = ' ( ?, '. join(', ', map '?', @ins_columns ). ' ) ';
661
662     my $sel_st = "SELECT $sel_columns FROM $child_table".
663                  " WHERE $primary_key = $sourceid";
664     warn "    $sel_st\n"
665       if $DEBUG > 2;
666     my $sel_sth = dbh->prepare( $sel_st )
667       or return dbh->errstr;
668   
669     $sel_sth->execute or return $sel_sth->errstr;
670
671     while ( my $row = $sel_sth->fetchrow_hashref ) {
672
673       warn "    selected row: ".
674            join(', ', map { "$_=".$row->{$_} } keys %$row ). "\n"
675         if $DEBUG > 2;
676
677       my $statement =
678         "INSERT INTO $child_table $ins_columns VALUES $placeholders";
679       my $ins_sth =dbh->prepare($statement)
680           or return dbh->errstr;
681       my @param = ( $destid, map $row->{$_}, @ins_columns );
682       warn "    $statement: [ ". join(', ', @param). " ]\n"
683         if $DEBUG > 2;
684       $ins_sth->execute( @param )
685         or return $ins_sth->errstr;
686
687       #next unless keys %{ $child_tables{$child_table} };
688       next unless $sequence;
689       
690       #another section of that laziness
691       my $seq_sql = "SELECT currval('$sequence')";
692       my $seq_sth = dbh->prepare($seq_sql) or return dbh->errstr;
693       $seq_sth->execute or return $seq_sth->errstr;
694       my $insertid = $seq_sth->fetchrow_arrayref->[0];
695   
696       # don't drink soap!  recurse!  recurse!  okay!
697       my $error =
698         _copy_skel( $child_table_def,
699                     $row->{$child_pkey}, #sourceid
700                     $insertid, #destid
701                     %{ $child_tables{$child_table_def} },
702                   );
703       return $error if $error;
704
705     }
706
707   }
708
709   return '';
710
711 }
712
713 =item order_pkg HASHREF | OPTION => VALUE ... 
714
715 Orders a single package.
716
717 Options may be passed as a list of key/value pairs or as a hash reference.
718 Options are:
719
720 =over 4
721
722 =item cust_pkg
723
724 FS::cust_pkg object
725
726 =item cust_location
727
728 Optional FS::cust_location object
729
730 =item svcs
731
732 Optional arryaref of FS::svc_* service objects.
733
734 =item depend_jobnum
735
736 If this option is set to a job queue jobnum (see L<FS::queue>), all provisioning
737 jobs will have a dependancy on the supplied job (they will not run until the
738 specific job completes).  This can be used to defer provisioning until some
739 action completes (such as running the customer's credit card successfully).
740
741 =item ticket_subject
742
743 Optional subject for a ticket created and attached to this customer
744
745 =item ticket_subject
746
747 Optional queue name for ticket additions
748
749 =back
750
751 =cut
752
753 sub order_pkg {
754   my $self = shift;
755   my $opt = ref($_[0]) ? shift : { @_ };
756
757   warn "$me order_pkg called with options ".
758        join(', ', map { "$_: $opt->{$_}" } keys %$opt ). "\n"
759     if $DEBUG;
760
761   my $cust_pkg = $opt->{'cust_pkg'};
762   my $svcs     = $opt->{'svcs'} || [];
763
764   my %svc_options = ();
765   $svc_options{'depend_jobnum'} = $opt->{'depend_jobnum'}
766     if exists($opt->{'depend_jobnum'}) && $opt->{'depend_jobnum'};
767
768   my %insert_params = map { $opt->{$_} ? ( $_ => $opt->{$_} ) : () }
769                           qw( ticket_subject ticket_queue );
770
771   local $SIG{HUP} = 'IGNORE';
772   local $SIG{INT} = 'IGNORE';
773   local $SIG{QUIT} = 'IGNORE';
774   local $SIG{TERM} = 'IGNORE';
775   local $SIG{TSTP} = 'IGNORE';
776   local $SIG{PIPE} = 'IGNORE';
777
778   my $oldAutoCommit = $FS::UID::AutoCommit;
779   local $FS::UID::AutoCommit = 0;
780   my $dbh = dbh;
781
782   if ( $opt->{'cust_location'} &&
783        ( ! $cust_pkg->locationnum || $cust_pkg->locationnum == -1 ) ) {
784     my $error = $opt->{'cust_location'}->insert;
785     if ( $error ) {
786       $dbh->rollback if $oldAutoCommit;
787       return "inserting cust_location (transaction rolled back): $error";
788     }
789     $cust_pkg->locationnum($opt->{'cust_location'}->locationnum);
790   }
791
792   $cust_pkg->custnum( $self->custnum );
793
794   my $error = $cust_pkg->insert( %insert_params );
795   if ( $error ) {
796     $dbh->rollback if $oldAutoCommit;
797     return "inserting cust_pkg (transaction rolled back): $error";
798   }
799
800   foreach my $svc_something ( @{ $opt->{'svcs'} } ) {
801     if ( $svc_something->svcnum ) {
802       my $old_cust_svc = $svc_something->cust_svc;
803       my $new_cust_svc = new FS::cust_svc { $old_cust_svc->hash };
804       $new_cust_svc->pkgnum( $cust_pkg->pkgnum);
805       $error = $new_cust_svc->replace($old_cust_svc);
806     } else {
807       $svc_something->pkgnum( $cust_pkg->pkgnum );
808       if ( $svc_something->isa('FS::svc_acct') ) {
809         foreach ( grep { $opt->{$_.'_ref'} && ${ $opt->{$_.'_ref'} } }
810                        qw( seconds upbytes downbytes totalbytes )      ) {
811           $svc_something->$_( $svc_something->$_() + ${ $opt->{$_.'_ref'} } );
812           ${ $opt->{$_.'_ref'} } = 0;
813         }
814       }
815       $error = $svc_something->insert(%svc_options);
816     }
817     if ( $error ) {
818       $dbh->rollback if $oldAutoCommit;
819       return "inserting svc_ (transaction rolled back): $error";
820     }
821   }
822
823   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
824   ''; #no error
825
826 }
827
828 #deprecated #=item order_pkgs HASHREF [ , SECONDSREF ] [ , OPTION => VALUE ... ]
829 =item order_pkgs HASHREF [ , OPTION => VALUE ... ]
830
831 Like the insert method on an existing record, this method orders multiple
832 packages and included services atomicaly.  Pass a Tie::RefHash data structure
833 to this method containing FS::cust_pkg and FS::svc_I<tablename> objects.
834 There should be a better explanation of this, but until then, here's an
835 example:
836
837   use Tie::RefHash;
838   tie %hash, 'Tie::RefHash'; #this part is important
839   %hash = (
840     $cust_pkg => [ $svc_acct ],
841     ...
842   );
843   $cust_main->order_pkgs( \%hash, 'noexport'=>1 );
844
845 Services can be new, in which case they are inserted, or existing unaudited
846 services, in which case they are linked to the newly-created package.
847
848 Currently available options are: I<depend_jobnum>, I<noexport>, I<seconds_ref>,
849 I<upbytes_ref>, I<downbytes_ref>, and I<totalbytes_ref>.
850
851 If I<depend_jobnum> is set, all provisioning jobs will have a dependancy
852 on the supplied jobnum (they will not run until the specific job completes).
853 This can be used to defer provisioning until some action completes (such
854 as running the customer's credit card successfully).
855
856 The I<noexport> option is deprecated.  If I<noexport> is set true, no
857 provisioning jobs (exports) are scheduled.  (You can schedule them later with
858 the B<reexport> method for each cust_pkg object.  Using the B<reexport> method
859 on the cust_main object is not recommended, as existing services will also be
860 reexported.)
861
862 If I<seconds_ref>, I<upbytes_ref>, I<downbytes_ref>, or I<totalbytes_ref> is
863 provided, the scalars (provided by references) will be incremented by the
864 values of the prepaid card.`
865
866 =cut
867
868 sub order_pkgs {
869   my $self = shift;
870   my $cust_pkgs = shift;
871   my $seconds_ref = ref($_[0]) ? shift : ''; #deprecated
872   my %options = @_;
873   $seconds_ref ||= $options{'seconds_ref'};
874
875   warn "$me order_pkgs called with options ".
876        join(', ', map { "$_: $options{$_}" } keys %options ). "\n"
877     if $DEBUG;
878
879   local $SIG{HUP} = 'IGNORE';
880   local $SIG{INT} = 'IGNORE';
881   local $SIG{QUIT} = 'IGNORE';
882   local $SIG{TERM} = 'IGNORE';
883   local $SIG{TSTP} = 'IGNORE';
884   local $SIG{PIPE} = 'IGNORE';
885
886   my $oldAutoCommit = $FS::UID::AutoCommit;
887   local $FS::UID::AutoCommit = 0;
888   my $dbh = dbh;
889
890   local $FS::svc_Common::noexport_hack = 1 if $options{'noexport'};
891
892   foreach my $cust_pkg ( keys %$cust_pkgs ) {
893
894     my $error = $self->order_pkg(
895       'cust_pkg'     => $cust_pkg,
896       'svcs'         => $cust_pkgs->{$cust_pkg},
897       'seconds_ref'  => $seconds_ref,
898       map { $_ => $options{$_} } qw( upbytes_ref downbytes_ref totalbytes_ref
899                                      depend_jobnum
900                                    )
901     );
902     if ( $error ) {
903       $dbh->rollback if $oldAutoCommit;
904       return $error;
905     }
906
907   }
908
909   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
910   ''; #no error
911 }
912
913 =item recharge_prepay IDENTIFIER | PREPAY_CREDIT_OBJ [ , AMOUNTREF, SECONDSREF, UPBYTEREF, DOWNBYTEREF ]
914
915 Recharges this (existing) customer with the specified prepaid card (see
916 L<FS::prepay_credit>), specified either by I<identifier> or as an
917 FS::prepay_credit object.  If there is an error, returns the error, otherwise
918 returns false.
919
920 Optionally, five scalar references can be passed as well.  They will have their
921 values filled in with the amount, number of seconds, and number of upload,
922 download, and total bytes applied by this prepaid card.
923
924 =cut
925
926 #the ref bullshit here should be refactored like get_prepay.  MyAccount.pm is
927 #the only place that uses these args
928 sub recharge_prepay { 
929   my( $self, $prepay_credit, $amountref, $secondsref, 
930       $upbytesref, $downbytesref, $totalbytesref ) = @_;
931
932   local $SIG{HUP} = 'IGNORE';
933   local $SIG{INT} = 'IGNORE';
934   local $SIG{QUIT} = 'IGNORE';
935   local $SIG{TERM} = 'IGNORE';
936   local $SIG{TSTP} = 'IGNORE';
937   local $SIG{PIPE} = 'IGNORE';
938
939   my $oldAutoCommit = $FS::UID::AutoCommit;
940   local $FS::UID::AutoCommit = 0;
941   my $dbh = dbh;
942
943   my( $amount, $seconds, $upbytes, $downbytes, $totalbytes) = ( 0, 0, 0, 0, 0 );
944
945   my $error = $self->get_prepay( $prepay_credit,
946                                  'amount_ref'     => \$amount,
947                                  'seconds_ref'    => \$seconds,
948                                  'upbytes_ref'    => \$upbytes,
949                                  'downbytes_ref'  => \$downbytes,
950                                  'totalbytes_ref' => \$totalbytes,
951                                )
952            || $self->increment_seconds($seconds)
953            || $self->increment_upbytes($upbytes)
954            || $self->increment_downbytes($downbytes)
955            || $self->increment_totalbytes($totalbytes)
956            || $self->insert_cust_pay_prepay( $amount,
957                                              ref($prepay_credit)
958                                                ? $prepay_credit->identifier
959                                                : $prepay_credit
960                                            );
961
962   if ( $error ) {
963     $dbh->rollback if $oldAutoCommit;
964     return $error;
965   }
966
967   if ( defined($amountref)  ) { $$amountref  = $amount;  }
968   if ( defined($secondsref) ) { $$secondsref = $seconds; }
969   if ( defined($upbytesref) ) { $$upbytesref = $upbytes; }
970   if ( defined($downbytesref) ) { $$downbytesref = $downbytes; }
971   if ( defined($totalbytesref) ) { $$totalbytesref = $totalbytes; }
972
973   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
974   '';
975
976 }
977
978 =item get_prepay IDENTIFIER | PREPAY_CREDIT_OBJ [ , OPTION => VALUE ... ]
979
980 Looks up and deletes a prepaid card (see L<FS::prepay_credit>),
981 specified either by I<identifier> or as an FS::prepay_credit object.
982
983 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
984 incremented by the values of the prepaid card.
985
986 If the prepaid card specifies an I<agentnum> (see L<FS::agent>), it is used to
987 check or set this customer's I<agentnum>.
988
989 If there is an error, returns the error, otherwise returns false.
990
991 =cut
992
993
994 sub get_prepay {
995   my( $self, $prepay_credit, %opt ) = @_;
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   unless ( ref($prepay_credit) ) {
1009
1010     my $identifier = $prepay_credit;
1011
1012     $prepay_credit = qsearchs(
1013       'prepay_credit',
1014       { 'identifier' => $prepay_credit },
1015       '',
1016       'FOR UPDATE'
1017     );
1018
1019     unless ( $prepay_credit ) {
1020       $dbh->rollback if $oldAutoCommit;
1021       return "Invalid prepaid card: ". $identifier;
1022     }
1023
1024   }
1025
1026   if ( $prepay_credit->agentnum ) {
1027     if ( $self->agentnum && $self->agentnum != $prepay_credit->agentnum ) {
1028       $dbh->rollback if $oldAutoCommit;
1029       return "prepaid card not valid for agent ". $self->agentnum;
1030     }
1031     $self->agentnum($prepay_credit->agentnum);
1032   }
1033
1034   my $error = $prepay_credit->delete;
1035   if ( $error ) {
1036     $dbh->rollback if $oldAutoCommit;
1037     return "removing prepay_credit (transaction rolled back): $error";
1038   }
1039
1040   ${ $opt{$_.'_ref'} } += $prepay_credit->$_()
1041     for grep $opt{$_.'_ref'}, qw( amount seconds upbytes downbytes totalbytes );
1042
1043   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1044   '';
1045
1046 }
1047
1048 =item increment_upbytes SECONDS
1049
1050 Updates this customer's single or primary account (see L<FS::svc_acct>) by
1051 the specified number of upbytes.  If there is an error, returns the error,
1052 otherwise returns false.
1053
1054 =cut
1055
1056 sub increment_upbytes {
1057   _increment_column( shift, 'upbytes', @_);
1058 }
1059
1060 =item increment_downbytes SECONDS
1061
1062 Updates this customer's single or primary account (see L<FS::svc_acct>) by
1063 the specified number of downbytes.  If there is an error, returns the error,
1064 otherwise returns false.
1065
1066 =cut
1067
1068 sub increment_downbytes {
1069   _increment_column( shift, 'downbytes', @_);
1070 }
1071
1072 =item increment_totalbytes SECONDS
1073
1074 Updates this customer's single or primary account (see L<FS::svc_acct>) by
1075 the specified number of totalbytes.  If there is an error, returns the error,
1076 otherwise returns false.
1077
1078 =cut
1079
1080 sub increment_totalbytes {
1081   _increment_column( shift, 'totalbytes', @_);
1082 }
1083
1084 =item increment_seconds SECONDS
1085
1086 Updates this customer's single or primary account (see L<FS::svc_acct>) by
1087 the specified number of seconds.  If there is an error, returns the error,
1088 otherwise returns false.
1089
1090 =cut
1091
1092 sub increment_seconds {
1093   _increment_column( shift, 'seconds', @_);
1094 }
1095
1096 =item _increment_column AMOUNT
1097
1098 Updates this customer's single or primary account (see L<FS::svc_acct>) by
1099 the specified number of seconds or bytes.  If there is an error, returns
1100 the error, otherwise returns false.
1101
1102 =cut
1103
1104 sub _increment_column {
1105   my( $self, $column, $amount ) = @_;
1106   warn "$me increment_column called: $column, $amount\n"
1107     if $DEBUG;
1108
1109   return '' unless $amount;
1110
1111   my @cust_pkg = grep { $_->part_pkg->svcpart('svc_acct') }
1112                       $self->ncancelled_pkgs;
1113
1114   if ( ! @cust_pkg ) {
1115     return 'No packages with primary or single services found'.
1116            ' to apply pre-paid time';
1117   } elsif ( scalar(@cust_pkg) > 1 ) {
1118     #maybe have a way to specify the package/account?
1119     return 'Multiple packages found to apply pre-paid time';
1120   }
1121
1122   my $cust_pkg = $cust_pkg[0];
1123   warn "  found package pkgnum ". $cust_pkg->pkgnum. "\n"
1124     if $DEBUG > 1;
1125
1126   my @cust_svc =
1127     $cust_pkg->cust_svc( $cust_pkg->part_pkg->svcpart('svc_acct') );
1128
1129   if ( ! @cust_svc ) {
1130     return 'No account found to apply pre-paid time';
1131   } elsif ( scalar(@cust_svc) > 1 ) {
1132     return 'Multiple accounts found to apply pre-paid time';
1133   }
1134   
1135   my $svc_acct = $cust_svc[0]->svc_x;
1136   warn "  found service svcnum ". $svc_acct->pkgnum.
1137        ' ('. $svc_acct->email. ")\n"
1138     if $DEBUG > 1;
1139
1140   $column = "increment_$column";
1141   $svc_acct->$column($amount);
1142
1143 }
1144
1145 =item insert_cust_pay_prepay AMOUNT [ PAYINFO ]
1146
1147 Inserts a prepayment in the specified amount for this customer.  An optional
1148 second argument can specify the prepayment identifier for tracking purposes.
1149 If there is an error, returns the error, otherwise returns false.
1150
1151 =cut
1152
1153 sub insert_cust_pay_prepay {
1154   shift->insert_cust_pay('PREP', @_);
1155 }
1156
1157 =item insert_cust_pay_cash AMOUNT [ PAYINFO ]
1158
1159 Inserts a cash payment in the specified amount for this customer.  An optional
1160 second argument can specify the payment identifier for tracking purposes.
1161 If there is an error, returns the error, otherwise returns false.
1162
1163 =cut
1164
1165 sub insert_cust_pay_cash {
1166   shift->insert_cust_pay('CASH', @_);
1167 }
1168
1169 =item insert_cust_pay_west AMOUNT [ PAYINFO ]
1170
1171 Inserts a Western Union payment in the specified amount for this customer.  An
1172 optional second argument can specify the prepayment identifier for tracking
1173 purposes.  If there is an error, returns the error, otherwise returns false.
1174
1175 =cut
1176
1177 sub insert_cust_pay_west {
1178   shift->insert_cust_pay('WEST', @_);
1179 }
1180
1181 sub insert_cust_pay {
1182   my( $self, $payby, $amount ) = splice(@_, 0, 3);
1183   my $payinfo = scalar(@_) ? shift : '';
1184
1185   my $cust_pay = new FS::cust_pay {
1186     'custnum' => $self->custnum,
1187     'paid'    => sprintf('%.2f', $amount),
1188     #'_date'   => #date the prepaid card was purchased???
1189     'payby'   => $payby,
1190     'payinfo' => $payinfo,
1191   };
1192   $cust_pay->insert;
1193
1194 }
1195
1196 =item reexport
1197
1198 This method is deprecated.  See the I<depend_jobnum> option to the insert and
1199 order_pkgs methods for a better way to defer provisioning.
1200
1201 Re-schedules all exports by calling the B<reexport> method of all associated
1202 packages (see L<FS::cust_pkg>).  If there is an error, returns the error;
1203 otherwise returns false.
1204
1205 =cut
1206
1207 sub reexport {
1208   my $self = shift;
1209
1210   carp "WARNING: FS::cust_main::reexport is deprectated; ".
1211        "use the depend_jobnum option to insert or order_pkgs to delay export";
1212
1213   local $SIG{HUP} = 'IGNORE';
1214   local $SIG{INT} = 'IGNORE';
1215   local $SIG{QUIT} = 'IGNORE';
1216   local $SIG{TERM} = 'IGNORE';
1217   local $SIG{TSTP} = 'IGNORE';
1218   local $SIG{PIPE} = 'IGNORE';
1219
1220   my $oldAutoCommit = $FS::UID::AutoCommit;
1221   local $FS::UID::AutoCommit = 0;
1222   my $dbh = dbh;
1223
1224   foreach my $cust_pkg ( $self->ncancelled_pkgs ) {
1225     my $error = $cust_pkg->reexport;
1226     if ( $error ) {
1227       $dbh->rollback if $oldAutoCommit;
1228       return $error;
1229     }
1230   }
1231
1232   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1233   '';
1234
1235 }
1236
1237 =item delete NEW_CUSTNUM
1238
1239 This deletes the customer.  If there is an error, returns the error, otherwise
1240 returns false.
1241
1242 This will completely remove all traces of the customer record.  This is not
1243 what you want when a customer cancels service; for that, cancel all of the
1244 customer's packages (see L</cancel>).
1245
1246 If the customer has any uncancelled packages, you need to pass a new (valid)
1247 customer number for those packages to be transferred to.  Cancelled packages
1248 will be deleted.  Did I mention that this is NOT what you want when a customer
1249 cancels service and that you really should be looking see L<FS::cust_pkg/cancel>?
1250
1251 You can't delete a customer with invoices (see L<FS::cust_bill>),
1252 or credits (see L<FS::cust_credit>), payments (see L<FS::cust_pay>) or
1253 refunds (see L<FS::cust_refund>).
1254
1255 =cut
1256
1257 sub delete {
1258   my $self = shift;
1259
1260   local $SIG{HUP} = 'IGNORE';
1261   local $SIG{INT} = 'IGNORE';
1262   local $SIG{QUIT} = 'IGNORE';
1263   local $SIG{TERM} = 'IGNORE';
1264   local $SIG{TSTP} = 'IGNORE';
1265   local $SIG{PIPE} = 'IGNORE';
1266
1267   my $oldAutoCommit = $FS::UID::AutoCommit;
1268   local $FS::UID::AutoCommit = 0;
1269   my $dbh = dbh;
1270
1271   if ( $self->cust_bill ) {
1272     $dbh->rollback if $oldAutoCommit;
1273     return "Can't delete a customer with invoices";
1274   }
1275   if ( $self->cust_credit ) {
1276     $dbh->rollback if $oldAutoCommit;
1277     return "Can't delete a customer with credits";
1278   }
1279   if ( $self->cust_pay ) {
1280     $dbh->rollback if $oldAutoCommit;
1281     return "Can't delete a customer with payments";
1282   }
1283   if ( $self->cust_refund ) {
1284     $dbh->rollback if $oldAutoCommit;
1285     return "Can't delete a customer with refunds";
1286   }
1287
1288   my @cust_pkg = $self->ncancelled_pkgs;
1289   if ( @cust_pkg ) {
1290     my $new_custnum = shift;
1291     unless ( qsearchs( 'cust_main', { 'custnum' => $new_custnum } ) ) {
1292       $dbh->rollback if $oldAutoCommit;
1293       return "Invalid new customer number: $new_custnum";
1294     }
1295     foreach my $cust_pkg ( @cust_pkg ) {
1296       my %hash = $cust_pkg->hash;
1297       $hash{'custnum'} = $new_custnum;
1298       my $new_cust_pkg = new FS::cust_pkg ( \%hash );
1299       my $error = $new_cust_pkg->replace($cust_pkg,
1300                                          options => { $cust_pkg->options },
1301                                         );
1302       if ( $error ) {
1303         $dbh->rollback if $oldAutoCommit;
1304         return $error;
1305       }
1306     }
1307   }
1308   my @cancelled_cust_pkg = $self->all_pkgs;
1309   foreach my $cust_pkg ( @cancelled_cust_pkg ) {
1310     my $error = $cust_pkg->delete;
1311     if ( $error ) {
1312       $dbh->rollback if $oldAutoCommit;
1313       return $error;
1314     }
1315   }
1316
1317   foreach my $cust_main_invoice ( #(email invoice destinations, not invoices)
1318     qsearch( 'cust_main_invoice', { 'custnum' => $self->custnum } )
1319   ) {
1320     my $error = $cust_main_invoice->delete;
1321     if ( $error ) {
1322       $dbh->rollback if $oldAutoCommit;
1323       return $error;
1324     }
1325   }
1326
1327   foreach my $cust_main_exemption (
1328     qsearch( 'cust_main_exemption', { 'custnum' => $self->custnum } )
1329   ) {
1330     my $error = $cust_main_exemption->delete;
1331     if ( $error ) {
1332       $dbh->rollback if $oldAutoCommit;
1333       return $error;
1334     }
1335   }
1336
1337   my $error = $self->SUPER::delete;
1338   if ( $error ) {
1339     $dbh->rollback if $oldAutoCommit;
1340     return $error;
1341   }
1342
1343   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1344   '';
1345
1346 }
1347
1348 =item replace [ OLD_RECORD ] [ INVOICING_LIST_ARYREF ] [ , OPTION => VALUE ... ] ]
1349
1350
1351 Replaces the OLD_RECORD with this one in the database.  If there is an error,
1352 returns the error, otherwise returns false.
1353
1354 INVOICING_LIST_ARYREF: If you pass an arrarref to the insert method, it will
1355 be set as the invoicing list (see L<"invoicing_list">).  Errors return as
1356 expected and rollback the entire transaction; it is not necessary to call 
1357 check_invoicing_list first.  Here's an example:
1358
1359   $new_cust_main->replace( $old_cust_main, [ $email, 'POST' ] );
1360
1361 Currently available options are: I<tax_exemption>.
1362
1363 The I<tax_exemption> option can be set to an arrayref of tax names.
1364 FS::cust_main_exemption records will be deleted and inserted as appropriate.
1365
1366 =cut
1367
1368 sub replace {
1369   my $self = shift;
1370
1371   my $old = ( blessed($_[0]) && $_[0]->isa('FS::Record') )
1372               ? shift
1373               : $self->replace_old;
1374
1375   my @param = @_;
1376
1377   warn "$me replace called\n"
1378     if $DEBUG;
1379
1380   my $curuser = $FS::CurrentUser::CurrentUser;
1381   if (    $self->payby eq 'COMP'
1382        && $self->payby ne $old->payby
1383        && ! $curuser->access_right('Complimentary customer')
1384      )
1385   {
1386     return "You are not permitted to create complimentary accounts.";
1387   }
1388
1389   local($ignore_expired_card) = 1
1390     if $old->payby  =~ /^(CARD|DCRD)$/
1391     && $self->payby =~ /^(CARD|DCRD)$/
1392     && ( $old->payinfo eq $self->payinfo || $old->paymask eq $self->paymask );
1393
1394   local $SIG{HUP} = 'IGNORE';
1395   local $SIG{INT} = 'IGNORE';
1396   local $SIG{QUIT} = 'IGNORE';
1397   local $SIG{TERM} = 'IGNORE';
1398   local $SIG{TSTP} = 'IGNORE';
1399   local $SIG{PIPE} = 'IGNORE';
1400
1401   my $oldAutoCommit = $FS::UID::AutoCommit;
1402   local $FS::UID::AutoCommit = 0;
1403   my $dbh = dbh;
1404
1405   my $error = $self->SUPER::replace($old);
1406
1407   if ( $error ) {
1408     $dbh->rollback if $oldAutoCommit;
1409     return $error;
1410   }
1411
1412   if ( @param && ref($param[0]) eq 'ARRAY' ) { # INVOICING_LIST_ARYREF
1413     my $invoicing_list = shift @param;
1414     $error = $self->check_invoicing_list( $invoicing_list );
1415     if ( $error ) {
1416       $dbh->rollback if $oldAutoCommit;
1417       return $error;
1418     }
1419     $self->invoicing_list( $invoicing_list );
1420   }
1421
1422   my %options = @param;
1423
1424   my $tax_exemption = delete $options{'tax_exemption'};
1425   if ( $tax_exemption ) {
1426
1427     my %cust_main_exemption =
1428       map { $_->taxname => $_ }
1429           qsearch('cust_main_exemption', { 'custnum' => $old->custnum } );
1430
1431     foreach my $taxname ( @$tax_exemption ) {
1432
1433       next if delete $cust_main_exemption{$taxname};
1434
1435       my $cust_main_exemption = new FS::cust_main_exemption {
1436         'custnum' => $self->custnum,
1437         'taxname' => $taxname,
1438       };
1439       my $error = $cust_main_exemption->insert;
1440       if ( $error ) {
1441         $dbh->rollback if $oldAutoCommit;
1442         return "inserting cust_main_exemption (transaction rolled back): $error";
1443       }
1444     }
1445
1446     foreach my $cust_main_exemption ( values %cust_main_exemption ) {
1447       my $error = $cust_main_exemption->delete;
1448       if ( $error ) {
1449         $dbh->rollback if $oldAutoCommit;
1450         return "deleting cust_main_exemption (transaction rolled back): $error";
1451       }
1452     }
1453
1454   }
1455
1456   if ( $self->payby =~ /^(CARD|CHEK|LECB)$/ &&
1457        grep { $self->get($_) ne $old->get($_) } qw(payinfo paydate payname) ) {
1458     # card/check/lec info has changed, want to retry realtime_ invoice events
1459     my $error = $self->retry_realtime;
1460     if ( $error ) {
1461       $dbh->rollback if $oldAutoCommit;
1462       return $error;
1463     }
1464   }
1465
1466   unless ( $import || $skip_fuzzyfiles ) {
1467     $error = $self->queue_fuzzyfiles_update;
1468     if ( $error ) {
1469       $dbh->rollback if $oldAutoCommit;
1470       return "updating fuzzy search cache: $error";
1471     }
1472   }
1473
1474   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1475   '';
1476
1477 }
1478
1479 =item queue_fuzzyfiles_update
1480
1481 Used by insert & replace to update the fuzzy search cache
1482
1483 =cut
1484
1485 sub queue_fuzzyfiles_update {
1486   my $self = shift;
1487
1488   local $SIG{HUP} = 'IGNORE';
1489   local $SIG{INT} = 'IGNORE';
1490   local $SIG{QUIT} = 'IGNORE';
1491   local $SIG{TERM} = 'IGNORE';
1492   local $SIG{TSTP} = 'IGNORE';
1493   local $SIG{PIPE} = 'IGNORE';
1494
1495   my $oldAutoCommit = $FS::UID::AutoCommit;
1496   local $FS::UID::AutoCommit = 0;
1497   my $dbh = dbh;
1498
1499   my $queue = new FS::queue { 'job' => 'FS::cust_main::append_fuzzyfiles' };
1500   my $error = $queue->insert( map $self->getfield($_), @fuzzyfields );
1501   if ( $error ) {
1502     $dbh->rollback if $oldAutoCommit;
1503     return "queueing job (transaction rolled back): $error";
1504   }
1505
1506   if ( $self->ship_last ) {
1507     $queue = new FS::queue { 'job' => 'FS::cust_main::append_fuzzyfiles' };
1508     $error = $queue->insert( map $self->getfield("ship_$_"), @fuzzyfields );
1509     if ( $error ) {
1510       $dbh->rollback if $oldAutoCommit;
1511       return "queueing job (transaction rolled back): $error";
1512     }
1513   }
1514
1515   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1516   '';
1517
1518 }
1519
1520 =item check
1521
1522 Checks all fields to make sure this is a valid customer record.  If there is
1523 an error, returns the error, otherwise returns false.  Called by the insert
1524 and replace methods.
1525
1526 =cut
1527
1528 sub check {
1529   my $self = shift;
1530
1531   warn "$me check BEFORE: \n". $self->_dump
1532     if $DEBUG > 2;
1533
1534   my $error =
1535     $self->ut_numbern('custnum')
1536     || $self->ut_number('agentnum')
1537     || $self->ut_textn('agent_custid')
1538     || $self->ut_number('refnum')
1539     || $self->ut_foreign_keyn('classnum', 'cust_class', 'classnum')
1540     || $self->ut_textn('custbatch')
1541     || $self->ut_name('last')
1542     || $self->ut_name('first')
1543     || $self->ut_snumbern('birthdate')
1544     || $self->ut_snumbern('signupdate')
1545     || $self->ut_textn('company')
1546     || $self->ut_text('address1')
1547     || $self->ut_textn('address2')
1548     || $self->ut_text('city')
1549     || $self->ut_textn('county')
1550     || $self->ut_textn('state')
1551     || $self->ut_country('country')
1552     || $self->ut_anything('comments')
1553     || $self->ut_numbern('referral_custnum')
1554     || $self->ut_textn('stateid')
1555     || $self->ut_textn('stateid_state')
1556     || $self->ut_textn('invoice_terms')
1557     || $self->ut_alphan('geocode')
1558     || $self->ut_floatn('cdr_termination_percentage')
1559   ;
1560
1561   #barf.  need message catalogs.  i18n.  etc.
1562   $error .= "Please select an advertising source."
1563     if $error =~ /^Illegal or empty \(numeric\) refnum: /;
1564   return $error if $error;
1565
1566   return "Unknown agent"
1567     unless qsearchs( 'agent', { 'agentnum' => $self->agentnum } );
1568
1569   return "Unknown refnum"
1570     unless qsearchs( 'part_referral', { 'refnum' => $self->refnum } );
1571
1572   return "Unknown referring custnum: ". $self->referral_custnum
1573     unless ! $self->referral_custnum 
1574            || qsearchs( 'cust_main', { 'custnum' => $self->referral_custnum } );
1575
1576   if ( $self->censustract ne '' ) {
1577     $self->censustract =~ /^\s*(\d{9})\.?(\d{2})\s*$/
1578       or return "Illegal census tract: ". $self->censustract;
1579     
1580     $self->censustract("$1.$2");
1581   }
1582
1583   if ( $self->ss eq '' ) {
1584     $self->ss('');
1585   } else {
1586     my $ss = $self->ss;
1587     $ss =~ s/\D//g;
1588     $ss =~ /^(\d{3})(\d{2})(\d{4})$/
1589       or return "Illegal social security number: ". $self->ss;
1590     $self->ss("$1-$2-$3");
1591   }
1592
1593
1594 # bad idea to disable, causes billing to fail because of no tax rates later
1595 #  unless ( $import ) {
1596     unless ( qsearch('cust_main_county', {
1597       'country' => $self->country,
1598       'state'   => '',
1599      } ) ) {
1600       return "Unknown state/county/country: ".
1601         $self->state. "/". $self->county. "/". $self->country
1602         unless qsearch('cust_main_county',{
1603           'state'   => $self->state,
1604           'county'  => $self->county,
1605           'country' => $self->country,
1606         } );
1607     }
1608 #  }
1609
1610   $error =
1611     $self->ut_phonen('daytime', $self->country)
1612     || $self->ut_phonen('night', $self->country)
1613     || $self->ut_phonen('fax', $self->country)
1614     || $self->ut_zip('zip', $self->country)
1615   ;
1616   return $error if $error;
1617
1618   if ( $conf->exists('cust_main-require_phone')
1619        && ! length($self->daytime) && ! length($self->night)
1620      ) {
1621
1622     my $daytime_label = FS::Msgcat::_gettext('daytime') =~ /^(daytime)?$/
1623                           ? 'Day Phone'
1624                           : FS::Msgcat::_gettext('daytime');
1625     my $night_label = FS::Msgcat::_gettext('night') =~ /^(night)?$/
1626                         ? 'Night Phone'
1627                         : FS::Msgcat::_gettext('night');
1628   
1629     return "$daytime_label or $night_label is required"
1630   
1631   }
1632
1633   if ( $self->has_ship_address
1634        && scalar ( grep { $self->getfield($_) ne $self->getfield("ship_$_") }
1635                         $self->addr_fields )
1636      )
1637   {
1638     my $error =
1639       $self->ut_name('ship_last')
1640       || $self->ut_name('ship_first')
1641       || $self->ut_textn('ship_company')
1642       || $self->ut_text('ship_address1')
1643       || $self->ut_textn('ship_address2')
1644       || $self->ut_text('ship_city')
1645       || $self->ut_textn('ship_county')
1646       || $self->ut_textn('ship_state')
1647       || $self->ut_country('ship_country')
1648     ;
1649     return $error if $error;
1650
1651     #false laziness with above
1652     unless ( qsearchs('cust_main_county', {
1653       'country' => $self->ship_country,
1654       'state'   => '',
1655      } ) ) {
1656       return "Unknown ship_state/ship_county/ship_country: ".
1657         $self->ship_state. "/". $self->ship_county. "/". $self->ship_country
1658         unless qsearch('cust_main_county',{
1659           'state'   => $self->ship_state,
1660           'county'  => $self->ship_county,
1661           'country' => $self->ship_country,
1662         } );
1663     }
1664     #eofalse
1665
1666     $error =
1667       $self->ut_phonen('ship_daytime', $self->ship_country)
1668       || $self->ut_phonen('ship_night', $self->ship_country)
1669       || $self->ut_phonen('ship_fax', $self->ship_country)
1670       || $self->ut_zip('ship_zip', $self->ship_country)
1671     ;
1672     return $error if $error;
1673
1674     return "Unit # is required."
1675       if $self->ship_address2 =~ /^\s*$/
1676       && $conf->exists('cust_main-require_address2');
1677
1678   } else { # ship_ info eq billing info, so don't store dup info in database
1679
1680     $self->setfield("ship_$_", '')
1681       foreach $self->addr_fields;
1682
1683     return "Unit # is required."
1684       if $self->address2 =~ /^\s*$/
1685       && $conf->exists('cust_main-require_address2');
1686
1687   }
1688
1689   #$self->payby =~ /^(CARD|DCRD|CHEK|DCHK|LECB|BILL|COMP|PREPAY|CASH|WEST|MCRD)$/
1690   #  or return "Illegal payby: ". $self->payby;
1691   #$self->payby($1);
1692   FS::payby->can_payby($self->table, $self->payby)
1693     or return "Illegal payby: ". $self->payby;
1694
1695   $error =    $self->ut_numbern('paystart_month')
1696            || $self->ut_numbern('paystart_year')
1697            || $self->ut_numbern('payissue')
1698            || $self->ut_textn('paytype')
1699   ;
1700   return $error if $error;
1701
1702   if ( $self->payip eq '' ) {
1703     $self->payip('');
1704   } else {
1705     $error = $self->ut_ip('payip');
1706     return $error if $error;
1707   }
1708
1709   # If it is encrypted and the private key is not availaible then we can't
1710   # check the credit card.
1711
1712   my $check_payinfo = 1;
1713
1714   if ($self->is_encrypted($self->payinfo)) {
1715     $check_payinfo = 0;
1716   }
1717
1718   if ( $check_payinfo && $self->payby =~ /^(CARD|DCRD)$/ ) {
1719
1720     my $payinfo = $self->payinfo;
1721     $payinfo =~ s/\D//g;
1722     $payinfo =~ /^(\d{13,16})$/
1723       or return gettext('invalid_card'); # . ": ". $self->payinfo;
1724     $payinfo = $1;
1725     $self->payinfo($payinfo);
1726     validate($payinfo)
1727       or return gettext('invalid_card'); # . ": ". $self->payinfo;
1728
1729     return gettext('unknown_card_type')
1730       if cardtype($self->payinfo) eq "Unknown";
1731
1732     my $ban = qsearchs('banned_pay', $self->_banned_pay_hashref);
1733     if ( $ban ) {
1734       return 'Banned credit card: banned on '.
1735              time2str('%a %h %o at %r', $ban->_date).
1736              ' by '. $ban->otaker.
1737              ' (ban# '. $ban->bannum. ')';
1738     }
1739
1740     if (length($self->paycvv) && !$self->is_encrypted($self->paycvv)) {
1741       if ( cardtype($self->payinfo) eq 'American Express card' ) {
1742         $self->paycvv =~ /^(\d{4})$/
1743           or return "CVV2 (CID) for American Express cards is four digits.";
1744         $self->paycvv($1);
1745       } else {
1746         $self->paycvv =~ /^(\d{3})$/
1747           or return "CVV2 (CVC2/CID) is three digits.";
1748         $self->paycvv($1);
1749       }
1750     } else {
1751       $self->paycvv('');
1752     }
1753
1754     my $cardtype = cardtype($payinfo);
1755     if ( $cardtype =~ /^(Switch|Solo)$/i ) {
1756
1757       return "Start date or issue number is required for $cardtype cards"
1758         unless $self->paystart_month && $self->paystart_year or $self->payissue;
1759
1760       return "Start month must be between 1 and 12"
1761         if $self->paystart_month
1762            and $self->paystart_month < 1 || $self->paystart_month > 12;
1763
1764       return "Start year must be 1990 or later"
1765         if $self->paystart_year
1766            and $self->paystart_year < 1990;
1767
1768       return "Issue number must be beween 1 and 99"
1769         if $self->payissue
1770           and $self->payissue < 1 || $self->payissue > 99;
1771
1772     } else {
1773       $self->paystart_month('');
1774       $self->paystart_year('');
1775       $self->payissue('');
1776     }
1777
1778   } elsif ( $check_payinfo && $self->payby =~ /^(CHEK|DCHK)$/ ) {
1779
1780     my $payinfo = $self->payinfo;
1781     $payinfo =~ s/[^\d\@]//g;
1782     if ( $conf->exists('echeck-nonus') ) {
1783       $payinfo =~ /^(\d+)\@(\d+)$/ or return 'invalid echeck account@aba';
1784       $payinfo = "$1\@$2";
1785     } else {
1786       $payinfo =~ /^(\d+)\@(\d{9})$/ or return 'invalid echeck account@aba';
1787       $payinfo = "$1\@$2";
1788     }
1789     $self->payinfo($payinfo);
1790     $self->paycvv('');
1791
1792     my $ban = qsearchs('banned_pay', $self->_banned_pay_hashref);
1793     if ( $ban ) {
1794       return 'Banned ACH account: banned on '.
1795              time2str('%a %h %o at %r', $ban->_date).
1796              ' by '. $ban->otaker.
1797              ' (ban# '. $ban->bannum. ')';
1798     }
1799
1800   } elsif ( $self->payby eq 'LECB' ) {
1801
1802     my $payinfo = $self->payinfo;
1803     $payinfo =~ s/\D//g;
1804     $payinfo =~ /^1?(\d{10})$/ or return 'invalid btn billing telephone number';
1805     $payinfo = $1;
1806     $self->payinfo($payinfo);
1807     $self->paycvv('');
1808
1809   } elsif ( $self->payby eq 'BILL' ) {
1810
1811     $error = $self->ut_textn('payinfo');
1812     return "Illegal P.O. number: ". $self->payinfo if $error;
1813     $self->paycvv('');
1814
1815   } elsif ( $self->payby eq 'COMP' ) {
1816
1817     my $curuser = $FS::CurrentUser::CurrentUser;
1818     if (    ! $self->custnum
1819          && ! $curuser->access_right('Complimentary customer')
1820        )
1821     {
1822       return "You are not permitted to create complimentary accounts."
1823     }
1824
1825     $error = $self->ut_textn('payinfo');
1826     return "Illegal comp account issuer: ". $self->payinfo if $error;
1827     $self->paycvv('');
1828
1829   } elsif ( $self->payby eq 'PREPAY' ) {
1830
1831     my $payinfo = $self->payinfo;
1832     $payinfo =~ s/\W//g; #anything else would just confuse things
1833     $self->payinfo($payinfo);
1834     $error = $self->ut_alpha('payinfo');
1835     return "Illegal prepayment identifier: ". $self->payinfo if $error;
1836     return "Unknown prepayment identifier"
1837       unless qsearchs('prepay_credit', { 'identifier' => $self->payinfo } );
1838     $self->paycvv('');
1839
1840   }
1841
1842   if ( $self->paydate eq '' || $self->paydate eq '-' ) {
1843     return "Expiration date required"
1844       unless $self->payby =~ /^(BILL|PREPAY|CHEK|DCHK|LECB|CASH|WEST|MCRD)$/;
1845     $self->paydate('');
1846   } else {
1847     my( $m, $y );
1848     if ( $self->paydate =~ /^(\d{1,2})[\/\-](\d{2}(\d{2})?)$/ ) {
1849       ( $m, $y ) = ( $1, length($2) == 4 ? $2 : "20$2" );
1850     } elsif ( $self->paydate =~ /^19(\d{2})[\/\-](\d{1,2})[\/\-]\d+$/ ) {
1851       ( $m, $y ) = ( $2, "19$1" );
1852     } elsif ( $self->paydate =~ /^(20)?(\d{2})[\/\-](\d{1,2})[\/\-]\d+$/ ) {
1853       ( $m, $y ) = ( $3, "20$2" );
1854     } else {
1855       return "Illegal expiration date: ". $self->paydate;
1856     }
1857     $self->paydate("$y-$m-01");
1858     my($nowm,$nowy)=(localtime(time))[4,5]; $nowm++; $nowy+=1900;
1859     return gettext('expired_card')
1860       if !$import
1861       && !$ignore_expired_card 
1862       && ( $y<$nowy || ( $y==$nowy && $1<$nowm ) );
1863   }
1864
1865   if ( $self->payname eq '' && $self->payby !~ /^(CHEK|DCHK)$/ &&
1866        ( ! $conf->exists('require_cardname')
1867          || $self->payby !~ /^(CARD|DCRD)$/  ) 
1868   ) {
1869     $self->payname( $self->first. " ". $self->getfield('last') );
1870   } else {
1871     $self->payname =~ /^([\w \,\.\-\'\&]+)$/
1872       or return gettext('illegal_name'). " payname: ". $self->payname;
1873     $self->payname($1);
1874   }
1875
1876   foreach my $flag (qw( tax spool_cdr squelch_cdr archived email_csv_cdr )) {
1877     $self->$flag() =~ /^(Y?)$/ or return "Illegal $flag: ". $self->$flag();
1878     $self->$flag($1);
1879   }
1880
1881   $self->otaker(getotaker) unless $self->otaker;
1882
1883   warn "$me check AFTER: \n". $self->_dump
1884     if $DEBUG > 2;
1885
1886   $self->SUPER::check;
1887 }
1888
1889 =item addr_fields 
1890
1891 Returns a list of fields which have ship_ duplicates.
1892
1893 =cut
1894
1895 sub addr_fields {
1896   qw( last first company
1897       address1 address2 city county state zip country
1898       daytime night fax
1899     );
1900 }
1901
1902 =item has_ship_address
1903
1904 Returns true if this customer record has a separate shipping address.
1905
1906 =cut
1907
1908 sub has_ship_address {
1909   my $self = shift;
1910   scalar( grep { $self->getfield("ship_$_") ne '' } $self->addr_fields );
1911 }
1912
1913 =item location_hash
1914
1915 Returns a list of key/value pairs, with the following keys: address1, adddress2,
1916 city, county, state, zip, country.  The shipping address is used if present.
1917
1918 =cut
1919
1920 #geocode?  dependent on tax-ship_address config, not available in cust_location
1921 #mostly.  not yet then.
1922
1923 sub location_hash {
1924   my $self = shift;
1925   my $prefix = $self->has_ship_address ? 'ship_' : '';
1926
1927   map { $_ => $self->get($prefix.$_) }
1928       qw( address1 address2 city county state zip country geocode );
1929       #fields that cust_location has
1930 }
1931
1932 =item all_pkgs [ EXTRA_QSEARCH_PARAMS_HASHREF ]
1933
1934 Returns all packages (see L<FS::cust_pkg>) for this customer.
1935
1936 =cut
1937
1938 sub all_pkgs {
1939   my $self = shift;
1940   my $extra_qsearch = ref($_[0]) ? shift : {};
1941
1942   return $self->num_pkgs unless wantarray || keys(%$extra_qsearch);
1943
1944   my @cust_pkg = ();
1945   if ( $self->{'_pkgnum'} ) {
1946     @cust_pkg = values %{ $self->{'_pkgnum'}->cache };
1947   } else {
1948     @cust_pkg = $self->_cust_pkg($extra_qsearch);
1949   }
1950
1951   sort sort_packages @cust_pkg;
1952 }
1953
1954 =item cust_pkg
1955
1956 Synonym for B<all_pkgs>.
1957
1958 =cut
1959
1960 sub cust_pkg {
1961   shift->all_pkgs(@_);
1962 }
1963
1964 =item cust_location
1965
1966 Returns all locations (see L<FS::cust_location>) for this customer.
1967
1968 =cut
1969
1970 sub cust_location {
1971   my $self = shift;
1972   qsearch('cust_location', { 'custnum' => $self->custnum } );
1973 }
1974
1975 =item location_label [ OPTION => VALUE ... ]
1976
1977 Returns the label of the service location (see analog in L<FS::cust_location>) for this customer.
1978
1979 Options are
1980
1981 =over 4
1982
1983 =item join_string
1984
1985 used to separate the address elements (defaults to ', ')
1986
1987 =item escape_function
1988
1989 a callback used for escaping the text of the address elements
1990
1991 =back
1992
1993 =cut
1994
1995 # false laziness with FS::cust_location::line
1996
1997 sub location_label {
1998   my $self = shift;
1999   my %opt = @_;
2000
2001   my $separator = $opt{join_string} || ', ';
2002   my $escape = $opt{escape_function} || sub{ shift };
2003   my $line = '';
2004   my $cydefault = FS::conf->new->config('countrydefault') || 'US';
2005   my $prefix = length($self->ship_last) ? 'ship_' : '';
2006
2007   my $notfirst = 0;
2008   foreach (qw ( address1 address2 ) ) {
2009     my $method = "$prefix$_";
2010     $line .= ($notfirst ? $separator : ''). &$escape($self->$method)
2011       if $self->$method;
2012     $notfirst++;
2013   }
2014   $notfirst = 0;
2015   foreach (qw ( city county state zip ) ) {
2016     my $method = "$prefix$_";
2017     if ( $self->$method ) {
2018       $line .= ' (' if $method eq 'county';
2019       $line .= ($notfirst ? ' ' : $separator). &$escape($self->$method);
2020       $line .= ' )' if $method eq 'county';
2021       $notfirst++;
2022     }
2023   }
2024   $line .= $separator. &$escape(code2country($self->country))
2025     if $self->country ne $cydefault;
2026
2027   $line;
2028 }
2029
2030 =item ncancelled_pkgs [ EXTRA_QSEARCH_PARAMS_HASHREF ]
2031
2032 Returns all non-cancelled packages (see L<FS::cust_pkg>) for this customer.
2033
2034 =cut
2035
2036 sub ncancelled_pkgs {
2037   my $self = shift;
2038   my $extra_qsearch = ref($_[0]) ? shift : {};
2039
2040   return $self->num_ncancelled_pkgs unless wantarray;
2041
2042   my @cust_pkg = ();
2043   if ( $self->{'_pkgnum'} ) {
2044
2045     warn "$me ncancelled_pkgs: returning cached objects"
2046       if $DEBUG > 1;
2047
2048     @cust_pkg = grep { ! $_->getfield('cancel') }
2049                 values %{ $self->{'_pkgnum'}->cache };
2050
2051   } else {
2052
2053     warn "$me ncancelled_pkgs: searching for packages with custnum ".
2054          $self->custnum. "\n"
2055       if $DEBUG > 1;
2056
2057     $extra_qsearch->{'extra_sql'} .= ' AND ( cancel IS NULL OR cancel = 0 ) ';
2058
2059     @cust_pkg = $self->_cust_pkg($extra_qsearch);
2060
2061   }
2062
2063   sort sort_packages @cust_pkg;
2064
2065 }
2066
2067 sub _cust_pkg {
2068   my $self = shift;
2069   my $extra_qsearch = ref($_[0]) ? shift : {};
2070
2071   $extra_qsearch->{'select'} ||= '*';
2072   $extra_qsearch->{'select'} .=
2073    ',( SELECT COUNT(*) FROM cust_svc WHERE cust_pkg.pkgnum = cust_svc.pkgnum )
2074      AS _num_cust_svc';
2075
2076   map {
2077         $_->{'_num_cust_svc'} = $_->get('_num_cust_svc');
2078         $_;
2079       }
2080   qsearch({
2081     %$extra_qsearch,
2082     'table'   => 'cust_pkg',
2083     'hashref' => { 'custnum' => $self->custnum },
2084   });
2085
2086 }
2087
2088 # This should be generalized to use config options to determine order.
2089 sub sort_packages {
2090   
2091   my $locationsort = ( $a->locationnum || 0 ) <=> ( $b->locationnum || 0 );
2092   return $locationsort if $locationsort;
2093
2094   if ( $a->get('cancel') xor $b->get('cancel') ) {
2095     return -1 if $b->get('cancel');
2096     return  1 if $a->get('cancel');
2097     #shouldn't get here...
2098     return 0;
2099   } else {
2100     my $a_num_cust_svc = $a->num_cust_svc;
2101     my $b_num_cust_svc = $b->num_cust_svc;
2102     return 0  if !$a_num_cust_svc && !$b_num_cust_svc;
2103     return -1 if  $a_num_cust_svc && !$b_num_cust_svc;
2104     return 1  if !$a_num_cust_svc &&  $b_num_cust_svc;
2105     my @a_cust_svc = $a->cust_svc;
2106     my @b_cust_svc = $b->cust_svc;
2107     $a_cust_svc[0]->svc_x->label cmp $b_cust_svc[0]->svc_x->label;
2108   }
2109
2110 }
2111
2112 =item suspended_pkgs
2113
2114 Returns all suspended packages (see L<FS::cust_pkg>) for this customer.
2115
2116 =cut
2117
2118 sub suspended_pkgs {
2119   my $self = shift;
2120   grep { $_->susp } $self->ncancelled_pkgs;
2121 }
2122
2123 =item unflagged_suspended_pkgs
2124
2125 Returns all unflagged suspended packages (see L<FS::cust_pkg>) for this
2126 customer (thouse packages without the `manual_flag' set).
2127
2128 =cut
2129
2130 sub unflagged_suspended_pkgs {
2131   my $self = shift;
2132   return $self->suspended_pkgs
2133     unless dbdef->table('cust_pkg')->column('manual_flag');
2134   grep { ! $_->manual_flag } $self->suspended_pkgs;
2135 }
2136
2137 =item unsuspended_pkgs
2138
2139 Returns all unsuspended (and uncancelled) packages (see L<FS::cust_pkg>) for
2140 this customer.
2141
2142 =cut
2143
2144 sub unsuspended_pkgs {
2145   my $self = shift;
2146   grep { ! $_->susp } $self->ncancelled_pkgs;
2147 }
2148
2149 =item next_bill_date
2150
2151 Returns the next date this customer will be billed, as a UNIX timestamp, or
2152 undef if no active package has a next bill date.
2153
2154 =cut
2155
2156 sub next_bill_date {
2157   my $self = shift;
2158   min( map $_->get('bill'), grep $_->get('bill'), $self->unsuspended_pkgs );
2159 }
2160
2161 =item num_cancelled_pkgs
2162
2163 Returns the number of cancelled packages (see L<FS::cust_pkg>) for this
2164 customer.
2165
2166 =cut
2167
2168 sub num_cancelled_pkgs {
2169   shift->num_pkgs("cust_pkg.cancel IS NOT NULL AND cust_pkg.cancel != 0");
2170 }
2171
2172 sub num_ncancelled_pkgs {
2173   shift->num_pkgs("( cust_pkg.cancel IS NULL OR cust_pkg.cancel = 0 )");
2174 }
2175
2176 sub num_pkgs {
2177   my( $self ) = shift;
2178   my $sql = scalar(@_) ? shift : '';
2179   $sql = "AND $sql" if $sql && $sql !~ /^\s*$/ && $sql !~ /^\s*AND/i;
2180   my $sth = dbh->prepare(
2181     "SELECT COUNT(*) FROM cust_pkg WHERE custnum = ? $sql"
2182   ) or die dbh->errstr;
2183   $sth->execute($self->custnum) or die $sth->errstr;
2184   $sth->fetchrow_arrayref->[0];
2185 }
2186
2187 =item unsuspend
2188
2189 Unsuspends all unflagged suspended packages (see L</unflagged_suspended_pkgs>
2190 and L<FS::cust_pkg>) for this customer.  Always returns a list: an empty list
2191 on success or a list of errors.
2192
2193 =cut
2194
2195 sub unsuspend {
2196   my $self = shift;
2197   grep { $_->unsuspend } $self->suspended_pkgs;
2198 }
2199
2200 =item suspend
2201
2202 Suspends all unsuspended packages (see L<FS::cust_pkg>) for this customer.
2203
2204 Returns a list: an empty list on success or a list of errors.
2205
2206 =cut
2207
2208 sub suspend {
2209   my $self = shift;
2210   grep { $_->suspend(@_) } $self->unsuspended_pkgs;
2211 }
2212
2213 =item suspend_if_pkgpart HASHREF | PKGPART [ , PKGPART ... ]
2214
2215 Suspends all unsuspended packages (see L<FS::cust_pkg>) matching the listed
2216 PKGPARTs (see L<FS::part_pkg>).  Preferred usage is to pass a hashref instead
2217 of a list of pkgparts; the hashref has the following keys:
2218
2219 =over 4
2220
2221 =item pkgparts - listref of pkgparts
2222
2223 =item (other options are passed to the suspend method)
2224
2225 =back
2226
2227
2228 Returns a list: an empty list on success or a list of errors.
2229
2230 =cut
2231
2232 sub suspend_if_pkgpart {
2233   my $self = shift;
2234   my (@pkgparts, %opt);
2235   if (ref($_[0]) eq 'HASH'){
2236     @pkgparts = @{$_[0]{pkgparts}};
2237     %opt      = %{$_[0]};
2238   }else{
2239     @pkgparts = @_;
2240   }
2241   grep { $_->suspend(%opt) }
2242     grep { my $pkgpart = $_->pkgpart; grep { $pkgpart eq $_ } @pkgparts }
2243       $self->unsuspended_pkgs;
2244 }
2245
2246 =item suspend_unless_pkgpart HASHREF | PKGPART [ , PKGPART ... ]
2247
2248 Suspends all unsuspended packages (see L<FS::cust_pkg>) unless they match the
2249 given PKGPARTs (see L<FS::part_pkg>).  Preferred usage is to pass a hashref
2250 instead of a list of pkgparts; the hashref has the following keys:
2251
2252 =over 4
2253
2254 =item pkgparts - listref of pkgparts
2255
2256 =item (other options are passed to the suspend method)
2257
2258 =back
2259
2260 Returns a list: an empty list on success or a list of errors.
2261
2262 =cut
2263
2264 sub suspend_unless_pkgpart {
2265   my $self = shift;
2266   my (@pkgparts, %opt);
2267   if (ref($_[0]) eq 'HASH'){
2268     @pkgparts = @{$_[0]{pkgparts}};
2269     %opt      = %{$_[0]};
2270   }else{
2271     @pkgparts = @_;
2272   }
2273   grep { $_->suspend(%opt) }
2274     grep { my $pkgpart = $_->pkgpart; ! grep { $pkgpart eq $_ } @pkgparts }
2275       $self->unsuspended_pkgs;
2276 }
2277
2278 =item cancel [ OPTION => VALUE ... ]
2279
2280 Cancels all uncancelled packages (see L<FS::cust_pkg>) for this customer.
2281
2282 Available options are:
2283
2284 =over 4
2285
2286 =item quiet - can be set true to supress email cancellation notices.
2287
2288 =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.
2289
2290 =item ban - can be set true to ban this customer's credit card or ACH information, if present.
2291
2292 =item nobill - can be set true to skip billing if it might otherwise be done.
2293
2294 =back
2295
2296 Always returns a list: an empty list on success or a list of errors.
2297
2298 =cut
2299
2300 # nb that dates are not specified as valid options to this method
2301
2302 sub cancel {
2303   my( $self, %opt ) = @_;
2304
2305   warn "$me cancel called on customer ". $self->custnum. " with options ".
2306        join(', ', map { "$_: $opt{$_}" } keys %opt ). "\n"
2307     if $DEBUG;
2308
2309   return ( 'access denied' )
2310     unless $FS::CurrentUser::CurrentUser->access_right('Cancel customer');
2311
2312   if ( $opt{'ban'} && $self->payby =~ /^(CARD|DCRD|CHEK|DCHK)$/ ) {
2313
2314     #should try decryption (we might have the private key)
2315     # and if not maybe queue a job for the server that does?
2316     return ( "Can't (yet) ban encrypted credit cards" )
2317       if $self->is_encrypted($self->payinfo);
2318
2319     my $ban = new FS::banned_pay $self->_banned_pay_hashref;
2320     my $error = $ban->insert;
2321     return ( $error ) if $error;
2322
2323   }
2324
2325   my @pkgs = $self->ncancelled_pkgs;
2326
2327   if ( !$opt{nobill} && $conf->exists('bill_usage_on_cancel') ) {
2328     $opt{nobill} = 1;
2329     my $error = $self->bill( pkg_list => [ @pkgs ], cancel => 1 );
2330     warn "Error billing during cancel, custnum ". $self->custnum. ": $error"
2331       if $error;
2332   }
2333
2334   warn "$me cancelling ". scalar($self->ncancelled_pkgs). "/".
2335        scalar(@pkgs). " packages for customer ". $self->custnum. "\n"
2336     if $DEBUG;
2337
2338   grep { $_ } map { $_->cancel(%opt) } $self->ncancelled_pkgs;
2339 }
2340
2341 sub _banned_pay_hashref {
2342   my $self = shift;
2343
2344   my %payby2ban = (
2345     'CARD' => 'CARD',
2346     'DCRD' => 'CARD',
2347     'CHEK' => 'CHEK',
2348     'DCHK' => 'CHEK'
2349   );
2350
2351   {
2352     'payby'   => $payby2ban{$self->payby},
2353     'payinfo' => md5_base64($self->payinfo),
2354     #don't ever *search* on reason! #'reason'  =>
2355   };
2356 }
2357
2358 =item notes
2359
2360 Returns all notes (see L<FS::cust_main_note>) for this customer.
2361
2362 =cut
2363
2364 sub notes {
2365   my $self = shift;
2366   #order by?
2367   qsearch( 'cust_main_note',
2368            { 'custnum' => $self->custnum },
2369            '',
2370            'ORDER BY _DATE DESC'
2371          );
2372 }
2373
2374 =item agent
2375
2376 Returns the agent (see L<FS::agent>) for this customer.
2377
2378 =cut
2379
2380 sub agent {
2381   my $self = shift;
2382   qsearchs( 'agent', { 'agentnum' => $self->agentnum } );
2383 }
2384
2385 =item cust_class
2386
2387 Returns the customer class, as an FS::cust_class object, or the empty string
2388 if there is no customer class.
2389
2390 =cut
2391
2392 sub cust_class {
2393   my $self = shift;
2394   if ( $self->classnum ) {
2395     qsearchs('cust_class', { 'classnum' => $self->classnum } );
2396   } else {
2397     return '';
2398   } 
2399 }
2400
2401 =item categoryname 
2402
2403 Returns the customer category name, or the empty string if there is no customer
2404 category.
2405
2406 =cut
2407
2408 sub categoryname {
2409   my $self = shift;
2410   my $cust_class = $self->cust_class;
2411   $cust_class
2412     ? $cust_class->categoryname
2413     : '';
2414 }
2415
2416 =item classname 
2417
2418 Returns the customer class name, or the empty string if there is no customer
2419 class.
2420
2421 =cut
2422
2423 sub classname {
2424   my $self = shift;
2425   my $cust_class = $self->cust_class;
2426   $cust_class
2427     ? $cust_class->classname
2428     : '';
2429 }
2430
2431
2432 =item bill_and_collect 
2433
2434 Cancels and suspends any packages due, generates bills, applies payments and
2435 credits, and applies collection events to run cards, send bills and notices,
2436 etc.
2437
2438 By default, warns on errors and continues with the next operation (but see the
2439 "fatal" flag below).
2440
2441 Options are passed as name-value pairs.  Currently available options are:
2442
2443 =over 4
2444
2445 =item time
2446
2447 Bills the customer as if it were that time.  Specified as a UNIX timestamp; see L<perlfunc/"time">).  Also see L<Time::Local> and L<Date::Parse> for conversion functions.  For example:
2448
2449  use Date::Parse;
2450  ...
2451  $cust_main->bill( 'time' => str2time('April 20th, 2001') );
2452
2453 =item invoice_time
2454
2455 Used in conjunction with the I<time> option, this option specifies the date of for the generated invoices.  Other calculations, such as whether or not to generate the invoice in the first place, are not affected.
2456
2457 =item check_freq
2458
2459 "1d" for the traditional, daily events (the default), or "1m" for the new monthly events (part_event.check_freq)
2460
2461 =item resetup
2462
2463 If set true, re-charges setup fees.
2464
2465 =item fatal
2466
2467 If set any errors prevent subsequent operations from continusing.  If set
2468 specifically to "return", returns the error (or false, if there is no error).
2469 Any other true value causes errors to die.
2470
2471 =item debug
2472
2473 Debugging level.  Default is 0 (no debugging), or can be set to 1 (passed-in options), 2 (traces progress), 3 (more information), or 4 (include full search queries)
2474
2475 =back
2476
2477 Options are passed to the B<bill> and B<collect> methods verbatim, so all
2478 options of those methods are also available.
2479
2480 =cut
2481
2482 sub bill_and_collect {
2483   my( $self, %options ) = @_;
2484
2485   my $error;
2486
2487   #$options{actual_time} not $options{time} because freeside-daily -d is for
2488   #pre-printing invoices
2489
2490   $options{'actual_time'} ||= time;
2491
2492   $error = $self->cancel_expired_pkgs( $options{actual_time} );
2493   if ( $error ) {
2494     $error = "Error expiring custnum ". $self->custnum. ": $error";
2495     if    ( $options{fatal} && $options{fatal} eq 'return' ) { return $error; }
2496     elsif ( $options{fatal}                                ) { die    $error; }
2497     else                                                     { warn   $error; }
2498   }
2499
2500   $error = $self->suspend_adjourned_pkgs( $options{actual_time} );
2501   if ( $error ) {
2502     $error = "Error adjourning custnum ". $self->custnum. ": $error";
2503     if    ( $options{fatal} && $options{fatal} eq 'return' ) { return $error; }
2504     elsif ( $options{fatal}                                ) { die    $error; }
2505     else                                                     { warn   $error; }
2506   }
2507
2508   $error = $self->bill( %options );
2509   if ( $error ) {
2510     $error = "Error billing custnum ". $self->custnum. ": $error";
2511     if    ( $options{fatal} && $options{fatal} eq 'return' ) { return $error; }
2512     elsif ( $options{fatal}                                ) { die    $error; }
2513     else                                                     { warn   $error; }
2514   }
2515
2516   $error = $self->apply_payments_and_credits;
2517   if ( $error ) {
2518     $error = "Error applying custnum ". $self->custnum. ": $error";
2519     if    ( $options{fatal} && $options{fatal} eq 'return' ) { return $error; }
2520     elsif ( $options{fatal}                                ) { die    $error; }
2521     else                                                     { warn   $error; }
2522   }
2523
2524   unless ( $conf->exists('cancelled_cust-noevents')
2525            && ! $self->num_ncancelled_pkgs
2526   ) {
2527     $error = $self->collect( %options );
2528     if ( $error ) {
2529       $error = "Error collecting custnum ". $self->custnum. ": $error";
2530       if    ($options{fatal} && $options{fatal} eq 'return') { return $error; }
2531       elsif ($options{fatal}                               ) { die    $error; }
2532       else                                                   { warn   $error; }
2533     }
2534   }
2535
2536   '';
2537
2538 }
2539
2540 sub cancel_expired_pkgs {
2541   my ( $self, $time, %options ) = @_;
2542
2543   my @cancel_pkgs = $self->ncancelled_pkgs( { 
2544     'extra_sql' => " AND expire IS NOT NULL AND expire > 0 AND expire <= $time "
2545   } );
2546
2547   my @errors = ();
2548
2549   foreach my $cust_pkg ( @cancel_pkgs ) {
2550     my $cpr = $cust_pkg->last_cust_pkg_reason('expire');
2551     my $error = $cust_pkg->cancel($cpr ? ( 'reason'        => $cpr->reasonnum,
2552                                            'reason_otaker' => $cpr->otaker
2553                                          )
2554                                        : ()
2555                                  );
2556     push @errors, 'pkgnum '.$cust_pkg->pkgnum.": $error" if $error;
2557   }
2558
2559   scalar(@errors) ? join(' / ', @errors) : '';
2560
2561 }
2562
2563 sub suspend_adjourned_pkgs {
2564   my ( $self, $time, %options ) = @_;
2565
2566   my @susp_pkgs = $self->ncancelled_pkgs( {
2567     'extra_sql' =>
2568       " AND ( susp IS NULL OR susp = 0 )
2569         AND (    ( bill    IS NOT NULL AND bill    != 0 AND bill    <  $time )
2570               OR ( adjourn IS NOT NULL AND adjourn != 0 AND adjourn <= $time )
2571             )
2572       ",
2573   } );
2574
2575   #only because there's no SQL test for is_prepaid :/
2576   @susp_pkgs = 
2577     grep {     (    $_->part_pkg->is_prepaid
2578                  && $_->bill
2579                  && $_->bill < $time
2580                )
2581             || (    $_->adjourn
2582                  && $_->adjourn <= $time
2583                )
2584            
2585          }
2586          @susp_pkgs;
2587
2588   my @errors = ();
2589
2590   foreach my $cust_pkg ( @susp_pkgs ) {
2591     my $cpr = $cust_pkg->last_cust_pkg_reason('adjourn')
2592       if ($cust_pkg->adjourn && $cust_pkg->adjourn < $^T);
2593     my $error = $cust_pkg->suspend($cpr ? ( 'reason' => $cpr->reasonnum,
2594                                             'reason_otaker' => $cpr->otaker
2595                                           )
2596                                         : ()
2597                                   );
2598     push @errors, 'pkgnum '.$cust_pkg->pkgnum.": $error" if $error;
2599   }
2600
2601   scalar(@errors) ? join(' / ', @errors) : '';
2602
2603 }
2604
2605 =item bill OPTIONS
2606
2607 Generates invoices (see L<FS::cust_bill>) for this customer.  Usually used in
2608 conjunction with the collect method by calling B<bill_and_collect>.
2609
2610 If there is an error, returns the error, otherwise returns false.
2611
2612 Options are passed as name-value pairs.  Currently available options are:
2613
2614 =over 4
2615
2616 =item resetup
2617
2618 If set true, re-charges setup fees.
2619
2620 =item time
2621
2622 Bills the customer as if it were that time.  Specified as a UNIX timestamp; see L<perlfunc/"time">).  Also see L<Time::Local> and L<Date::Parse> for conversion functions.  For example:
2623
2624  use Date::Parse;
2625  ...
2626  $cust_main->bill( 'time' => str2time('April 20th, 2001') );
2627
2628 =item pkg_list
2629
2630 An array ref of specific packages (objects) to attempt billing, instead trying all of them.
2631
2632  $cust_main->bill( pkg_list => [$pkg1, $pkg2] );
2633
2634 =item not_pkgpart
2635
2636 A hashref of pkgparts to exclude from this billing run (can also be specified as a comma-separated scalar).
2637
2638 =item invoice_time
2639
2640 Used in conjunction with the I<time> option, this option specifies the date of for the generated invoices.  Other calculations, such as whether or not to generate the invoice in the first place, are not affected.
2641
2642 =item cancel
2643
2644 This boolean value informs the us that the package is being cancelled.  This
2645 typically might mean not charging the normal recurring fee but only usage
2646 fees since the last billing. Setup charges may be charged.  Not all package
2647 plans support this feature (they tend to charge 0).
2648
2649 =item invoice_terms
2650
2651 Optional terms to be printed on this invoice.  Otherwise, customer-specific
2652 terms or the default terms are used.
2653
2654 =back
2655
2656 =cut
2657
2658 sub bill {
2659   my( $self, %options ) = @_;
2660   return '' if $self->payby eq 'COMP';
2661   warn "$me bill customer ". $self->custnum. "\n"
2662     if $DEBUG;
2663
2664   my $time = $options{'time'} || time;
2665   my $invoice_time = $options{'invoice_time'} || $time;
2666
2667   $options{'not_pkgpart'} ||= {};
2668   $options{'not_pkgpart'} = { map { $_ => 1 }
2669                                   split(/\s*,\s*/, $options{'not_pkgpart'})
2670                             }
2671     unless ref($options{'not_pkgpart'});
2672
2673   local $SIG{HUP} = 'IGNORE';
2674   local $SIG{INT} = 'IGNORE';
2675   local $SIG{QUIT} = 'IGNORE';
2676   local $SIG{TERM} = 'IGNORE';
2677   local $SIG{TSTP} = 'IGNORE';
2678   local $SIG{PIPE} = 'IGNORE';
2679
2680   my $oldAutoCommit = $FS::UID::AutoCommit;
2681   local $FS::UID::AutoCommit = 0;
2682   my $dbh = dbh;
2683
2684   $self->select_for_update; #mutex
2685
2686   my $error = $self->do_cust_event(
2687     'debug'      => ( $options{'debug'} || 0 ),
2688     'time'       => $invoice_time,
2689     'check_freq' => $options{'check_freq'},
2690     'stage'      => 'pre-bill',
2691   );
2692   if ( $error ) {
2693     $dbh->rollback if $oldAutoCommit;
2694     return $error;
2695   }
2696
2697   #keep auto-charge and non-auto-charge line items separate
2698   my @passes = ( '', 'no_auto' );
2699
2700   my %cust_bill_pkg = map { $_ => [] } @passes;
2701
2702   ###
2703   # find the packages which are due for billing, find out how much they are
2704   # & generate invoice database.
2705   ###
2706
2707   my %total_setup   = map { my $z = 0; $_ => \$z; } @passes;
2708   my %total_recur   = map { my $z = 0; $_ => \$z; } @passes;
2709
2710   my %taxlisthash = map { $_ => {} } @passes;
2711
2712   my @precommit_hooks = ();
2713
2714   $options{'pkg_list'} ||= [ $self->ncancelled_pkgs ];  #param checks?
2715   foreach my $cust_pkg ( @{ $options{'pkg_list'} } ) {
2716
2717     next if $options{'not_pkgpart'}->{$cust_pkg->pkgpart};
2718
2719     warn "  bill package ". $cust_pkg->pkgnum. "\n" if $DEBUG > 1;
2720
2721     #? to avoid use of uninitialized value errors... ?
2722     $cust_pkg->setfield('bill', '')
2723       unless defined($cust_pkg->bill);
2724  
2725     #my $part_pkg = $cust_pkg->part_pkg;
2726
2727     my $real_pkgpart = $cust_pkg->pkgpart;
2728     my %hash = $cust_pkg->hash;
2729
2730     foreach my $part_pkg ( $cust_pkg->part_pkg->self_and_bill_linked ) {
2731
2732       $cust_pkg->set($_, $hash{$_}) foreach qw ( setup last_bill bill );
2733
2734       my $pass = ($cust_pkg->no_auto || $part_pkg->no_auto) ? 'no_auto' : '';
2735
2736       my $error =
2737         $self->_make_lines( 'part_pkg'            => $part_pkg,
2738                             'cust_pkg'            => $cust_pkg,
2739                             'precommit_hooks'     => \@precommit_hooks,
2740                             'line_items'          => $cust_bill_pkg{$pass},
2741                             'setup'               => $total_setup{$pass},
2742                             'recur'               => $total_recur{$pass},
2743                             'tax_matrix'          => $taxlisthash{$pass},
2744                             'time'                => $time,
2745                             'real_pkgpart'        => $real_pkgpart,
2746                             'options'             => \%options,
2747                           );
2748       if ($error) {
2749         $dbh->rollback if $oldAutoCommit;
2750         return $error;
2751       }
2752
2753     } #foreach my $part_pkg
2754
2755   } #foreach my $cust_pkg
2756
2757   #if the customer isn't on an automatic payby, everything can go on a single
2758   #invoice anyway?
2759   #if ( $cust_main->payby !~ /^(CARD|CHEK)$/ ) {
2760     #merge everything into one list
2761   #}
2762
2763   foreach my $pass (@passes) { # keys %cust_bill_pkg ) {
2764
2765     my @cust_bill_pkg = @{ $cust_bill_pkg{$pass} };
2766
2767     next unless @cust_bill_pkg; #don't create an invoice w/o line items
2768
2769     if ( scalar( grep { $_->recur && $_->recur > 0 } @cust_bill_pkg) ||
2770            !$conf->exists('postal_invoice-recurring_only')
2771        )
2772     {
2773
2774       my $postal_pkg = $self->charge_postal_fee();
2775       if ( $postal_pkg && !ref( $postal_pkg ) ) {
2776
2777         $dbh->rollback if $oldAutoCommit;
2778         return "can't charge postal invoice fee for customer ".
2779           $self->custnum. ": $postal_pkg";
2780
2781       } elsif ( $postal_pkg ) {
2782
2783         my $real_pkgpart = $postal_pkg->pkgpart;
2784         foreach my $part_pkg ( $postal_pkg->part_pkg->self_and_bill_linked ) {
2785           my %postal_options = %options;
2786           delete $postal_options{cancel};
2787           my $error =
2788             $self->_make_lines( 'part_pkg'            => $part_pkg,
2789                                 'cust_pkg'            => $postal_pkg,
2790                                 'precommit_hooks'     => \@precommit_hooks,
2791                                 'line_items'          => \@cust_bill_pkg,
2792                                 'setup'               => $total_setup{$pass},
2793                                 'recur'               => $total_recur{$pass},
2794                                 'tax_matrix'          => $taxlisthash{$pass},
2795                                 'time'                => $time,
2796                                 'real_pkgpart'        => $real_pkgpart,
2797                                 'options'             => \%postal_options,
2798                               );
2799           if ($error) {
2800             $dbh->rollback if $oldAutoCommit;
2801             return $error;
2802           }
2803         }
2804
2805       }
2806
2807     }
2808
2809     my $listref_or_error =
2810       $self->calculate_taxes( \@cust_bill_pkg, $taxlisthash{$pass}, $invoice_time);
2811
2812     unless ( ref( $listref_or_error ) ) {
2813       $dbh->rollback if $oldAutoCommit;
2814       return $listref_or_error;
2815     }
2816
2817     foreach my $taxline ( @$listref_or_error ) {
2818       ${ $total_setup{$pass} } =
2819         sprintf('%.2f', ${ $total_setup{$pass} } + $taxline->setup );
2820       push @cust_bill_pkg, $taxline;
2821     }
2822
2823     #add tax adjustments
2824     warn "adding tax adjustments...\n" if $DEBUG > 2;
2825     foreach my $cust_tax_adjustment (
2826       qsearch('cust_tax_adjustment', { 'custnum'    => $self->custnum,
2827                                        'billpkgnum' => '',
2828                                      }
2829              )
2830     ) {
2831
2832       my $tax = sprintf('%.2f', $cust_tax_adjustment->amount );
2833
2834       my $itemdesc = $cust_tax_adjustment->taxname;
2835       $itemdesc = '' if $itemdesc eq 'Tax';
2836
2837       push @cust_bill_pkg, new FS::cust_bill_pkg {
2838         'pkgnum'      => 0,
2839         'setup'       => $tax,
2840         'recur'       => 0,
2841         'sdate'       => '',
2842         'edate'       => '',
2843         'itemdesc'    => $itemdesc,
2844         'itemcomment' => $cust_tax_adjustment->comment,
2845         'cust_tax_adjustment' => $cust_tax_adjustment,
2846         #'cust_bill_pkg_tax_location' => \@cust_bill_pkg_tax_location,
2847       };
2848
2849     }
2850
2851     my $charged = sprintf('%.2f', ${ $total_setup{$pass} } + ${ $total_recur{$pass} } );
2852
2853     my @cust_bill = $self->cust_bill;
2854     my $balance = $self->balance;
2855     my $previous_balance = scalar(@cust_bill)
2856                              ? ( $cust_bill[$#cust_bill]->billing_balance || 0 )
2857                              : 0;
2858
2859     $previous_balance += $cust_bill[$#cust_bill]->charged
2860       if scalar(@cust_bill);
2861     #my $balance_adjustments =
2862     #  sprintf('%.2f', $balance - $prior_prior_balance - $prior_charged);
2863
2864     #create the new invoice
2865     my $cust_bill = new FS::cust_bill ( {
2866       'custnum'             => $self->custnum,
2867       '_date'               => ( $invoice_time ),
2868       'charged'             => $charged,
2869       'billing_balance'     => $balance,
2870       'previous_balance'    => $previous_balance,
2871       'invoice_terms'       => $options{'invoice_terms'},
2872     } );
2873     $error = $cust_bill->insert;
2874     if ( $error ) {
2875       $dbh->rollback if $oldAutoCommit;
2876       return "can't create invoice for customer #". $self->custnum. ": $error";
2877     }
2878
2879     foreach my $cust_bill_pkg ( @cust_bill_pkg ) {
2880       $cust_bill_pkg->invnum($cust_bill->invnum); 
2881       my $error = $cust_bill_pkg->insert;
2882       if ( $error ) {
2883         $dbh->rollback if $oldAutoCommit;
2884         return "can't create invoice line item: $error";
2885       }
2886     }
2887
2888   } #foreach my $pass ( keys %cust_bill_pkg )
2889
2890   foreach my $hook ( @precommit_hooks ) { 
2891     eval {
2892       &{$hook}; #($self) ?
2893     };
2894     if ( $@ ) {
2895       $dbh->rollback if $oldAutoCommit;
2896       return "$@ running precommit hook $hook\n";
2897     }
2898   }
2899   
2900   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
2901   ''; #no error
2902 }
2903
2904 =item calculate_taxes LINEITEMREF TAXHASHREF INVOICE_TIME
2905
2906 This is a weird one.  Perhaps it should not even be exposed.
2907
2908 Generates tax line items (see L<FS::cust_bill_pkg>) for this customer.
2909 Usually used internally by bill method B<bill>.
2910
2911 If there is an error, returns the error, otherwise returns reference to a
2912 list of line items suitable for insertion.
2913
2914 =over 4
2915
2916 =item LINEITEMREF
2917
2918 An array ref of the line items being billed.
2919
2920 =item TAXHASHREF
2921
2922 A strange beast.  The keys to this hash are internal identifiers consisting
2923 of the name of the tax object type, a space, and its unique identifier ( e.g.
2924  'cust_main_county 23' ).  The values of the hash are listrefs.  The first
2925 item in the list is the tax object.  The remaining items are either line
2926 items or floating point values (currency amounts).
2927
2928 The taxes are calculated on this entity.  Calculated exemption records are
2929 transferred to the LINEITEMREF items on the assumption that they are related.
2930
2931 Read the source.
2932
2933 =item INVOICE_TIME
2934
2935 This specifies the date appearing on the associated invoice.  Some
2936 jurisdictions (i.e. Texas) have tax exemptions which are date sensitive.
2937
2938 =back
2939
2940 =cut
2941 sub calculate_taxes {
2942   my ($self, $cust_bill_pkg, $taxlisthash, $invoice_time) = @_;
2943
2944   my @tax_line_items = ();
2945
2946   warn "having a look at the taxes we found...\n" if $DEBUG > 2;
2947
2948   # keys are tax names (as printed on invoices / itemdesc )
2949   # values are listrefs of taxlisthash keys (internal identifiers)
2950   my %taxname = ();
2951
2952   # keys are taxlisthash keys (internal identifiers)
2953   # values are (cumulative) amounts
2954   my %tax = ();
2955
2956   # keys are taxlisthash keys (internal identifiers)
2957   # values are listrefs of cust_bill_pkg_tax_location hashrefs
2958   my %tax_location = ();
2959
2960   # keys are taxlisthash keys (internal identifiers)
2961   # values are listrefs of cust_bill_pkg_tax_rate_location hashrefs
2962   my %tax_rate_location = ();
2963
2964   foreach my $tax ( keys %$taxlisthash ) {
2965     my $tax_object = shift @{ $taxlisthash->{$tax} };
2966     warn "found ". $tax_object->taxname. " as $tax\n" if $DEBUG > 2;
2967     warn " ". join('/', @{ $taxlisthash->{$tax} } ). "\n" if $DEBUG > 2;
2968     my $hashref_or_error =
2969       $tax_object->taxline( $taxlisthash->{$tax},
2970                             'custnum'      => $self->custnum,
2971                             'invoice_time' => $invoice_time
2972                           );
2973     return $hashref_or_error unless ref($hashref_or_error);
2974
2975     unshift @{ $taxlisthash->{$tax} }, $tax_object;
2976
2977     my $name   = $hashref_or_error->{'name'};
2978     my $amount = $hashref_or_error->{'amount'};
2979
2980     #warn "adding $amount as $name\n";
2981     $taxname{ $name } ||= [];
2982     push @{ $taxname{ $name } }, $tax;
2983
2984     $tax{ $tax } += $amount;
2985
2986     $tax_location{ $tax } ||= [];
2987     if ( $tax_object->get('pkgnum') || $tax_object->get('locationnum') ) {
2988       push @{ $tax_location{ $tax }  },
2989         {
2990           'taxnum'      => $tax_object->taxnum, 
2991           'taxtype'     => ref($tax_object),
2992           'pkgnum'      => $tax_object->get('pkgnum'),
2993           'locationnum' => $tax_object->get('locationnum'),
2994           'amount'      => sprintf('%.2f', $amount ),
2995         };
2996     }
2997
2998     $tax_rate_location{ $tax } ||= [];
2999     if ( ref($tax_object) eq 'FS::tax_rate' ) {
3000       my $taxratelocationnum =
3001         $tax_object->tax_rate_location->taxratelocationnum;
3002       push @{ $tax_rate_location{ $tax }  },
3003         {
3004           'taxnum'             => $tax_object->taxnum, 
3005           'taxtype'            => ref($tax_object),
3006           'amount'             => sprintf('%.2f', $amount ),
3007           'locationtaxid'      => $tax_object->location,
3008           'taxratelocationnum' => $taxratelocationnum,
3009         };
3010     }
3011
3012   }
3013
3014   #move the cust_tax_exempt_pkg records to the cust_bill_pkgs we will commit
3015   my %packagemap = map { $_->pkgnum => $_ } @$cust_bill_pkg;
3016   foreach my $tax ( keys %$taxlisthash ) {
3017     foreach ( @{ $taxlisthash->{$tax} }[1 ... scalar(@{ $taxlisthash->{$tax} })] ) {
3018       next unless ref($_) eq 'FS::cust_bill_pkg';
3019
3020       push @{ $packagemap{$_->pkgnum}->_cust_tax_exempt_pkg }, 
3021         splice( @{ $_->_cust_tax_exempt_pkg } );
3022     }
3023   }
3024
3025   #consolidate and create tax line items
3026   warn "consolidating and generating...\n" if $DEBUG > 2;
3027   foreach my $taxname ( keys %taxname ) {
3028     my $tax = 0;
3029     my %seen = ();
3030     my @cust_bill_pkg_tax_location = ();
3031     my @cust_bill_pkg_tax_rate_location = ();
3032     warn "adding $taxname\n" if $DEBUG > 1;
3033     foreach my $taxitem ( @{ $taxname{$taxname} } ) {
3034       next if $seen{$taxitem}++;
3035       warn "adding $tax{$taxitem}\n" if $DEBUG > 1;
3036       $tax += $tax{$taxitem};
3037       push @cust_bill_pkg_tax_location,
3038         map { new FS::cust_bill_pkg_tax_location $_ }
3039             @{ $tax_location{ $taxitem } };
3040       push @cust_bill_pkg_tax_rate_location,
3041         map { new FS::cust_bill_pkg_tax_rate_location $_ }
3042             @{ $tax_rate_location{ $taxitem } };
3043     }
3044     next unless $tax;
3045
3046     $tax = sprintf('%.2f', $tax );
3047   
3048     my $pkg_category = qsearchs( 'pkg_category', { 'categoryname' => $taxname,
3049                                                    'disabled'     => '',
3050                                                  },
3051                                );
3052
3053     my @display = ();
3054     if ( $pkg_category and
3055          $conf->config('invoice_latexsummary') ||
3056          $conf->config('invoice_htmlsummary')
3057        )
3058     {
3059
3060       my %hash = (  'section' => $pkg_category->categoryname );
3061       push @display, new FS::cust_bill_pkg_display { type => 'S', %hash };
3062
3063     }
3064
3065     push @tax_line_items, new FS::cust_bill_pkg {
3066       'pkgnum'   => 0,
3067       'setup'    => $tax,
3068       'recur'    => 0,
3069       'sdate'    => '',
3070       'edate'    => '',
3071       'itemdesc' => $taxname,
3072       'display'  => \@display,
3073       'cust_bill_pkg_tax_location' => \@cust_bill_pkg_tax_location,
3074       'cust_bill_pkg_tax_rate_location' => \@cust_bill_pkg_tax_rate_location,
3075     };
3076
3077   }
3078
3079   \@tax_line_items;
3080 }
3081
3082 sub _make_lines {
3083   my ($self, %params) = @_;
3084
3085   my $part_pkg = $params{part_pkg} or die "no part_pkg specified";
3086   my $cust_pkg = $params{cust_pkg} or die "no cust_pkg specified";
3087   my $precommit_hooks = $params{precommit_hooks} or die "no package specified";
3088   my $cust_bill_pkgs = $params{line_items} or die "no line buffer specified";
3089   my $total_setup = $params{setup} or die "no setup accumulator specified";
3090   my $total_recur = $params{recur} or die "no recur accumulator specified";
3091   my $taxlisthash = $params{tax_matrix} or die "no tax accumulator specified";
3092   my $time = $params{'time'} or die "no time specified";
3093   my (%options) = %{$params{options}};
3094
3095   my $dbh = dbh;
3096   my $real_pkgpart = $params{real_pkgpart};
3097   my %hash = $cust_pkg->hash;
3098   my $old_cust_pkg = new FS::cust_pkg \%hash;
3099
3100   my @details = ();
3101   my @discounts = ();
3102   my $lineitems = 0;
3103
3104   $cust_pkg->pkgpart($part_pkg->pkgpart);
3105
3106   ###
3107   # bill setup
3108   ###
3109
3110   my $setup = 0;
3111   my $unitsetup = 0;
3112   if ( $options{'resetup'}
3113        || ( ! $cust_pkg->setup
3114             && ( ! $cust_pkg->start_date
3115                  || $cust_pkg->start_date <= $time
3116                )
3117             && ( ! $conf->exists('disable_setup_suspended_pkgs')
3118                  || ( $conf->exists('disable_setup_suspended_pkgs') &&
3119                       ! $cust_pkg->getfield('susp')
3120                     )
3121                )
3122           )
3123     )
3124   {
3125     
3126     warn "    bill setup\n" if $DEBUG > 1;
3127     $lineitems++;
3128
3129     $setup = eval { $cust_pkg->calc_setup( $time, \@details ) };
3130     return "$@ running calc_setup for $cust_pkg\n"
3131       if $@;
3132
3133     $unitsetup = $cust_pkg->part_pkg->unit_setup || $setup; #XXX uuh
3134
3135     $cust_pkg->setfield('setup', $time)
3136       unless $cust_pkg->setup;
3137           #do need it, but it won't get written to the db
3138           #|| $cust_pkg->pkgpart != $real_pkgpart;
3139
3140     $cust_pkg->setfield('start_date', '')
3141       if $cust_pkg->start_date;
3142
3143   }
3144
3145   ###
3146   # bill recurring fee
3147   ### 
3148
3149   #XXX unit stuff here too
3150   my $recur = 0;
3151   my $unitrecur = 0;
3152   my $sdate;
3153   if (     ! $cust_pkg->get('susp')
3154        and ! $cust_pkg->get('start_date')
3155        and ( $part_pkg->getfield('freq') ne '0'
3156              && ( $cust_pkg->getfield('bill') || 0 ) <= $time
3157            )
3158         || ( $part_pkg->plan eq 'voip_cdr'
3159               && $part_pkg->option('bill_every_call')
3160            )
3161         || ( $options{cancel} )
3162   ) {
3163
3164     # XXX should this be a package event?  probably.  events are called
3165     # at collection time at the moment, though...
3166     $part_pkg->reset_usage($cust_pkg, 'debug'=>$DEBUG)
3167       if $part_pkg->can('reset_usage');
3168       #don't want to reset usage just cause we want a line item??
3169       #&& $part_pkg->pkgpart == $real_pkgpart;
3170
3171     warn "    bill recur\n" if $DEBUG > 1;
3172     $lineitems++;
3173
3174     # XXX shared with $recur_prog
3175     $sdate = ( $options{cancel} ? $cust_pkg->last_bill : $cust_pkg->bill )
3176              || $cust_pkg->setup
3177              || $time;
3178
3179     #over two params!  lets at least switch to a hashref for the rest...
3180     my $increment_next_bill = ( $part_pkg->freq ne '0'
3181                                 && ( $cust_pkg->getfield('bill') || 0 ) <= $time
3182                                 && !$options{cancel}
3183                               );
3184     my %param = ( 'precommit_hooks'     => $precommit_hooks,
3185                   'increment_next_bill' => $increment_next_bill,
3186                   'discounts'           => \@discounts,
3187                 );
3188
3189     my $method = $options{cancel} ? 'calc_cancel' : 'calc_recur';
3190     $recur = eval { $cust_pkg->$method( \$sdate, \@details, \%param ) };
3191     return "$@ running $method for $cust_pkg\n"
3192       if ( $@ );
3193
3194     if ( $increment_next_bill ) {
3195
3196       my $next_bill = $part_pkg->add_freq($sdate);
3197       return "unparsable frequency: ". $part_pkg->freq
3198         if $next_bill == -1;
3199   
3200       #pro-rating magic - if $recur_prog fiddled $sdate, want to use that
3201       # only for figuring next bill date, nothing else, so, reset $sdate again
3202       # here
3203       $sdate = $cust_pkg->bill || $cust_pkg->setup || $time;
3204       #no need, its in $hash{last_bill}# my $last_bill = $cust_pkg->last_bill;
3205       $cust_pkg->last_bill($sdate);
3206
3207       $cust_pkg->setfield('bill', $next_bill );
3208
3209     }
3210
3211   }
3212
3213   warn "\$setup is undefined" unless defined($setup);
3214   warn "\$recur is undefined" unless defined($recur);
3215   warn "\$cust_pkg->bill is undefined" unless defined($cust_pkg->bill);
3216   
3217   ###
3218   # If there's line items, create em cust_bill_pkg records
3219   # If $cust_pkg has been modified, update it (if we're a real pkgpart)
3220   ###
3221
3222   if ( $lineitems ) {
3223
3224     if ( $cust_pkg->modified && $cust_pkg->pkgpart == $real_pkgpart ) {
3225       # hmm.. and if just the options are modified in some weird price plan?
3226   
3227       warn "  package ". $cust_pkg->pkgnum. " modified; updating\n"
3228         if $DEBUG >1;
3229   
3230       my $error = $cust_pkg->replace( $old_cust_pkg,
3231                                       'options' => { $cust_pkg->options },
3232                                     );
3233       return "Error modifying pkgnum ". $cust_pkg->pkgnum. ": $error"
3234         if $error; #just in case
3235     }
3236   
3237     $setup = sprintf( "%.2f", $setup );
3238     $recur = sprintf( "%.2f", $recur );
3239     if ( $setup < 0 && ! $conf->exists('allow_negative_charges') ) {
3240       return "negative setup $setup for pkgnum ". $cust_pkg->pkgnum;
3241     }
3242     if ( $recur < 0 && ! $conf->exists('allow_negative_charges') ) {
3243       return "negative recur $recur for pkgnum ". $cust_pkg->pkgnum;
3244     }
3245
3246     if ( $setup != 0 || $recur != 0 ) {
3247
3248       warn "    charges (setup=$setup, recur=$recur); adding line items\n"
3249         if $DEBUG > 1;
3250
3251       my @cust_pkg_detail = map { $_->detail } $cust_pkg->cust_pkg_detail('I');
3252       if ( $DEBUG > 1 ) {
3253         warn "      adding customer package invoice detail: $_\n"
3254           foreach @cust_pkg_detail;
3255       }
3256       push @details, @cust_pkg_detail;
3257
3258       my $cust_bill_pkg = new FS::cust_bill_pkg {
3259         'pkgnum'    => $cust_pkg->pkgnum,
3260         'setup'     => $setup,
3261         'unitsetup' => $unitsetup,
3262         'recur'     => $recur,
3263         'unitrecur' => $unitrecur,
3264         'quantity'  => $cust_pkg->quantity,
3265         'details'   => \@details,
3266         'discounts' => \@discounts,
3267         'hidden'    => $part_pkg->hidden,
3268       };
3269
3270       if ( $part_pkg->option('recur_temporality', 1) eq 'preceding' ) {
3271         $cust_bill_pkg->sdate( $hash{last_bill} );
3272         $cust_bill_pkg->edate( $sdate - 86399   ); #60s*60m*24h-1
3273         $cust_bill_pkg->edate( $time ) if $options{cancel};
3274       } else { #if ( $part_pkg->option('recur_temporality', 1) eq 'upcoming' ) {
3275         $cust_bill_pkg->sdate( $sdate );
3276         $cust_bill_pkg->edate( $cust_pkg->bill );
3277         #$cust_bill_pkg->edate( $time ) if $options{cancel};
3278       }
3279
3280       $cust_bill_pkg->pkgpart_override($part_pkg->pkgpart)
3281         unless $part_pkg->pkgpart == $real_pkgpart;
3282
3283       $$total_setup += $setup;
3284       $$total_recur += $recur;
3285
3286       ###
3287       # handle taxes
3288       ###
3289
3290       my $error = 
3291         $self->_handle_taxes($part_pkg, $taxlisthash, $cust_bill_pkg, $cust_pkg, $options{invoice_time}, $real_pkgpart, \%options);
3292       return $error if $error;
3293
3294       push @$cust_bill_pkgs, $cust_bill_pkg;
3295
3296     } #if $setup != 0 || $recur != 0
3297       
3298   } #if $line_items
3299
3300   '';
3301
3302 }
3303
3304 sub _handle_taxes {
3305   my $self = shift;
3306   my $part_pkg = shift;
3307   my $taxlisthash = shift;
3308   my $cust_bill_pkg = shift;
3309   my $cust_pkg = shift;
3310   my $invoice_time = shift;
3311   my $real_pkgpart = shift;
3312   my $options = shift;
3313
3314   my %cust_bill_pkg = ();
3315   my %taxes = ();
3316     
3317   my @classes;
3318   #push @classes, $cust_bill_pkg->usage_classes if $cust_bill_pkg->type eq 'U';
3319   push @classes, $cust_bill_pkg->usage_classes if $cust_bill_pkg->usage;
3320   push @classes, 'setup' if ($cust_bill_pkg->setup && !$options->{cancel});
3321   push @classes, 'recur' if ($cust_bill_pkg->recur && !$options->{cancel});
3322
3323   if ( $self->tax !~ /Y/i && $self->payby ne 'COMP' ) {
3324
3325     if ( $conf->exists('enable_taxproducts')
3326          && ( scalar($part_pkg->part_pkg_taxoverride)
3327               || $part_pkg->has_taxproduct
3328             )
3329        )
3330     {
3331
3332       if ( $conf->exists('tax-pkg_address') && $cust_pkg->locationnum ) {
3333         return "fatal: Can't (yet) use tax-pkg_address with taxproducts";
3334       }
3335
3336       foreach my $class (@classes) {
3337         my $err_or_ref = $self->_gather_taxes( $part_pkg, $class );
3338         return $err_or_ref unless ref($err_or_ref);
3339         $taxes{$class} = $err_or_ref;
3340       }
3341
3342       unless (exists $taxes{''}) {
3343         my $err_or_ref = $self->_gather_taxes( $part_pkg, '' );
3344         return $err_or_ref unless ref($err_or_ref);
3345         $taxes{''} = $err_or_ref;
3346       }
3347
3348     } else {
3349
3350       my @loc_keys = qw( city county state country );
3351       my %taxhash;
3352       if ( $conf->exists('tax-pkg_address') && $cust_pkg->locationnum ) {
3353         my $cust_location = $cust_pkg->cust_location;
3354         %taxhash = map { $_ => $cust_location->$_()    } @loc_keys;
3355       } else {
3356         my $prefix = 
3357           ( $conf->exists('tax-ship_address') && length($self->ship_last) )
3358           ? 'ship_'
3359           : '';
3360         %taxhash = map { $_ => $self->get("$prefix$_") } @loc_keys;
3361       }
3362
3363       $taxhash{'taxclass'} = $part_pkg->taxclass;
3364
3365       my @taxes = ();
3366       my %taxhash_elim = %taxhash;
3367       my @elim = qw( city county state );
3368       do { 
3369
3370         #first try a match with taxclass
3371         @taxes = qsearch( 'cust_main_county', \%taxhash_elim );
3372
3373         if ( !scalar(@taxes) && $taxhash_elim{'taxclass'} ) {
3374           #then try a match without taxclass
3375           my %no_taxclass = %taxhash_elim;
3376           $no_taxclass{ 'taxclass' } = '';
3377           @taxes = qsearch( 'cust_main_county', \%no_taxclass );
3378         }
3379
3380         $taxhash_elim{ shift(@elim) } = '';
3381
3382       } while ( !scalar(@taxes) && scalar(@elim) );
3383
3384       @taxes = grep { ! $_->taxname or ! $self->tax_exemption($_->taxname) }
3385                     @taxes
3386         if $self->cust_main_exemption; #just to be safe
3387
3388       if ( $conf->exists('tax-pkg_address') && $cust_pkg->locationnum ) {
3389         foreach (@taxes) {
3390           $_->set('pkgnum',      $cust_pkg->pkgnum );
3391           $_->set('locationnum', $cust_pkg->locationnum );
3392         }
3393       }
3394
3395       $taxes{''} = [ @taxes ];
3396       $taxes{'setup'} = [ @taxes ];
3397       $taxes{'recur'} = [ @taxes ];
3398       $taxes{$_} = [ @taxes ] foreach (@classes);
3399
3400       # # maybe eliminate this entirely, along with all the 0% records
3401       # unless ( @taxes ) {
3402       #   return
3403       #     "fatal: can't find tax rate for state/county/country/taxclass ".
3404       #     join('/', map $taxhash{$_}, qw(state county country taxclass) );
3405       # }
3406
3407     } #if $conf->exists('enable_taxproducts') ...
3408
3409   }
3410  
3411   my @display = ();
3412   my $separate = $conf->exists('separate_usage');
3413   my $usage_mandate = $cust_pkg->part_pkg->option('usage_mandate', 'Hush!');
3414   if ( $separate || $cust_bill_pkg->hidden || $usage_mandate ) {
3415
3416     my $temp_pkg = new FS::cust_pkg { pkgpart => $real_pkgpart };
3417     my %hash = $cust_bill_pkg->hidden  # maybe for all bill linked?
3418                ? (  'section' => $temp_pkg->part_pkg->categoryname )
3419                : ();
3420
3421     my $section = $cust_pkg->part_pkg->option('usage_section', 'Hush!');
3422     my $summary = $cust_pkg->part_pkg->option('summarize_usage', 'Hush!');
3423     if ( $separate ) {
3424       push @display, new FS::cust_bill_pkg_display { type => 'S', %hash };
3425       push @display, new FS::cust_bill_pkg_display { type => 'R', %hash };
3426     } else {
3427       push @display, new FS::cust_bill_pkg_display
3428                        { type => '',
3429                          %hash,
3430                          ( ( $usage_mandate ) ? ( 'summary' => 'Y' ) : () ),
3431                        };
3432     }
3433
3434     if ($separate && $section && $summary) {
3435       push @display, new FS::cust_bill_pkg_display { type    => 'U',
3436                                                      summary => 'Y',
3437                                                      %hash,
3438                                                    };
3439     }
3440     if ($usage_mandate || $section && $summary) {
3441       $hash{post_total} = 'Y';
3442     }
3443
3444     $hash{section} = $section if ($separate || $usage_mandate);
3445     push @display, new FS::cust_bill_pkg_display { type => 'U', %hash };
3446
3447   }
3448   $cust_bill_pkg->set('display', \@display);
3449
3450   my %tax_cust_bill_pkg = $cust_bill_pkg->disintegrate;
3451   foreach my $key (keys %tax_cust_bill_pkg) {
3452     my @taxes = @{ $taxes{$key} || [] };
3453     my $tax_cust_bill_pkg = $tax_cust_bill_pkg{$key};
3454
3455     my %localtaxlisthash = ();
3456     foreach my $tax ( @taxes ) {
3457
3458       my $taxname = ref( $tax ). ' '. $tax->taxnum;
3459 #      $taxname .= ' pkgnum'. $cust_pkg->pkgnum.
3460 #                  ' locationnum'. $cust_pkg->locationnum
3461 #        if $conf->exists('tax-pkg_address') && $cust_pkg->locationnum;
3462
3463       $taxlisthash->{ $taxname } ||= [ $tax ];
3464       push @{ $taxlisthash->{ $taxname  } }, $tax_cust_bill_pkg;
3465
3466       $localtaxlisthash{ $taxname } ||= [ $tax ];
3467       push @{ $localtaxlisthash{ $taxname  } }, $tax_cust_bill_pkg;
3468
3469     }
3470
3471     warn "finding taxed taxes...\n" if $DEBUG > 2;
3472     foreach my $tax ( keys %localtaxlisthash ) {
3473       my $tax_object = shift @{ $localtaxlisthash{$tax} };
3474       warn "found possible taxed tax ". $tax_object->taxname. " we call $tax\n"
3475         if $DEBUG > 2;
3476       next unless $tax_object->can('tax_on_tax');
3477
3478       foreach my $tot ( $tax_object->tax_on_tax( $self ) ) {
3479         my $totname = ref( $tot ). ' '. $tot->taxnum;
3480
3481         warn "checking $totname which we call ". $tot->taxname. " as applicable\n"
3482           if $DEBUG > 2;
3483         next unless exists( $localtaxlisthash{ $totname } ); # only increase
3484                                                              # existing taxes
3485         warn "adding $totname to taxed taxes\n" if $DEBUG > 2;
3486         my $hashref_or_error = 
3487           $tax_object->taxline( $localtaxlisthash{$tax},
3488                                 'custnum'      => $self->custnum,
3489                                 'invoice_time' => $invoice_time,
3490                               );
3491         return $hashref_or_error
3492           unless ref($hashref_or_error);
3493         
3494         $taxlisthash->{ $totname } ||= [ $tot ];
3495         push @{ $taxlisthash->{ $totname  } }, $hashref_or_error->{amount};
3496
3497       }
3498     }
3499
3500   }
3501
3502   '';
3503 }
3504
3505 sub _gather_taxes {
3506   my $self = shift;
3507   my $part_pkg = shift;
3508   my $class = shift;
3509
3510   my @taxes = ();
3511   my $geocode = $self->geocode('cch');
3512
3513   my @taxclassnums = map { $_->taxclassnum }
3514                      $part_pkg->part_pkg_taxoverride($class);
3515
3516   unless (@taxclassnums) {
3517     @taxclassnums = map { $_->taxclassnum }
3518                     grep { $_->taxable eq 'Y' }
3519                     $part_pkg->part_pkg_taxrate('cch', $geocode, $class);
3520   }
3521   warn "Found taxclassnum values of ". join(',', @taxclassnums)
3522     if $DEBUG;
3523
3524   my $extra_sql =
3525     "AND (".
3526     join(' OR ', map { "taxclassnum = $_" } @taxclassnums ). ")";
3527
3528   @taxes = qsearch({ 'table' => 'tax_rate',
3529                      'hashref' => { 'geocode' => $geocode, },
3530                      'extra_sql' => $extra_sql,
3531                   })
3532     if scalar(@taxclassnums);
3533
3534   warn "Found taxes ".
3535        join(',', map{ ref($_). " ". $_->get($_->primary_key) } @taxes). "\n" 
3536    if $DEBUG;
3537
3538   [ @taxes ];
3539
3540 }
3541
3542 =item collect [ HASHREF | OPTION => VALUE ... ]
3543
3544 (Attempt to) collect money for this customer's outstanding invoices (see
3545 L<FS::cust_bill>).  Usually used after the bill method.
3546
3547 Actions are now triggered by billing events; see L<FS::part_event> and the
3548 billing events web interface.  Old-style invoice events (see
3549 L<FS::part_bill_event>) have been deprecated.
3550
3551 If there is an error, returns the error, otherwise returns false.
3552
3553 Options are passed as name-value pairs.
3554
3555 Currently available options are:
3556
3557 =over 4
3558
3559 =item invoice_time
3560
3561 Use this time when deciding when to print invoices and late notices on those invoices.  The default is now.  It is specified as a UNIX timestamp; see L<perlfunc/"time">).  Also see L<Time::Local> and L<Date::Parse> for conversion functions.
3562
3563 =item retry
3564
3565 Retry card/echeck/LEC transactions even when not scheduled by invoice events.
3566
3567 =item check_freq
3568
3569 "1d" for the traditional, daily events (the default), or "1m" for the new monthly events (part_event.check_freq)
3570
3571 =item quiet
3572
3573 set true to surpress email card/ACH decline notices.
3574
3575 =item debug
3576
3577 Debugging level.  Default is 0 (no debugging), or can be set to 1 (passed-in options), 2 (traces progress), 3 (more information), or 4 (include full search queries)
3578
3579 =back
3580
3581 # =item payby
3582 #
3583 # allows for one time override of normal customer billing method
3584
3585 =cut
3586
3587 sub collect {
3588   my( $self, %options ) = @_;
3589   my $invoice_time = $options{'invoice_time'} || time;
3590
3591   #put below somehow?
3592   local $SIG{HUP} = 'IGNORE';
3593   local $SIG{INT} = 'IGNORE';
3594   local $SIG{QUIT} = 'IGNORE';
3595   local $SIG{TERM} = 'IGNORE';
3596   local $SIG{TSTP} = 'IGNORE';
3597   local $SIG{PIPE} = 'IGNORE';
3598
3599   my $oldAutoCommit = $FS::UID::AutoCommit;
3600   local $FS::UID::AutoCommit = 0;
3601   my $dbh = dbh;
3602
3603   $self->select_for_update; #mutex
3604
3605   if ( $DEBUG ) {
3606     my $balance = $self->balance;
3607     warn "$me collect customer ". $self->custnum. ": balance $balance\n"
3608   }
3609
3610   if ( exists($options{'retry_card'}) ) {
3611     carp 'retry_card option passed to collect is deprecated; use retry';
3612     $options{'retry'} ||= $options{'retry_card'};
3613   }
3614   if ( exists($options{'retry'}) && $options{'retry'} ) {
3615     my $error = $self->retry_realtime;
3616     if ( $error ) {
3617       $dbh->rollback if $oldAutoCommit;
3618       return $error;
3619     }
3620   }
3621
3622   my $error = $self->do_cust_event(
3623     'debug'      => ( $options{'debug'} || 0 ),
3624     'time'       => $invoice_time,
3625     'check_freq' => $options{'check_freq'},
3626     'stage'      => 'collect',
3627   );
3628   if ( $error ) {
3629     $dbh->rollback if $oldAutoCommit;
3630     return $error;
3631   }
3632
3633   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
3634   '';
3635
3636 }
3637
3638 =item do_cust_event [ HASHREF | OPTION => VALUE ... ]
3639
3640 Runs billing events; see L<FS::part_event> and the billing events web
3641 interface.
3642
3643 If there is an error, returns the error, otherwise returns false.
3644
3645 Options are passed as name-value pairs.
3646
3647 Currently available options are:
3648
3649 =over 4
3650
3651 =item time
3652
3653 Use this time when deciding when to print invoices and late notices on those invoices.  The default is now.  It is specified as a UNIX timestamp; see L<perlfunc/"time">).  Also see L<Time::Local> and L<Date::Parse> for conversion functions.
3654
3655 =item check_freq
3656
3657 "1d" for the traditional, daily events (the default), or "1m" for the new monthly events (part_event.check_freq)
3658
3659 =item stage
3660
3661 "collect" (the default) or "pre-bill"
3662
3663 =item quiet
3664  
3665 set true to surpress email card/ACH decline notices.
3666
3667 =item debug
3668
3669 Debugging level.  Default is 0 (no debugging), or can be set to 1 (passed-in options), 2 (traces progress), 3 (more information), or 4 (include full search queries)
3670
3671 =cut
3672
3673 # =item payby
3674 #
3675 # allows for one time override of normal customer billing method
3676
3677 # =item retry
3678 #
3679 # Retry card/echeck/LEC transactions even when not scheduled by invoice events.
3680
3681 sub do_cust_event {
3682   my( $self, %options ) = @_;
3683   my $time = $options{'time'} || time;
3684
3685   #put below somehow?
3686   local $SIG{HUP} = 'IGNORE';
3687   local $SIG{INT} = 'IGNORE';
3688   local $SIG{QUIT} = 'IGNORE';
3689   local $SIG{TERM} = 'IGNORE';
3690   local $SIG{TSTP} = 'IGNORE';
3691   local $SIG{PIPE} = 'IGNORE';
3692
3693   my $oldAutoCommit = $FS::UID::AutoCommit;
3694   local $FS::UID::AutoCommit = 0;
3695   my $dbh = dbh;
3696
3697   $self->select_for_update; #mutex
3698
3699   if ( $DEBUG ) {
3700     my $balance = $self->balance;
3701     warn "$me do_cust_event customer ". $self->custnum. ": balance $balance\n"
3702   }
3703
3704 #  if ( exists($options{'retry_card'}) ) {
3705 #    carp 'retry_card option passed to collect is deprecated; use retry';
3706 #    $options{'retry'} ||= $options{'retry_card'};
3707 #  }
3708 #  if ( exists($options{'retry'}) && $options{'retry'} ) {
3709 #    my $error = $self->retry_realtime;
3710 #    if ( $error ) {
3711 #      $dbh->rollback if $oldAutoCommit;
3712 #      return $error;
3713 #    }
3714 #  }
3715
3716   # false laziness w/pay_batch::import_results
3717
3718   my $due_cust_event = $self->due_cust_event(
3719     'debug'      => ( $options{'debug'} || 0 ),
3720     'time'       => $time,
3721     'check_freq' => $options{'check_freq'},
3722     'stage'      => ( $options{'stage'} || 'collect' ),
3723   );
3724   unless( ref($due_cust_event) ) {
3725     $dbh->rollback if $oldAutoCommit;
3726     return $due_cust_event;
3727   }
3728
3729   foreach my $cust_event ( @$due_cust_event ) {
3730
3731     #XXX lock event
3732     
3733     #re-eval event conditions (a previous event could have changed things)
3734     unless ( $cust_event->test_conditions( 'time' => $time ) ) {
3735       #don't leave stray "new/locked" records around
3736       my $error = $cust_event->delete;
3737       if ( $error ) {
3738         #gah, even with transactions
3739         $dbh->commit if $oldAutoCommit; #well.
3740         return $error;
3741       }
3742       next;
3743     }
3744
3745     {
3746       local $realtime_bop_decline_quiet = 1 if $options{'quiet'};
3747       warn "  running cust_event ". $cust_event->eventnum. "\n"
3748         if $DEBUG > 1;
3749
3750       
3751       #if ( my $error = $cust_event->do_event(%options) ) { #XXX %options?
3752       if ( my $error = $cust_event->do_event() ) {
3753         #XXX wtf is this?  figure out a proper dealio with return value
3754         #from do_event
3755           # gah, even with transactions.
3756           $dbh->commit if $oldAutoCommit; #well.
3757           return $error;
3758         }
3759     }
3760
3761   }
3762
3763   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
3764   '';
3765
3766 }
3767
3768 =item due_cust_event [ HASHREF | OPTION => VALUE ... ]
3769
3770 Inserts database records for and returns an ordered listref of new events due
3771 for this customer, as FS::cust_event objects (see L<FS::cust_event>).  If no
3772 events are due, an empty listref is returned.  If there is an error, returns a
3773 scalar error message.
3774
3775 To actually run the events, call each event's test_condition method, and if
3776 still true, call the event's do_event method.
3777
3778 Options are passed as a hashref or as a list of name-value pairs.  Available
3779 options are:
3780
3781 =over 4
3782
3783 =item check_freq
3784
3785 Search only for events of this check frequency (how often events of this type are checked); currently "1d" (daily, the default) and "1m" (monthly) are recognized.
3786
3787 =item stage
3788
3789 "collect" (the default) or "pre-bill"
3790
3791 =item time
3792
3793 "Current time" for the events.
3794
3795 =item debug
3796
3797 Debugging level.  Default is 0 (no debugging), or can be set to 1 (passed-in options), 2 (traces progress), 3 (more information), or 4 (include full search queries)
3798
3799 =item eventtable
3800
3801 Only return events for the specified eventtable (by default, events of all eventtables are returned)
3802
3803 =item objects
3804
3805 Explicitly pass the objects to be tested (typically used with eventtable).
3806
3807 =item testonly
3808
3809 Set to true to return the objects, but not actually insert them into the
3810 database.
3811
3812 =back
3813
3814 =cut
3815
3816 sub due_cust_event {
3817   my $self = shift;
3818   my %opt = ref($_[0]) ? %{ $_[0] } : @_;
3819
3820   #???
3821   #my $DEBUG = $opt{'debug'}
3822   local($DEBUG) = $opt{'debug'}
3823     if defined($opt{'debug'}) && $opt{'debug'} > $DEBUG;
3824
3825   warn "$me due_cust_event called with options ".
3826        join(', ', map { "$_: $opt{$_}" } keys %opt). "\n"
3827     if $DEBUG;
3828
3829   $opt{'time'} ||= time;
3830
3831   local $SIG{HUP} = 'IGNORE';
3832   local $SIG{INT} = 'IGNORE';
3833   local $SIG{QUIT} = 'IGNORE';
3834   local $SIG{TERM} = 'IGNORE';
3835   local $SIG{TSTP} = 'IGNORE';
3836   local $SIG{PIPE} = 'IGNORE';
3837
3838   my $oldAutoCommit = $FS::UID::AutoCommit;
3839   local $FS::UID::AutoCommit = 0;
3840   my $dbh = dbh;
3841
3842   $self->select_for_update #mutex
3843     unless $opt{testonly};
3844
3845   ###
3846   # find possible events (initial search)
3847   ###
3848   
3849   my @cust_event = ();
3850
3851   my @eventtable = $opt{'eventtable'}
3852                      ? ( $opt{'eventtable'} )
3853                      : FS::part_event->eventtables_runorder;
3854
3855   foreach my $eventtable ( @eventtable ) {
3856
3857     my @objects;
3858     if ( $opt{'objects'} ) {
3859
3860       @objects = @{ $opt{'objects'} };
3861
3862     } else {
3863
3864       #my @objects = $self->eventtable(); # sub cust_main { @{ [ $self ] }; }
3865       @objects = ( $eventtable eq 'cust_main' )
3866                    ? ( $self )
3867                    : ( $self->$eventtable() );
3868
3869     }
3870
3871     my @e_cust_event = ();
3872
3873     my $cross = "CROSS JOIN $eventtable";
3874     $cross .= ' LEFT JOIN cust_main USING ( custnum )'
3875       unless $eventtable eq 'cust_main';
3876
3877     foreach my $object ( @objects ) {
3878
3879       #this first search uses the condition_sql magic for optimization.
3880       #the more possible events we can eliminate in this step the better
3881
3882       my $cross_where = '';
3883       my $pkey = $object->primary_key;
3884       $cross_where = "$eventtable.$pkey = ". $object->$pkey();
3885
3886       my $join = FS::part_event_condition->join_conditions_sql( $eventtable );
3887       my $extra_sql =
3888         FS::part_event_condition->where_conditions_sql( $eventtable,
3889                                                         'time'=>$opt{'time'}
3890                                                       );
3891       my $order = FS::part_event_condition->order_conditions_sql( $eventtable );
3892
3893       $extra_sql = "AND $extra_sql" if $extra_sql;
3894
3895       #here is the agent virtualization
3896       $extra_sql .= " AND (    part_event.agentnum IS NULL
3897                             OR part_event.agentnum = ". $self->agentnum. ' )';
3898
3899       $extra_sql .= " $order";
3900
3901       warn "searching for events for $eventtable ". $object->$pkey. "\n"
3902         if $opt{'debug'} > 2;
3903       my @part_event = qsearch( {
3904         'debug'     => ( $opt{'debug'} > 3 ? 1 : 0 ),
3905         'select'    => 'part_event.*',
3906         'table'     => 'part_event',
3907         'addl_from' => "$cross $join",
3908         'hashref'   => { 'check_freq' => ( $opt{'check_freq'} || '1d' ),
3909                          'eventtable' => $eventtable,
3910                          'disabled'   => '',
3911                        },
3912         'extra_sql' => "AND $cross_where $extra_sql",
3913       } );
3914
3915       if ( $DEBUG > 2 ) {
3916         my $pkey = $object->primary_key;
3917         warn "      ". scalar(@part_event).
3918              " possible events found for $eventtable ". $object->$pkey(). "\n";
3919       }
3920
3921       push @e_cust_event, map { $_->new_cust_event($object) } @part_event;
3922
3923     }
3924
3925     warn "    ". scalar(@e_cust_event).
3926          " subtotal possible cust events found for $eventtable\n"
3927       if $DEBUG > 1;
3928
3929     push @cust_event, @e_cust_event;
3930
3931   }
3932
3933   warn "  ". scalar(@cust_event).
3934        " total possible cust events found in initial search\n"
3935     if $DEBUG; # > 1;
3936
3937
3938   ##
3939   # test stage
3940   ##
3941
3942   $opt{stage} ||= 'collect';
3943   @cust_event =
3944     grep { my $stage = $_->part_event->event_stage;
3945            $opt{stage} eq $stage or ( ! $stage && $opt{stage} eq 'collect' )
3946          }
3947          @cust_event;
3948
3949   ##
3950   # test conditions
3951   ##
3952   
3953   my %unsat = ();
3954
3955   @cust_event = grep $_->test_conditions( 'time'          => $opt{'time'},
3956                                           'stats_hashref' => \%unsat ),
3957                      @cust_event;
3958
3959   warn "  ". scalar(@cust_event). " cust events left satisfying conditions\n"
3960     if $DEBUG; # > 1;
3961
3962   warn "    invalid conditions not eliminated with condition_sql:\n".
3963        join('', map "      $_: ".$unsat{$_}."\n", keys %unsat )
3964     if keys %unsat && $DEBUG; # > 1;
3965
3966   ##
3967   # insert
3968   ##
3969
3970   unless( $opt{testonly} ) {
3971     foreach my $cust_event ( @cust_event ) {
3972
3973       my $error = $cust_event->insert();
3974       if ( $error ) {
3975         $dbh->rollback if $oldAutoCommit;
3976         return $error;
3977       }
3978                                        
3979     }
3980   }
3981
3982   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
3983
3984   ##
3985   # return
3986   ##
3987
3988   warn "  returning events: ". Dumper(@cust_event). "\n"
3989     if $DEBUG > 2;
3990
3991   \@cust_event;
3992
3993 }
3994
3995 =item retry_realtime
3996
3997 Schedules realtime / batch  credit card / electronic check / LEC billing
3998 events for for retry.  Useful if card information has changed or manual
3999 retry is desired.  The 'collect' method must be called to actually retry
4000 the transaction.
4001
4002 Implementation details: For either this customer, or for each of this
4003 customer's open invoices, changes the status of the first "done" (with
4004 statustext error) realtime processing event to "failed".
4005
4006 =cut
4007
4008 sub retry_realtime {
4009   my $self = shift;
4010
4011   local $SIG{HUP} = 'IGNORE';
4012   local $SIG{INT} = 'IGNORE';
4013   local $SIG{QUIT} = 'IGNORE';
4014   local $SIG{TERM} = 'IGNORE';
4015   local $SIG{TSTP} = 'IGNORE';
4016   local $SIG{PIPE} = 'IGNORE';
4017
4018   my $oldAutoCommit = $FS::UID::AutoCommit;
4019   local $FS::UID::AutoCommit = 0;
4020   my $dbh = dbh;
4021
4022   #a little false laziness w/due_cust_event (not too bad, really)
4023
4024   my $join = FS::part_event_condition->join_conditions_sql;
4025   my $order = FS::part_event_condition->order_conditions_sql;
4026   my $mine = 
4027   '( '
4028    . join ( ' OR ' , map { 
4029     "( part_event.eventtable = " . dbh->quote($_) 
4030     . " AND tablenum IN( SELECT " . dbdef->table($_)->primary_key . " from $_ where custnum = " . dbh->quote( $self->custnum ) . "))" ;
4031    } FS::part_event->eventtables)
4032    . ') ';
4033
4034   #here is the agent virtualization
4035   my $agent_virt = " (    part_event.agentnum IS NULL
4036                        OR part_event.agentnum = ". $self->agentnum. ' )';
4037
4038   #XXX this shouldn't be hardcoded, actions should declare it...
4039   my @realtime_events = qw(
4040     cust_bill_realtime_card
4041     cust_bill_realtime_check
4042     cust_bill_realtime_lec
4043     cust_bill_batch
4044   );
4045
4046   my $is_realtime_event = ' ( '. join(' OR ', map "part_event.action = '$_'",
4047                                                   @realtime_events
4048                                      ).
4049                           ' ) ';
4050
4051   my @cust_event = qsearchs({
4052     'table'     => 'cust_event',
4053     'select'    => 'cust_event.*',
4054     'addl_from' => "LEFT JOIN part_event USING ( eventpart ) $join",
4055     'hashref'   => { 'status' => 'done' },
4056     'extra_sql' => " AND statustext IS NOT NULL AND statustext != '' ".
4057                    " AND $mine AND $is_realtime_event AND $agent_virt $order" # LIMIT 1"
4058   });
4059
4060   my %seen_invnum = ();
4061   foreach my $cust_event (@cust_event) {
4062
4063     #max one for the customer, one for each open invoice
4064     my $cust_X = $cust_event->cust_X;
4065     next if $seen_invnum{ $cust_event->part_event->eventtable eq 'cust_bill'
4066                           ? $cust_X->invnum
4067                           : 0
4068                         }++
4069          or $cust_event->part_event->eventtable eq 'cust_bill'
4070             && ! $cust_X->owed;
4071
4072     my $error = $cust_event->retry;
4073     if ( $error ) {
4074       $dbh->rollback if $oldAutoCommit;
4075       return "error scheduling event for retry: $error";
4076     }
4077
4078   }
4079
4080   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
4081   '';
4082
4083 }
4084
4085
4086 =cut
4087
4088 =item realtime_collect [ OPTION => VALUE ... ]
4089
4090 Runs a realtime credit card, ACH (electronic check) or phone bill transaction
4091 via a Business::OnlinePayment or Business::OnlineThirdPartyPayment realtime
4092 gateway.  See L<http://420.am/business-onlinepayment> and 
4093 L<http://420.am/business-onlinethirdpartypayment> for supported gateways.
4094
4095 On failure returns an error message.
4096
4097 Returns false or a hashref upon success.  The hashref contains keys popup_url reference, and collectitems.  The first is a URL to which a browser should be redirected for completion of collection.  The second is a reference id for the transaction suitable for the end user.  The collectitems is a reference to a list of name value pairs suitable for assigning to a html form and posted to popup_url.
4098
4099 Available options are: I<method>, I<amount>, I<description>, I<invnum>, I<quiet>, I<paynum_ref>, I<payunique>, I<session_id>, I<pkgnum>
4100
4101 I<method> is one of: I<CC>, I<ECHECK> and I<LEC>.  If none is specified
4102 then it is deduced from the customer record.
4103
4104 If no I<amount> is specified, then the customer balance is used.
4105
4106 The additional options I<payname>, I<address1>, I<address2>, I<city>, I<state>,
4107 I<zip>, I<payinfo> and I<paydate> are also available.  Any of these options,
4108 if set, will override the value from the customer record.
4109
4110 I<description> is a free-text field passed to the gateway.  It defaults to
4111 the value defined by the business-onlinepayment-description configuration
4112 option, or "Internet services" if that is unset.
4113
4114 If an I<invnum> is specified, this payment (if successful) is applied to the
4115 specified invoice.  If you don't specify an I<invnum> you might want to
4116 call the B<apply_payments> method or set the I<apply> option.
4117
4118 I<apply> can be set to true to apply a resulting payment.
4119
4120 I<quiet> can be set true to surpress email decline notices.
4121
4122 I<paynum_ref> can be set to a scalar reference.  It will be filled in with the
4123 resulting paynum, if any.
4124
4125 I<payunique> is a unique identifier for this payment.
4126
4127 I<session_id> is a session identifier associated with this payment.
4128
4129 I<depend_jobnum> allows payment capture to unlock export jobs
4130
4131 =cut
4132
4133 sub realtime_collect {
4134   my( $self, %options ) = @_;
4135
4136   if ( $DEBUG ) {
4137     warn "$me realtime_collect:\n";
4138     warn "  $_ => $options{$_}\n" foreach keys %options;
4139   }
4140
4141   $options{amount} = $self->balance unless exists( $options{amount} );
4142   $options{method} = FS::payby->payby2bop($self->payby)
4143     unless exists( $options{method} );
4144
4145   return $self->realtime_bop({%options});
4146
4147 }
4148
4149 =item realtime_bop { [ ARG => VALUE ... ] }
4150
4151 Runs a realtime credit card, ACH (electronic check) or phone bill transaction
4152 via a Business::OnlinePayment realtime gateway.  See
4153 L<http://420.am/business-onlinepayment> for supported gateways.
4154
4155 Required arguments in the hashref are I<method>, and I<amount>
4156
4157 Available methods are: I<CC>, I<ECHECK> and I<LEC>
4158
4159 Available optional arguments are: I<description>, I<invnum>, I<apply>, I<quiet>, I<paynum_ref>, I<payunique>, I<session_id>
4160
4161 The additional options I<payname>, I<address1>, I<address2>, I<city>, I<state>,
4162 I<zip>, I<payinfo> and I<paydate> are also available.  Any of these options,
4163 if set, will override the value from the customer record.
4164
4165 I<description> is a free-text field passed to the gateway.  It defaults to
4166 the value defined by the business-onlinepayment-description configuration
4167 option, or "Internet services" if that is unset.
4168
4169 If an I<invnum> is specified, this payment (if successful) is applied to the
4170 specified invoice.  If you don't specify an I<invnum> you might want to
4171 call the B<apply_payments> method or set the I<apply> option.
4172
4173 I<apply> can be set to true to apply a resulting payment.
4174
4175 I<quiet> can be set true to surpress email decline notices.
4176
4177 I<paynum_ref> can be set to a scalar reference.  It will be filled in with the
4178 resulting paynum, if any.
4179
4180 I<payunique> is a unique identifier for this payment.
4181
4182 I<session_id> is a session identifier associated with this payment.
4183
4184 I<depend_jobnum> allows payment capture to unlock export jobs
4185
4186 (moved from cust_bill) (probably should get realtime_{card,ach,lec} here too)
4187
4188 =cut
4189
4190 # some helper routines
4191 sub _bop_recurring_billing {
4192   my( $self, %opt ) = @_;
4193
4194   my $method = scalar($conf->config('credit_card-recurring_billing_flag'));
4195
4196   if ( defined($method) && $method eq 'transaction_is_recur' ) {
4197
4198     return 1 if $opt{'trans_is_recur'};
4199
4200   } else {
4201
4202     my %hash = ( 'custnum' => $self->custnum,
4203                  'payby'   => 'CARD',
4204                );
4205
4206     return 1 
4207       if qsearch('cust_pay', { %hash, 'payinfo' => $opt{'payinfo'} } )
4208       || qsearch('cust_pay', { %hash, 'paymask' => $self->mask_payinfo('CARD',
4209                                                                $opt{'payinfo'} )
4210                              } );
4211
4212   }
4213
4214   return 0;
4215
4216 }
4217
4218 sub _payment_gateway {
4219   my ($self, $options) = @_;
4220
4221   $options->{payment_gateway} = $self->agent->payment_gateway( %$options )
4222     unless exists($options->{payment_gateway});
4223
4224   $options->{payment_gateway};
4225 }
4226
4227 sub _bop_auth {
4228   my ($self, $options) = @_;
4229
4230   (
4231     'login'    => $options->{payment_gateway}->gateway_username,
4232     'password' => $options->{payment_gateway}->gateway_password,
4233   );
4234 }
4235
4236 sub _bop_options {
4237   my ($self, $options) = @_;
4238
4239   $options->{payment_gateway}->gatewaynum
4240     ? $options->{payment_gateway}->options
4241     : @{ $options->{payment_gateway}->get('options') };
4242 }
4243
4244 sub _bop_defaults {
4245   my ($self, $options) = @_;
4246
4247   unless ( $options->{'description'} ) {
4248     if ( $conf->exists('business-onlinepayment-description') ) {
4249       my $dtempl = $conf->config('business-onlinepayment-description');
4250
4251       my $agent = $self->agent->agent;
4252       #$pkgs... not here
4253       $options->{'description'} = eval qq("$dtempl");
4254     } else {
4255       $options->{'description'} = 'Internet services';
4256     }
4257   }
4258
4259   $options->{payinfo} = $self->payinfo unless exists( $options->{payinfo} );
4260   $options->{invnum} ||= '';
4261   $options->{payname} = $self->payname unless exists( $options->{payname} );
4262 }
4263
4264 sub _bop_content {
4265   my ($self, $options) = @_;
4266   my %content = ();
4267
4268   $content{address} = exists($options->{'address1'})
4269                         ? $options->{'address1'}
4270                         : $self->address1;
4271   my $address2 = exists($options->{'address2'})
4272                    ? $options->{'address2'}
4273                    : $self->address2;
4274   $content{address} .= ", ". $address2 if length($address2);
4275
4276   my $payip = exists($options->{'payip'}) ? $options->{'payip'} : $self->payip;
4277   $content{customer_ip} = $payip if length($payip);
4278
4279   $content{invoice_number} = $options->{'invnum'}
4280     if exists($options->{'invnum'}) && length($options->{'invnum'});
4281
4282   $content{email_customer} = 
4283     (    $conf->exists('business-onlinepayment-email_customer')
4284       || $conf->exists('business-onlinepayment-email-override') );
4285       
4286   $content{payfirst} = $self->getfield('first');
4287   $content{paylast} = $self->getfield('last');
4288
4289   $content{account_name} = "$content{payfirst} $content{paylast}"
4290     if $options->{method} eq 'ECHECK';
4291
4292   $content{name} = $options->{payname};
4293   $content{name} = $content{account_name} if exists($content{account_name});
4294
4295   $content{city} = exists($options->{city})
4296                      ? $options->{city}
4297                      : $self->city;
4298   $content{state} = exists($options->{state})
4299                       ? $options->{state}
4300                       : $self->state;
4301   $content{zip} = exists($options->{zip})
4302                     ? $options->{'zip'}
4303                     : $self->zip;
4304   $content{country} = exists($options->{country})
4305                         ? $options->{country}
4306                         : $self->country;
4307   $content{referer} = 'http://cleanwhisker.420.am/'; #XXX fix referer :/
4308   $content{phone} = $self->daytime || $self->night;
4309
4310   (%content);
4311 }
4312
4313 my %bop_method2payby = (
4314   'CC'     => 'CARD',
4315   'ECHECK' => 'CHEK',
4316   'LEC'    => 'LECB',
4317 );
4318
4319 sub realtime_bop {
4320   my $self = shift;
4321
4322   my %options = ();
4323   if (ref($_[0]) eq 'HASH') {
4324     %options = %{$_[0]};
4325   } else {
4326     my ( $method, $amount ) = ( shift, shift );
4327     %options = @_;
4328     $options{method} = $method;
4329     $options{amount} = $amount;
4330   }
4331   
4332   if ( $DEBUG ) {
4333     warn "$me realtime_bop (new): $options{method} $options{amount}\n";
4334     warn "  $_ => $options{$_}\n" foreach keys %options;
4335   }
4336
4337   return $self->fake_bop(%options) if $options{'fake'};
4338
4339   $self->_bop_defaults(\%options);
4340
4341   ###
4342   # set trans_is_recur based on invnum if there is one
4343   ###
4344
4345   my $trans_is_recur = 0;
4346   if ( $options{'invnum'} ) {
4347
4348     my $cust_bill = qsearchs('cust_bill', { 'invnum' => $options{'invnum'} } );
4349     die "invnum ". $options{'invnum'}. " not found" unless $cust_bill;
4350
4351     my @part_pkg =
4352       map  { $_->part_pkg }
4353       grep { $_ }
4354       map  { $_->cust_pkg }
4355       $cust_bill->cust_bill_pkg;
4356
4357     $trans_is_recur = 1
4358       if grep { $_->freq ne '0' } @part_pkg;
4359
4360   }
4361
4362   ###
4363   # select a gateway
4364   ###
4365
4366   my $payment_gateway =  $self->_payment_gateway( \%options );
4367   my $namespace = $payment_gateway->gateway_namespace;
4368
4369   eval "use $namespace";  
4370   die $@ if $@;
4371
4372   ###
4373   # check for banned credit card/ACH
4374   ###
4375
4376   my $ban = qsearchs('banned_pay', {
4377     'payby'   => $bop_method2payby{$options{method}},
4378     'payinfo' => md5_base64($options{payinfo}),
4379   } );
4380   return "Banned credit card" if $ban;
4381
4382   ###
4383   # massage data
4384   ###
4385
4386   my (%bop_content) = $self->_bop_content(\%options);
4387
4388   if ( $options{method} ne 'ECHECK' ) {
4389     $options{payname} =~ /^\s*([\w \,\.\-\']*)?\s+([\w\,\.\-\']+)\s*$/
4390       or return "Illegal payname $options{payname}";
4391     ($bop_content{payfirst}, $bop_content{paylast}) = ($1, $2);
4392   }
4393
4394   my @invoicing_list = $self->invoicing_list_emailonly;
4395   if ( $conf->exists('emailinvoiceautoalways')
4396        || $conf->exists('emailinvoiceauto') && ! @invoicing_list
4397        || ( $conf->exists('emailinvoiceonly') && ! @invoicing_list ) ) {
4398     push @invoicing_list, $self->all_emails;
4399   }
4400
4401   my $email = ($conf->exists('business-onlinepayment-email-override'))
4402               ? $conf->config('business-onlinepayment-email-override')
4403               : $invoicing_list[0];
4404
4405   my $paydate = '';
4406   my %content = ();
4407   if ( $namespace eq 'Business::OnlinePayment' && $options{method} eq 'CC' ) {
4408
4409     $content{card_number} = $options{payinfo};
4410     $paydate = exists($options{'paydate'})
4411                     ? $options{'paydate'}
4412                     : $self->paydate;
4413     $paydate =~ /^\d{2}(\d{2})[\/\-](\d+)[\/\-]\d+$/;
4414     $content{expiration} = "$2/$1";
4415
4416     my $paycvv = exists($options{'paycvv'})
4417                    ? $options{'paycvv'}
4418                    : $self->paycvv;
4419     $content{cvv2} = $paycvv
4420       if length($paycvv);
4421
4422     my $paystart_month = exists($options{'paystart_month'})
4423                            ? $options{'paystart_month'}
4424                            : $self->paystart_month;
4425
4426     my $paystart_year  = exists($options{'paystart_year'})
4427                            ? $options{'paystart_year'}
4428                            : $self->paystart_year;
4429
4430     $content{card_start} = "$paystart_month/$paystart_year"
4431       if $paystart_month && $paystart_year;
4432
4433     my $payissue       = exists($options{'payissue'})
4434                            ? $options{'payissue'}
4435                            : $self->payissue;
4436     $content{issue_number} = $payissue if $payissue;
4437
4438     if ( $self->_bop_recurring_billing( 'payinfo'        => $options{'payinfo'},
4439                                         'trans_is_recur' => $trans_is_recur,
4440                                       )
4441        )
4442     {
4443       $content{recurring_billing} = 'YES';
4444       $content{acct_code} = 'rebill'
4445         if $conf->exists('credit_card-recurring_billing_acct_code');
4446     }
4447
4448   } elsif ( $namespace eq 'Business::OnlinePayment' && $options{method} eq 'ECHECK' ){
4449     ( $content{account_number}, $content{routing_code} ) =
4450       split('@', $options{payinfo});
4451     $content{bank_name} = $options{payname};
4452     $content{bank_state} = exists($options{'paystate'})
4453                              ? $options{'paystate'}
4454                              : $self->getfield('paystate');
4455     $content{account_type} = exists($options{'paytype'})
4456                                ? uc($options{'paytype'}) || 'CHECKING'
4457                                : uc($self->getfield('paytype')) || 'CHECKING';
4458     $content{customer_org} = $self->company ? 'B' : 'I';
4459     $content{state_id}       = exists($options{'stateid'})
4460                                  ? $options{'stateid'}
4461                                  : $self->getfield('stateid');
4462     $content{state_id_state} = exists($options{'stateid_state'})
4463                                  ? $options{'stateid_state'}
4464                                  : $self->getfield('stateid_state');
4465     $content{customer_ssn} = exists($options{'ss'})
4466                                ? $options{'ss'}
4467                                : $self->ss;
4468   } elsif ( $namespace eq 'Business::OnlinePayment' && $options{method} eq 'LEC' ) {
4469     $content{phone} = $options{payinfo};
4470   } elsif ( $namespace eq 'Business::OnlineThirdPartyPayment' ) {
4471     #move along
4472   } else {
4473     #die an evil death
4474   }
4475
4476   ###
4477   # run transaction(s)
4478   ###
4479
4480   my $balance = exists( $options{'balance'} )
4481                   ? $options{'balance'}
4482                   : $self->balance;
4483
4484   $self->select_for_update; #mutex ... just until we get our pending record in
4485
4486   #the checks here are intended to catch concurrent payments
4487   #double-form-submission prevention is taken care of in cust_pay_pending::check
4488
4489   #check the balance
4490   return "The customer's balance has changed; $options{method} transaction aborted."
4491     if $self->balance < $balance;
4492     #&& $self->balance < $options{amount}; #might as well anyway?
4493
4494   #also check and make sure there aren't *other* pending payments for this cust
4495
4496   my @pending = qsearch('cust_pay_pending', {
4497     'custnum' => $self->custnum,
4498     'status'  => { op=>'!=', value=>'done' } 
4499   });
4500   return "A payment is already being processed for this customer (".
4501          join(', ', map 'paypendingnum '. $_->paypendingnum, @pending ).
4502          "); $options{method} transaction aborted."
4503     if scalar(@pending);
4504
4505   #okay, good to go, if we're a duplicate, cust_pay_pending will kick us out
4506
4507   my $cust_pay_pending = new FS::cust_pay_pending {
4508     'custnum'           => $self->custnum,
4509     #'invnum'            => $options{'invnum'},
4510     'paid'              => $options{amount},
4511     '_date'             => '',
4512     'payby'             => $bop_method2payby{$options{method}},
4513     'payinfo'           => $options{payinfo},
4514     'paydate'           => $paydate,
4515     'recurring_billing' => $content{recurring_billing},
4516     'pkgnum'            => $options{'pkgnum'},
4517     'status'            => 'new',
4518     'gatewaynum'        => $payment_gateway->gatewaynum || '',
4519     'session_id'        => $options{session_id} || '',
4520     'jobnum'            => $options{depend_jobnum} || '',
4521   };
4522   $cust_pay_pending->payunique( $options{payunique} )
4523     if defined($options{payunique}) && length($options{payunique});
4524   my $cpp_new_err = $cust_pay_pending->insert; #mutex lost when this is inserted
4525   return $cpp_new_err if $cpp_new_err;
4526
4527   my( $action1, $action2 ) =
4528     split( /\s*\,\s*/, $payment_gateway->gateway_action );
4529
4530   my $transaction = new $namespace( $payment_gateway->gateway_module,
4531                                     $self->_bop_options(\%options),
4532                                   );
4533
4534   $transaction->content(
4535     'type'           => $options{method},
4536     $self->_bop_auth(\%options),          
4537     'action'         => $action1,
4538     'description'    => $options{'description'},
4539     'amount'         => $options{amount},
4540     #'invoice_number' => $options{'invnum'},
4541     'customer_id'    => $self->custnum,
4542     %bop_content,
4543     'reference'      => $cust_pay_pending->paypendingnum, #for now
4544     'email'          => $email,
4545     %content, #after
4546   );
4547
4548   $cust_pay_pending->status('pending');
4549   my $cpp_pending_err = $cust_pay_pending->replace;
4550   return $cpp_pending_err if $cpp_pending_err;
4551
4552   #config?
4553   my $BOP_TESTING = 0;
4554   my $BOP_TESTING_SUCCESS = 1;
4555
4556   unless ( $BOP_TESTING ) {
4557     $transaction->submit();
4558   } else {
4559     if ( $BOP_TESTING_SUCCESS ) {
4560       $transaction->is_success(1);
4561       $transaction->authorization('fake auth');
4562     } else {
4563       $transaction->is_success(0);
4564       $transaction->error_message('fake failure');
4565     }
4566   }
4567
4568   if ( $transaction->is_success() && $namespace eq 'Business::OnlineThirdPartyPayment' ) {
4569
4570     return { reference => $cust_pay_pending->paypendingnum,
4571              map { $_ => $transaction->$_ } qw ( popup_url collectitems ) };
4572
4573   } elsif ( $transaction->is_success() && $action2 ) {
4574
4575     $cust_pay_pending->status('authorized');
4576     my $cpp_authorized_err = $cust_pay_pending->replace;
4577     return $cpp_authorized_err if $cpp_authorized_err;
4578
4579     my $auth = $transaction->authorization;
4580     my $ordernum = $transaction->can('order_number')
4581                    ? $transaction->order_number
4582                    : '';
4583
4584     my $capture =
4585       new Business::OnlinePayment( $payment_gateway->gateway_module,
4586                                    $self->_bop_options(\%options),
4587                                  );
4588
4589     my %capture = (
4590       %content,
4591       type           => $options{method},
4592       action         => $action2,
4593       $self->_bop_auth(\%options),          
4594       order_number   => $ordernum,
4595       amount         => $options{amount},
4596       authorization  => $auth,
4597       description    => $options{'description'},
4598     );
4599
4600     foreach my $field (qw( authorization_source_code returned_ACI
4601                            transaction_identifier validation_code           
4602                            transaction_sequence_num local_transaction_date    
4603                            local_transaction_time AVS_result_code          )) {
4604       $capture{$field} = $transaction->$field() if $transaction->can($field);
4605     }
4606
4607     $capture->content( %capture );
4608
4609     $capture->submit();
4610
4611     unless ( $capture->is_success ) {
4612       my $e = "Authorization successful but capture failed, custnum #".
4613               $self->custnum. ': '.  $capture->result_code.
4614               ": ". $capture->error_message;
4615       warn $e;
4616       return $e;
4617     }
4618
4619   }
4620
4621   ###
4622   # remove paycvv after initial transaction
4623   ###
4624
4625   #false laziness w/misc/process/payment.cgi - check both to make sure working
4626   # correctly
4627   if ( defined $self->dbdef_table->column('paycvv')
4628        && length($self->paycvv)
4629        && ! grep { $_ eq cardtype($options{payinfo}) } $conf->config('cvv-save')
4630   ) {
4631     my $error = $self->remove_cvv;
4632     if ( $error ) {
4633       warn "WARNING: error removing cvv: $error\n";
4634     }
4635   }
4636
4637   ###
4638   # result handling
4639   ###
4640
4641   $self->_realtime_bop_result( $cust_pay_pending, $transaction, %options );
4642
4643 }
4644
4645 =item fake_bop
4646
4647 =cut
4648
4649 sub fake_bop {
4650   my $self = shift;
4651
4652   my %options = ();
4653   if (ref($_[0]) eq 'HASH') {
4654     %options = %{$_[0]};
4655   } else {
4656     my ( $method, $amount ) = ( shift, shift );
4657     %options = @_;
4658     $options{method} = $method;
4659     $options{amount} = $amount;
4660   }
4661   
4662   if ( $options{'fake_failure'} ) {
4663      return "Error: No error; test failure requested with fake_failure";
4664   }
4665
4666   #my $paybatch = '';
4667   #if ( $payment_gateway->gatewaynum ) { # agent override
4668   #  $paybatch = $payment_gateway->gatewaynum. '-';
4669   #}
4670   #
4671   #$paybatch .= "$processor:". $transaction->authorization;
4672   #
4673   #$paybatch .= ':'. $transaction->order_number
4674   #  if $transaction->can('order_number')
4675   #  && length($transaction->order_number);
4676
4677   my $paybatch = 'FakeProcessor:54:32';
4678
4679   my $cust_pay = new FS::cust_pay ( {
4680      'custnum'  => $self->custnum,
4681      'invnum'   => $options{'invnum'},
4682      'paid'     => $options{amount},
4683      '_date'    => '',
4684      'payby'    => $bop_method2payby{$options{method}},
4685      #'payinfo'  => $payinfo,
4686      'payinfo'  => '4111111111111111',
4687      'paybatch' => $paybatch,
4688      #'paydate'  => $paydate,
4689      'paydate'  => '2012-05-01',
4690   } );
4691   $cust_pay->payunique( $options{payunique} ) if length($options{payunique});
4692
4693   my $error = $cust_pay->insert($options{'manual'} ? ( 'manual' => 1 ) : () );
4694
4695   if ( $error ) {
4696     $cust_pay->invnum(''); #try again with no specific invnum
4697     my $error2 = $cust_pay->insert( $options{'manual'} ?
4698                                     ( 'manual' => 1 ) : ()
4699                                   );
4700     if ( $error2 ) {
4701       # gah, even with transactions.
4702       my $e = 'WARNING: Card/ACH debited but database not updated - '.
4703               "error inserting (fake!) payment: $error2".
4704               " (previously tried insert with invnum #$options{'invnum'}" .
4705               ": $error )";
4706       warn $e;
4707       return $e;
4708     }
4709   }
4710
4711   if ( $options{'paynum_ref'} ) {
4712     ${ $options{'paynum_ref'} } = $cust_pay->paynum;
4713   }
4714
4715   return ''; #no error
4716
4717 }
4718
4719
4720 # item _realtime_bop_result CUST_PAY_PENDING, BOP_OBJECT [ OPTION => VALUE ... ]
4721
4722 # Wraps up processing of a realtime credit card, ACH (electronic check) or
4723 # phone bill transaction.
4724
4725 sub _realtime_bop_result {
4726   my( $self, $cust_pay_pending, $transaction, %options ) = @_;
4727   if ( $DEBUG ) {
4728     warn "$me _realtime_bop_result: pending transaction ".
4729       $cust_pay_pending->paypendingnum. "\n";
4730     warn "  $_ => $options{$_}\n" foreach keys %options;
4731   }
4732
4733   my $payment_gateway = $options{payment_gateway}
4734     or return "no payment gateway in arguments to _realtime_bop_result";
4735
4736   $cust_pay_pending->status($transaction->is_success() ? 'captured' : 'declined');
4737   my $cpp_captured_err = $cust_pay_pending->replace;
4738   return $cpp_captured_err if $cpp_captured_err;
4739
4740   if ( $transaction->is_success() ) {
4741
4742     my $paybatch = '';
4743     if ( $payment_gateway->gatewaynum ) { # agent override
4744       $paybatch = $payment_gateway->gatewaynum. '-';
4745     }
4746
4747     $paybatch .= $payment_gateway->gateway_module. ":".
4748       $transaction->authorization;
4749
4750     $paybatch .= ':'. $transaction->order_number
4751       if $transaction->can('order_number')
4752       && length($transaction->order_number);
4753
4754     my $cust_pay = new FS::cust_pay ( {
4755        'custnum'  => $self->custnum,
4756        'invnum'   => $options{'invnum'},
4757        'paid'     => $cust_pay_pending->paid,
4758        '_date'    => '',
4759        'payby'    => $cust_pay_pending->payby,
4760        #'payinfo'  => $payinfo,
4761        'paybatch' => $paybatch,
4762        'paydate'  => $cust_pay_pending->paydate,
4763        'pkgnum'   => $cust_pay_pending->pkgnum,
4764     } );
4765     #doesn't hurt to know, even though the dup check is in cust_pay_pending now
4766     $cust_pay->payunique( $options{payunique} )
4767       if defined($options{payunique}) && length($options{payunique});
4768
4769     my $oldAutoCommit = $FS::UID::AutoCommit;
4770     local $FS::UID::AutoCommit = 0;
4771     my $dbh = dbh;
4772
4773     #start a transaction, insert the cust_pay and set cust_pay_pending.status to done in a single transction
4774
4775     my $error = $cust_pay->insert($options{'manual'} ? ( 'manual' => 1 ) : () );
4776
4777     if ( $error ) {
4778       $cust_pay->invnum(''); #try again with no specific invnum
4779       my $error2 = $cust_pay->insert( $options{'manual'} ?
4780                                       ( 'manual' => 1 ) : ()
4781                                     );
4782       if ( $error2 ) {
4783         # gah.  but at least we have a record of the state we had to abort in
4784         # from cust_pay_pending now.
4785         my $e = "WARNING: $options{method} captured but payment not recorded -".
4786                 " error inserting payment (". $payment_gateway->gateway_module.
4787                 "): $error2".
4788                 " (previously tried insert with invnum #$options{'invnum'}" .
4789                 ": $error ) - pending payment saved as paypendingnum ".
4790                 $cust_pay_pending->paypendingnum. "\n";
4791         warn $e;
4792         return $e;
4793       }
4794     }
4795
4796     my $jobnum = $cust_pay_pending->jobnum;
4797     if ( $jobnum ) {
4798        my $placeholder = qsearchs( 'queue', { 'jobnum' => $jobnum } );
4799       
4800        unless ( $placeholder ) {
4801          $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
4802          my $e = "WARNING: $options{method} captured but job $jobnum not ".
4803              "found for paypendingnum ". $cust_pay_pending->paypendingnum. "\n";
4804          warn $e;
4805          return $e;
4806        }
4807
4808        $error = $placeholder->delete;
4809
4810        if ( $error ) {
4811          $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
4812          my $e = "WARNING: $options{method} captured but could not delete ".
4813               "job $jobnum for paypendingnum ".
4814               $cust_pay_pending->paypendingnum. ": $error\n";
4815          warn $e;
4816          return $e;
4817        }
4818
4819     }
4820     
4821     if ( $options{'paynum_ref'} ) {
4822       ${ $options{'paynum_ref'} } = $cust_pay->paynum;
4823     }
4824
4825     $cust_pay_pending->status('done');
4826     $cust_pay_pending->statustext('captured');
4827     $cust_pay_pending->paynum($cust_pay->paynum);
4828     my $cpp_done_err = $cust_pay_pending->replace;
4829
4830     if ( $cpp_done_err ) {
4831
4832       $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
4833       my $e = "WARNING: $options{method} captured but payment not recorded - ".
4834               "error updating status for paypendingnum ".
4835               $cust_pay_pending->paypendingnum. ": $cpp_done_err \n";
4836       warn $e;
4837       return $e;
4838
4839     } else {
4840
4841       $dbh->commit or die $dbh->errstr if $oldAutoCommit;
4842
4843       if ( $options{'apply'} ) {
4844         my $apply_error = $self->apply_payments_and_credits;
4845         if ( $apply_error ) {
4846           warn "WARNING: error applying payment: $apply_error\n";
4847           #but we still should return no error cause the payment otherwise went
4848           #through...
4849         }
4850       }
4851
4852       return ''; #no error
4853
4854     }
4855
4856   } else {
4857
4858     my $perror = $payment_gateway->gateway_module. " error: ".
4859       $transaction->error_message;
4860
4861     my $jobnum = $cust_pay_pending->jobnum;
4862     if ( $jobnum ) {
4863        my $placeholder = qsearchs( 'queue', { 'jobnum' => $jobnum } );
4864       
4865        if ( $placeholder ) {
4866          my $error = $placeholder->depended_delete;
4867          $error ||= $placeholder->delete;
4868          warn "error removing provisioning jobs after declined paypendingnum ".
4869            $cust_pay_pending->paypendingnum. "\n";
4870        } else {
4871          my $e = "error finding job $jobnum for declined paypendingnum ".
4872               $cust_pay_pending->paypendingnum. "\n";
4873          warn $e;
4874        }
4875
4876     }
4877     
4878     unless ( $transaction->error_message ) {
4879
4880       my $t_response;
4881       if ( $transaction->can('response_page') ) {
4882         $t_response = {
4883                         'page'    => ( $transaction->can('response_page')
4884                                          ? $transaction->response_page
4885                                          : ''
4886                                      ),
4887                         'code'    => ( $transaction->can('response_code')
4888                                          ? $transaction->response_code
4889                                          : ''
4890                                      ),
4891                         'headers' => ( $transaction->can('response_headers')
4892                                          ? $transaction->response_headers
4893                                          : ''
4894                                      ),
4895                       };
4896       } else {
4897         $t_response .=
4898           "No additional debugging information available for ".
4899             $payment_gateway->gateway_module;
4900       }
4901
4902       $perror .= "No error_message returned from ".
4903                    $payment_gateway->gateway_module. " -- ".
4904                  ( ref($t_response) ? Dumper($t_response) : $t_response );
4905
4906     }
4907
4908     if ( !$options{'quiet'} && !$realtime_bop_decline_quiet
4909          && $conf->exists('emaildecline')
4910          && grep { $_ ne 'POST' } $self->invoicing_list
4911          && ! grep { $transaction->error_message =~ /$_/ }
4912                    $conf->config('emaildecline-exclude')
4913     ) {
4914       my @templ = $conf->config('declinetemplate');
4915       my $template = new Text::Template (
4916         TYPE   => 'ARRAY',
4917         SOURCE => [ map "$_\n", @templ ],
4918       ) or return "($perror) can't create template: $Text::Template::ERROR";
4919       $template->compile()
4920         or return "($perror) can't compile template: $Text::Template::ERROR";
4921
4922       my $templ_hash = {
4923         'company_name'    =>
4924           scalar( $conf->config('company_name', $self->agentnum ) ),
4925         'company_address' =>
4926           join("\n", $conf->config('company_address', $self->agentnum ) ),
4927         'error'           => $transaction->error_message,
4928       };
4929
4930       my $error = send_email(
4931         'from'    => $conf->config('invoice_from', $self->agentnum ),
4932         'to'      => [ grep { $_ ne 'POST' } $self->invoicing_list ],
4933         'subject' => 'Your payment could not be processed',
4934         'body'    => [ $template->fill_in(HASH => $templ_hash) ],
4935       );
4936
4937       $perror .= " (also received error sending decline notification: $error)"
4938         if $error;
4939
4940     }
4941
4942     $cust_pay_pending->status('done');
4943     $cust_pay_pending->statustext("declined: $perror");
4944     my $cpp_done_err = $cust_pay_pending->replace;
4945     if ( $cpp_done_err ) {
4946       my $e = "WARNING: $options{method} declined but pending payment not ".
4947               "resolved - error updating status for paypendingnum ".
4948               $cust_pay_pending->paypendingnum. ": $cpp_done_err \n";
4949       warn $e;
4950       $perror = "$e ($perror)";
4951     }
4952
4953     return $perror;
4954   }
4955
4956 }
4957
4958 =item realtime_botpp_capture CUST_PAY_PENDING [ OPTION => VALUE ... ]
4959
4960 Verifies successful third party processing of a realtime credit card,
4961 ACH (electronic check) or phone bill transaction via a
4962 Business::OnlineThirdPartyPayment realtime gateway.  See
4963 L<http://420.am/business-onlinethirdpartypayment> for supported gateways.
4964
4965 Available options are: I<description>, I<invnum>, I<quiet>, I<paynum_ref>, I<payunique>
4966
4967 The additional options I<payname>, I<city>, I<state>,
4968 I<zip>, I<payinfo> and I<paydate> are also available.  Any of these options,
4969 if set, will override the value from the customer record.
4970
4971 I<description> is a free-text field passed to the gateway.  It defaults to
4972 "Internet services".
4973
4974 If an I<invnum> is specified, this payment (if successful) is applied to the
4975 specified invoice.  If you don't specify an I<invnum> you might want to
4976 call the B<apply_payments> method.
4977
4978 I<quiet> can be set true to surpress email decline notices.
4979
4980 I<paynum_ref> can be set to a scalar reference.  It will be filled in with the
4981 resulting paynum, if any.
4982
4983 I<payunique> is a unique identifier for this payment.
4984
4985 Returns a hashref containing elements bill_error (which will be undefined
4986 upon success) and session_id of any associated session.
4987
4988 =cut
4989
4990 sub realtime_botpp_capture {
4991   my( $self, $cust_pay_pending, %options ) = @_;
4992   if ( $DEBUG ) {
4993     warn "$me realtime_botpp_capture: pending transaction $cust_pay_pending\n";
4994     warn "  $_ => $options{$_}\n" foreach keys %options;
4995   }
4996
4997   eval "use Business::OnlineThirdPartyPayment";  
4998   die $@ if $@;
4999
5000   ###
5001   # select the gateway
5002   ###
5003
5004   my $method = FS::payby->payby2bop($cust_pay_pending->payby);
5005
5006   my $payment_gateway = $cust_pay_pending->gatewaynum
5007     ? qsearchs( 'payment_gateway',
5008                 { gatewaynum => $cust_pay_pending->gatewaynum }
5009               )
5010     : $self->agent->payment_gateway( 'method' => $method,
5011                                      # 'invnum'  => $cust_pay_pending->invnum,
5012                                      # 'payinfo' => $cust_pay_pending->payinfo,
5013                                    );
5014
5015   $options{payment_gateway} = $payment_gateway; # for the helper subs
5016
5017   ###
5018   # massage data
5019   ###
5020
5021   my @invoicing_list = $self->invoicing_list_emailonly;
5022   if ( $conf->exists('emailinvoiceautoalways')
5023        || $conf->exists('emailinvoiceauto') && ! @invoicing_list
5024        || ( $conf->exists('emailinvoiceonly') && ! @invoicing_list ) ) {
5025     push @invoicing_list, $self->all_emails;
5026   }
5027
5028   my $email = ($conf->exists('business-onlinepayment-email-override'))
5029               ? $conf->config('business-onlinepayment-email-override')
5030               : $invoicing_list[0];
5031
5032   my %content = ();
5033
5034   $content{email_customer} = 
5035     (    $conf->exists('business-onlinepayment-email_customer')
5036       || $conf->exists('business-onlinepayment-email-override') );
5037       
5038   ###
5039   # run transaction(s)
5040   ###
5041
5042   my $transaction =
5043     new Business::OnlineThirdPartyPayment( $payment_gateway->gateway_module,
5044                                            $self->_bop_options(\%options),
5045                                          );
5046
5047   $transaction->reference({ %options }); 
5048
5049   $transaction->content(
5050     'type'           => $method,
5051     $self->_bop_auth(\%options),
5052     'action'         => 'Post Authorization',
5053     'description'    => $options{'description'},
5054     'amount'         => $cust_pay_pending->paid,
5055     #'invoice_number' => $options{'invnum'},
5056     'customer_id'    => $self->custnum,
5057     'referer'        => 'http://cleanwhisker.420.am/',
5058     'reference'      => $cust_pay_pending->paypendingnum,
5059     'email'          => $email,
5060     'phone'          => $self->daytime || $self->night,
5061     %content, #after
5062     # plus whatever is required for bogus capture avoidance
5063   );
5064
5065   $transaction->submit();
5066
5067   my $error =
5068     $self->_realtime_bop_result( $cust_pay_pending, $transaction, %options );
5069
5070   {
5071     bill_error => $error,
5072     session_id => $cust_pay_pending->session_id,
5073   }
5074
5075 }
5076
5077 =item default_payment_gateway DEPRECATED -- use agent->payment_gateway
5078
5079 =cut
5080
5081 sub default_payment_gateway {
5082   my( $self, $method ) = @_;
5083
5084   die "Real-time processing not enabled\n"
5085     unless $conf->exists('business-onlinepayment');
5086
5087   #warn "default_payment_gateway deprecated -- use agent->payment_gateway\n";
5088
5089   #load up config
5090   my $bop_config = 'business-onlinepayment';
5091   $bop_config .= '-ach'
5092     if $method =~ /^(ECHECK|CHEK)$/ && $conf->exists($bop_config. '-ach');
5093   my ( $processor, $login, $password, $action, @bop_options ) =
5094     $conf->config($bop_config);
5095   $action ||= 'normal authorization';
5096   pop @bop_options if scalar(@bop_options) % 2 && $bop_options[-1] =~ /^\s*$/;
5097   die "No real-time processor is enabled - ".
5098       "did you set the business-onlinepayment configuration value?\n"
5099     unless $processor;
5100
5101   ( $processor, $login, $password, $action, @bop_options )
5102 }
5103
5104 =item remove_cvv
5105
5106 Removes the I<paycvv> field from the database directly.
5107
5108 If there is an error, returns the error, otherwise returns false.
5109
5110 =cut
5111
5112 sub remove_cvv {
5113   my $self = shift;
5114   my $sth = dbh->prepare("UPDATE cust_main SET paycvv = '' WHERE custnum = ?")
5115     or return dbh->errstr;
5116   $sth->execute($self->custnum)
5117     or return $sth->errstr;
5118   $self->paycvv('');
5119   '';
5120 }
5121
5122 =item realtime_refund_bop METHOD [ OPTION => VALUE ... ]
5123
5124 Refunds a realtime credit card, ACH (electronic check) or phone bill transaction
5125 via a Business::OnlinePayment realtime gateway.  See
5126 L<http://420.am/business-onlinepayment> for supported gateways.
5127
5128 Available methods are: I<CC>, I<ECHECK> and I<LEC>
5129
5130 Available options are: I<amount>, I<reason>, I<paynum>, I<paydate>
5131
5132 Most gateways require a reference to an original payment transaction to refund,
5133 so you probably need to specify a I<paynum>.
5134
5135 I<amount> defaults to the original amount of the payment if not specified.
5136
5137 I<reason> specifies a reason for the refund.
5138
5139 I<paydate> specifies the expiration date for a credit card overriding the
5140 value from the customer record or the payment record. Specified as yyyy-mm-dd
5141
5142 Implementation note: If I<amount> is unspecified or equal to the amount of the
5143 orignal payment, first an attempt is made to "void" the transaction via
5144 the gateway (to cancel a not-yet settled transaction) and then if that fails,
5145 the normal attempt is made to "refund" ("credit") the transaction via the
5146 gateway is attempted.
5147
5148 #The additional options I<payname>, I<address1>, I<address2>, I<city>, I<state>,
5149 #I<zip>, I<payinfo> and I<paydate> are also available.  Any of these options,
5150 #if set, will override the value from the customer record.
5151
5152 #If an I<invnum> is specified, this payment (if successful) is applied to the
5153 #specified invoice.  If you don't specify an I<invnum> you might want to
5154 #call the B<apply_payments> method.
5155
5156 =cut
5157
5158 #some false laziness w/realtime_bop, not enough to make it worth merging
5159 #but some useful small subs should be pulled out
5160 sub realtime_refund_bop {
5161   my $self = shift;
5162
5163   my %options = ();
5164   if (ref($_[0]) ne 'HASH') {
5165     %options = %{$_[0]};
5166   } else {
5167     my $method = shift;
5168     %options = @_;
5169     $options{method} = $method;
5170   }
5171
5172   if ( $DEBUG ) {
5173     warn "$me realtime_refund_bop (new): $options{method} refund\n";
5174     warn "  $_ => $options{$_}\n" foreach keys %options;
5175   }
5176
5177   ###
5178   # look up the original payment and optionally a gateway for that payment
5179   ###
5180
5181   my $cust_pay = '';
5182   my $amount = $options{'amount'};
5183
5184   my( $processor, $login, $password, @bop_options, $namespace ) ;
5185   my( $auth, $order_number ) = ( '', '', '' );
5186
5187   if ( $options{'paynum'} ) {
5188
5189     warn "  paynum: $options{paynum}\n" if $DEBUG > 1;
5190     $cust_pay = qsearchs('cust_pay', { paynum=>$options{'paynum'} } )
5191       or return "Unknown paynum $options{'paynum'}";
5192     $amount ||= $cust_pay->paid;
5193
5194     $cust_pay->paybatch =~ /^((\d+)\-)?(\w+):\s*([\w\-\/ ]*)(:([\w\-]+))?$/
5195       or return "Can't parse paybatch for paynum $options{'paynum'}: ".
5196                 $cust_pay->paybatch;
5197     my $gatewaynum = '';
5198     ( $gatewaynum, $processor, $auth, $order_number ) = ( $2, $3, $4, $6 );
5199
5200     if ( $gatewaynum ) { #gateway for the payment to be refunded
5201
5202       my $payment_gateway =
5203         qsearchs('payment_gateway', { 'gatewaynum' => $gatewaynum } );
5204       die "payment gateway $gatewaynum not found"
5205         unless $payment_gateway;
5206
5207       $processor   = $payment_gateway->gateway_module;
5208       $login       = $payment_gateway->gateway_username;
5209       $password    = $payment_gateway->gateway_password;
5210       $namespace   = $payment_gateway->gateway_namespace;
5211       @bop_options = $payment_gateway->options;
5212
5213     } else { #try the default gateway
5214
5215       my $conf_processor;
5216       my $payment_gateway =
5217         $self->agent->payment_gateway('method' => $options{method});
5218
5219       ( $conf_processor, $login, $password, $namespace ) =
5220         map { my $method = "gateway_$_"; $payment_gateway->$method }
5221           qw( module username password namespace );
5222
5223       @bop_options = $payment_gateway->gatewaynum
5224                        ? $payment_gateway->options
5225                        : @{ $payment_gateway->get('options') };
5226
5227       return "processor of payment $options{'paynum'} $processor does not".
5228              " match default processor $conf_processor"
5229         unless $processor eq $conf_processor;
5230
5231     }
5232
5233
5234   } else { # didn't specify a paynum, so look for agent gateway overrides
5235            # like a normal transaction 
5236  
5237     my $payment_gateway =
5238       $self->agent->payment_gateway( 'method'  => $options{method},
5239                                      #'payinfo' => $payinfo,
5240                                    );
5241     my( $processor, $login, $password, $namespace ) =
5242       map { my $method = "gateway_$_"; $payment_gateway->$method }
5243         qw( module username password namespace );
5244
5245     my @bop_options = $payment_gateway->gatewaynum
5246                         ? $payment_gateway->options
5247                         : @{ $payment_gateway->get('options') };
5248
5249   }
5250   return "neither amount nor paynum specified" unless $amount;
5251
5252   eval "use $namespace";  
5253   die $@ if $@;
5254
5255   my %content = (
5256     'type'           => $options{method},
5257     'login'          => $login,
5258     'password'       => $password,
5259     'order_number'   => $order_number,
5260     'amount'         => $amount,
5261     'referer'        => 'http://cleanwhisker.420.am/', #XXX fix referer :/
5262   );
5263   $content{authorization} = $auth
5264     if length($auth); #echeck/ACH transactions have an order # but no auth
5265                       #(at least with authorize.net)
5266
5267   my $disable_void_after;
5268   if ($conf->exists('disable_void_after')
5269       && $conf->config('disable_void_after') =~ /^(\d+)$/) {
5270     $disable_void_after = $1;
5271   }
5272
5273   #first try void if applicable
5274   if ( $cust_pay && $cust_pay->paid == $amount
5275     && (
5276       ( not defined($disable_void_after) )
5277       || ( time < ($cust_pay->_date + $disable_void_after ) )
5278     )
5279   ) {
5280     warn "  attempting void\n" if $DEBUG > 1;
5281     my $void = new Business::OnlinePayment( $processor, @bop_options );
5282     if ( $void->can('info') ) {
5283       if ( $cust_pay->payby eq 'CARD'
5284            && $void->info('CC_void_requires_card') )
5285       {
5286         $content{'card_number'} = $cust_pay->payinfo;
5287       } elsif ( $cust_pay->payby eq 'CHEK'
5288                 && $void->info('ECHECK_void_requires_account') )
5289       {
5290         ( $content{'account_number'}, $content{'routing_code'} ) =
5291           split('@', $cust_pay->payinfo);
5292         $content{'name'} = $self->get('first'). ' '. $self->get('last');
5293       }
5294     }
5295     $void->content( 'action' => 'void', %content );
5296     $void->submit();
5297     if ( $void->is_success ) {
5298       my $error = $cust_pay->void($options{'reason'});
5299       if ( $error ) {
5300         # gah, even with transactions.
5301         my $e = 'WARNING: Card/ACH voided but database not updated - '.
5302                 "error voiding payment: $error";
5303         warn $e;
5304         return $e;
5305       }
5306       warn "  void successful\n" if $DEBUG > 1;
5307       return '';
5308     }
5309   }
5310
5311   warn "  void unsuccessful, trying refund\n"
5312     if $DEBUG > 1;
5313
5314   #massage data
5315   my $address = $self->address1;
5316   $address .= ", ". $self->address2 if $self->address2;
5317
5318   my($payname, $payfirst, $paylast);
5319   if ( $self->payname && $options{method} ne 'ECHECK' ) {
5320     $payname = $self->payname;
5321     $payname =~ /^\s*([\w \,\.\-\']*)?\s+([\w\,\.\-\']+)\s*$/
5322       or return "Illegal payname $payname";
5323     ($payfirst, $paylast) = ($1, $2);
5324   } else {
5325     $payfirst = $self->getfield('first');
5326     $paylast = $self->getfield('last');
5327     $payname =  "$payfirst $paylast";
5328   }
5329
5330   my @invoicing_list = $self->invoicing_list_emailonly;
5331   if ( $conf->exists('emailinvoiceautoalways')
5332        || $conf->exists('emailinvoiceauto') && ! @invoicing_list
5333        || ( $conf->exists('emailinvoiceonly') && ! @invoicing_list ) ) {
5334     push @invoicing_list, $self->all_emails;
5335   }
5336
5337   my $email = ($conf->exists('business-onlinepayment-email-override'))
5338               ? $conf->config('business-onlinepayment-email-override')
5339               : $invoicing_list[0];
5340
5341   my $payip = exists($options{'payip'})
5342                 ? $options{'payip'}
5343                 : $self->payip;
5344   $content{customer_ip} = $payip
5345     if length($payip);
5346
5347   my $payinfo = '';
5348   if ( $options{method} eq 'CC' ) {
5349
5350     if ( $cust_pay ) {
5351       $content{card_number} = $payinfo = $cust_pay->payinfo;
5352       (exists($options{'paydate'}) ? $options{'paydate'} : $cust_pay->paydate)
5353         =~ /^\d{2}(\d{2})[\/\-](\d+)[\/\-]\d+$/ &&
5354         ($content{expiration} = "$2/$1");  # where available
5355     } else {
5356       $content{card_number} = $payinfo = $self->payinfo;
5357       (exists($options{'paydate'}) ? $options{'paydate'} : $self->paydate)
5358         =~ /^\d{2}(\d{2})[\/\-](\d+)[\/\-]\d+$/;
5359       $content{expiration} = "$2/$1";
5360     }
5361
5362   } elsif ( $options{method} eq 'ECHECK' ) {
5363
5364     if ( $cust_pay ) {
5365       $payinfo = $cust_pay->payinfo;
5366     } else {
5367       $payinfo = $self->payinfo;
5368     } 
5369     ( $content{account_number}, $content{routing_code} )= split('@', $payinfo );
5370     $content{bank_name} = $self->payname;
5371     $content{account_type} = 'CHECKING';
5372     $content{account_name} = $payname;
5373     $content{customer_org} = $self->company ? 'B' : 'I';
5374     $content{customer_ssn} = $self->ss;
5375   } elsif ( $options{method} eq 'LEC' ) {
5376     $content{phone} = $payinfo = $self->payinfo;
5377   }
5378
5379   #then try refund
5380   my $refund = new Business::OnlinePayment( $processor, @bop_options );
5381   my %sub_content = $refund->content(
5382     'action'         => 'credit',
5383     'customer_id'    => $self->custnum,
5384     'last_name'      => $paylast,
5385     'first_name'     => $payfirst,
5386     'name'           => $payname,
5387     'address'        => $address,
5388     'city'           => $self->city,
5389     'state'          => $self->state,
5390     'zip'            => $self->zip,
5391     'country'        => $self->country,
5392     'email'          => $email,
5393     'phone'          => $self->daytime || $self->night,
5394     %content, #after
5395   );
5396   warn join('', map { "  $_ => $sub_content{$_}\n" } keys %sub_content )
5397     if $DEBUG > 1;
5398   $refund->submit();
5399
5400   return "$processor error: ". $refund->error_message
5401     unless $refund->is_success();
5402
5403   my $paybatch = "$processor:". $refund->authorization;
5404   $paybatch .= ':'. $refund->order_number
5405     if $refund->can('order_number') && $refund->order_number;
5406
5407   while ( $cust_pay && $cust_pay->unapplied < $amount ) {
5408     my @cust_bill_pay = $cust_pay->cust_bill_pay;
5409     last unless @cust_bill_pay;
5410     my $cust_bill_pay = pop @cust_bill_pay;
5411     my $error = $cust_bill_pay->delete;
5412     last if $error;
5413   }
5414
5415   my $cust_refund = new FS::cust_refund ( {
5416     'custnum'  => $self->custnum,
5417     'paynum'   => $options{'paynum'},
5418     'refund'   => $amount,
5419     '_date'    => '',
5420     'payby'    => $bop_method2payby{$options{method}},
5421     'payinfo'  => $payinfo,
5422     'paybatch' => $paybatch,
5423     'reason'   => $options{'reason'} || 'card or ACH refund',
5424   } );
5425   my $error = $cust_refund->insert;
5426   if ( $error ) {
5427     $cust_refund->paynum(''); #try again with no specific paynum
5428     my $error2 = $cust_refund->insert;
5429     if ( $error2 ) {
5430       # gah, even with transactions.
5431       my $e = 'WARNING: Card/ACH refunded but database not updated - '.
5432               "error inserting refund ($processor): $error2".
5433               " (previously tried insert with paynum #$options{'paynum'}" .
5434               ": $error )";
5435       warn $e;
5436       return $e;
5437     }
5438   }
5439
5440   ''; #no error
5441
5442 }
5443
5444 =item batch_card OPTION => VALUE...
5445
5446 Adds a payment for this invoice to the pending credit card batch (see
5447 L<FS::cust_pay_batch>), or, if the B<realtime> option is set to a true value,
5448 runs the payment using a realtime gateway.
5449
5450 =cut
5451
5452 sub batch_card {
5453   my ($self, %options) = @_;
5454
5455   my $amount;
5456   if (exists($options{amount})) {
5457     $amount = $options{amount};
5458   }else{
5459     $amount = sprintf("%.2f", $self->balance - $self->in_transit_payments);
5460   }
5461   return '' unless $amount > 0;
5462   
5463   my $invnum = delete $options{invnum};
5464   my $payby = $options{invnum} || $self->payby;  #dubious
5465
5466   if ($options{'realtime'}) {
5467     return $self->realtime_bop( FS::payby->payby2bop($self->payby),
5468                                 $amount,
5469                                 %options,
5470                               );
5471   }
5472
5473   my $oldAutoCommit = $FS::UID::AutoCommit;
5474   local $FS::UID::AutoCommit = 0;
5475   my $dbh = dbh;
5476
5477   #this needs to handle mysql as well as Pg, like svc_acct.pm
5478   #(make it into a common function if folks need to do batching with mysql)
5479   $dbh->do("LOCK TABLE pay_batch IN SHARE ROW EXCLUSIVE MODE")
5480     or return "Cannot lock pay_batch: " . $dbh->errstr;
5481
5482   my %pay_batch = (
5483     'status' => 'O',
5484     'payby'  => FS::payby->payby2payment($payby),
5485   );
5486
5487   my $pay_batch = qsearchs( 'pay_batch', \%pay_batch );
5488
5489   unless ( $pay_batch ) {
5490     $pay_batch = new FS::pay_batch \%pay_batch;
5491     my $error = $pay_batch->insert;
5492     if ( $error ) {
5493       $dbh->rollback if $oldAutoCommit;
5494       die "error creating new batch: $error\n";
5495     }
5496   }
5497
5498   my $old_cust_pay_batch = qsearchs('cust_pay_batch', {
5499       'batchnum' => $pay_batch->batchnum,
5500       'custnum'  => $self->custnum,
5501   } );
5502
5503   foreach (qw( address1 address2 city state zip country payby payinfo paydate
5504                payname )) {
5505     $options{$_} = '' unless exists($options{$_});
5506   }
5507
5508   my $cust_pay_batch = new FS::cust_pay_batch ( {
5509     'batchnum' => $pay_batch->batchnum,
5510     'invnum'   => $invnum || 0,                    # is there a better value?
5511                                                    # this field should be
5512                                                    # removed...
5513                                                    # cust_bill_pay_batch now
5514     'custnum'  => $self->custnum,
5515     'last'     => $self->getfield('last'),
5516     'first'    => $self->getfield('first'),
5517     'address1' => $options{address1} || $self->address1,
5518     'address2' => $options{address2} || $self->address2,
5519     'city'     => $options{city}     || $self->city,
5520     'state'    => $options{state}    || $self->state,
5521     'zip'      => $options{zip}      || $self->zip,
5522     'country'  => $options{country}  || $self->country,
5523     'payby'    => $options{payby}    || $self->payby,
5524     'payinfo'  => $options{payinfo}  || $self->payinfo,
5525     'exp'      => $options{paydate}  || $self->paydate,
5526     'payname'  => $options{payname}  || $self->payname,
5527     'amount'   => $amount,                         # consolidating
5528   } );
5529   
5530   $cust_pay_batch->paybatchnum($old_cust_pay_batch->paybatchnum)
5531     if $old_cust_pay_batch;
5532
5533   my $error;
5534   if ($old_cust_pay_batch) {
5535     $error = $cust_pay_batch->replace($old_cust_pay_batch)
5536   } else {
5537     $error = $cust_pay_batch->insert;
5538   }
5539
5540   if ( $error ) {
5541     $dbh->rollback if $oldAutoCommit;
5542     die $error;
5543   }
5544
5545   my $unapplied =   $self->total_unapplied_credits
5546                   + $self->total_unapplied_payments
5547                   + $self->in_transit_payments;
5548   foreach my $cust_bill ($self->open_cust_bill) {
5549     #$dbh->commit or die $dbh->errstr if $oldAutoCommit;
5550     my $cust_bill_pay_batch = new FS::cust_bill_pay_batch {
5551       'invnum' => $cust_bill->invnum,
5552       'paybatchnum' => $cust_pay_batch->paybatchnum,
5553       'amount' => $cust_bill->owed,
5554       '_date' => time,
5555     };
5556     if ($unapplied >= $cust_bill_pay_batch->amount){
5557       $unapplied -= $cust_bill_pay_batch->amount;
5558       next;
5559     }else{
5560       $cust_bill_pay_batch->amount(sprintf ( "%.2f", 
5561                                    $cust_bill_pay_batch->amount - $unapplied ));      $unapplied = 0;
5562     }
5563     $error = $cust_bill_pay_batch->insert;
5564     if ( $error ) {
5565       $dbh->rollback if $oldAutoCommit;
5566       die $error;
5567     }
5568   }
5569
5570   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
5571   '';
5572 }
5573
5574 =item apply_payments_and_credits [ OPTION => VALUE ... ]
5575
5576 Applies unapplied payments and credits.
5577
5578 In most cases, this new method should be used in place of sequential
5579 apply_payments and apply_credits methods.
5580
5581 A hash of optional arguments may be passed.  Currently "manual" is supported.
5582 If true, a payment receipt is sent instead of a statement when
5583 'payment_receipt_email' configuration option is set.
5584
5585 If there is an error, returns the error, otherwise returns false.
5586
5587 =cut
5588
5589 sub apply_payments_and_credits {
5590   my( $self, %options ) = @_;
5591
5592   local $SIG{HUP} = 'IGNORE';
5593   local $SIG{INT} = 'IGNORE';
5594   local $SIG{QUIT} = 'IGNORE';
5595   local $SIG{TERM} = 'IGNORE';
5596   local $SIG{TSTP} = 'IGNORE';
5597   local $SIG{PIPE} = 'IGNORE';
5598
5599   my $oldAutoCommit = $FS::UID::AutoCommit;
5600   local $FS::UID::AutoCommit = 0;
5601   my $dbh = dbh;
5602
5603   $self->select_for_update; #mutex
5604
5605   foreach my $cust_bill ( $self->open_cust_bill ) {
5606     my $error = $cust_bill->apply_payments_and_credits(%options);
5607     if ( $error ) {
5608       $dbh->rollback if $oldAutoCommit;
5609       return "Error applying: $error";
5610     }
5611   }
5612
5613   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
5614   ''; #no error
5615
5616 }
5617
5618 =item apply_credits OPTION => VALUE ...
5619
5620 Applies (see L<FS::cust_credit_bill>) unapplied credits (see L<FS::cust_credit>)
5621 to outstanding invoice balances in chronological order (or reverse
5622 chronological order if the I<order> option is set to B<newest>) and returns the
5623 value of any remaining unapplied credits available for refund (see
5624 L<FS::cust_refund>).
5625
5626 Dies if there is an error.
5627
5628 =cut
5629
5630 sub apply_credits {
5631   my $self = shift;
5632   my %opt = @_;
5633
5634   local $SIG{HUP} = 'IGNORE';
5635   local $SIG{INT} = 'IGNORE';
5636   local $SIG{QUIT} = 'IGNORE';
5637   local $SIG{TERM} = 'IGNORE';
5638   local $SIG{TSTP} = 'IGNORE';
5639   local $SIG{PIPE} = 'IGNORE';
5640
5641   my $oldAutoCommit = $FS::UID::AutoCommit;
5642   local $FS::UID::AutoCommit = 0;
5643   my $dbh = dbh;
5644
5645   $self->select_for_update; #mutex
5646
5647   unless ( $self->total_unapplied_credits ) {
5648     $dbh->commit or die $dbh->errstr if $oldAutoCommit;
5649     return 0;
5650   }
5651
5652   my @credits = sort { $b->_date <=> $a->_date} (grep { $_->credited > 0 }
5653       qsearch('cust_credit', { 'custnum' => $self->custnum } ) );
5654
5655   my @invoices = $self->open_cust_bill;
5656   @invoices = sort { $b->_date <=> $a->_date } @invoices
5657     if defined($opt{'order'}) && $opt{'order'} eq 'newest';
5658
5659   if ( $conf->exists('pkg-balances') ) {
5660     # limit @credits to those w/ a pkgnum grepped from $self
5661     my %pkgnums = ();
5662     foreach my $i (@invoices) {
5663       foreach my $li ( $i->cust_bill_pkg ) {
5664         $pkgnums{$li->pkgnum} = 1;
5665       }
5666     }
5667     @credits = grep { ! $_->pkgnum || $pkgnums{$_->pkgnum} } @credits;
5668   }
5669
5670   my $credit;
5671
5672   foreach my $cust_bill ( @invoices ) {
5673
5674     if ( !defined($credit) || $credit->credited == 0) {
5675       $credit = pop @credits or last;
5676     }
5677
5678     my $owed;
5679     if ( $conf->exists('pkg-balances') && $credit->pkgnum ) {
5680       $owed = $cust_bill->owed_pkgnum($credit->pkgnum);
5681     } else {
5682       $owed = $cust_bill->owed;
5683     }
5684     unless ( $owed > 0 ) {
5685       push @credits, $credit;
5686       next;
5687     }
5688
5689     my $amount = min( $credit->credited, $owed );
5690     
5691     my $cust_credit_bill = new FS::cust_credit_bill ( {
5692       'crednum' => $credit->crednum,
5693       'invnum'  => $cust_bill->invnum,
5694       'amount'  => $amount,
5695     } );
5696     $cust_credit_bill->pkgnum( $credit->pkgnum )
5697       if $conf->exists('pkg-balances') && $credit->pkgnum;
5698     my $error = $cust_credit_bill->insert;
5699     if ( $error ) {
5700       $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
5701       die $error;
5702     }
5703     
5704     redo if ($cust_bill->owed > 0) && ! $conf->exists('pkg-balances');
5705
5706   }
5707
5708   my $total_unapplied_credits = $self->total_unapplied_credits;
5709
5710   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
5711
5712   return $total_unapplied_credits;
5713 }
5714
5715 =item apply_payments  [ OPTION => VALUE ... ]
5716
5717 Applies (see L<FS::cust_bill_pay>) unapplied payments (see L<FS::cust_pay>)
5718 to outstanding invoice balances in chronological order.
5719
5720  #and returns the value of any remaining unapplied payments.
5721
5722 A hash of optional arguments may be passed.  Currently "manual" is supported.
5723 If true, a payment receipt is sent instead of a statement when
5724 'payment_receipt_email' configuration option is set.
5725
5726 Dies if there is an error.
5727
5728 =cut
5729
5730 sub apply_payments {
5731   my( $self, %options ) = @_;
5732
5733   local $SIG{HUP} = 'IGNORE';
5734   local $SIG{INT} = 'IGNORE';
5735   local $SIG{QUIT} = 'IGNORE';
5736   local $SIG{TERM} = 'IGNORE';
5737   local $SIG{TSTP} = 'IGNORE';
5738   local $SIG{PIPE} = 'IGNORE';
5739
5740   my $oldAutoCommit = $FS::UID::AutoCommit;
5741   local $FS::UID::AutoCommit = 0;
5742   my $dbh = dbh;
5743
5744   $self->select_for_update; #mutex
5745
5746   #return 0 unless
5747
5748   my @payments = sort { $b->_date <=> $a->_date }
5749                  grep { $_->unapplied > 0 }
5750                  $self->cust_pay;
5751
5752   my @invoices = sort { $a->_date <=> $b->_date}
5753                  grep { $_->owed > 0 }
5754                  $self->cust_bill;
5755
5756   if ( $conf->exists('pkg-balances') ) {
5757     # limit @payments to those w/ a pkgnum grepped from $self
5758     my %pkgnums = ();
5759     foreach my $i (@invoices) {
5760       foreach my $li ( $i->cust_bill_pkg ) {
5761         $pkgnums{$li->pkgnum} = 1;
5762       }
5763     }
5764     @payments = grep { ! $_->pkgnum || $pkgnums{$_->pkgnum} } @payments;
5765   }
5766
5767   my $payment;
5768
5769   foreach my $cust_bill ( @invoices ) {
5770
5771     if ( !defined($payment) || $payment->unapplied == 0 ) {
5772       $payment = pop @payments or last;
5773     }
5774
5775     my $owed;
5776     if ( $conf->exists('pkg-balances') && $payment->pkgnum ) {
5777       $owed = $cust_bill->owed_pkgnum($payment->pkgnum);
5778     } else {
5779       $owed = $cust_bill->owed;
5780     }
5781     unless ( $owed > 0 ) {
5782       push @payments, $payment;
5783       next;
5784     }
5785
5786     my $amount = min( $payment->unapplied, $owed );
5787
5788     my $cust_bill_pay = new FS::cust_bill_pay ( {
5789       'paynum' => $payment->paynum,
5790       'invnum' => $cust_bill->invnum,
5791       'amount' => $amount,
5792     } );
5793     $cust_bill_pay->pkgnum( $payment->pkgnum )
5794       if $conf->exists('pkg-balances') && $payment->pkgnum;
5795     my $error = $cust_bill_pay->insert(%options);
5796     if ( $error ) {
5797       $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
5798       die $error;
5799     }
5800
5801     redo if ( $cust_bill->owed > 0) && ! $conf->exists('pkg-balances');
5802
5803   }
5804
5805   my $total_unapplied_payments = $self->total_unapplied_payments;
5806
5807   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
5808
5809   return $total_unapplied_payments;
5810 }
5811
5812 =item total_owed
5813
5814 Returns the total owed for this customer on all invoices
5815 (see L<FS::cust_bill/owed>).
5816
5817 =cut
5818
5819 sub total_owed {
5820   my $self = shift;
5821   $self->total_owed_date(2145859200); #12/31/2037
5822 }
5823
5824 =item total_owed_date TIME
5825
5826 Returns the total owed for this customer on all invoices with date earlier than
5827 TIME.  TIME is specified as a UNIX timestamp; see L<perlfunc/"time">).  Also
5828 see L<Time::Local> and L<Date::Parse> for conversion functions.
5829
5830 =cut
5831
5832 sub total_owed_date {
5833   my $self = shift;
5834   my $time = shift;
5835
5836 #  my $custnum = $self->custnum;
5837 #
5838 #  my $owed_sql = FS::cust_bill->owed_sql;
5839 #
5840 #  my $sql = "
5841 #    SELECT SUM($owed_sql) FROM cust_bill
5842 #      WHERE custnum = $custnum
5843 #        AND _date <= $time
5844 #  ";
5845 #
5846 #  my $sth = dbh->prepare($sql) or die dbh->errstr;
5847 #  $sth->execute() or die $sth->errstr;
5848 #
5849 #  return sprintf( '%.2f', $sth->fetchrow_arrayref->[0] );
5850
5851   my $total_bill = 0;
5852   foreach my $cust_bill (
5853     grep { $_->_date <= $time }
5854       qsearch('cust_bill', { 'custnum' => $self->custnum, } )
5855   ) {
5856     $total_bill += $cust_bill->owed;
5857   }
5858   sprintf( "%.2f", $total_bill );
5859
5860 }
5861
5862 =item total_owed_pkgnum PKGNUM
5863
5864 Returns the total owed on all invoices for this customer's specific package
5865 when using experimental package balances (see L<FS::cust_bill/owed_pkgnum>).
5866
5867 =cut
5868
5869 sub total_owed_pkgnum {
5870   my( $self, $pkgnum ) = @_;
5871   $self->total_owed_date_pkgnum(2145859200, $pkgnum); #12/31/2037
5872 }
5873
5874 =item total_owed_date_pkgnum TIME PKGNUM
5875
5876 Returns the total owed for this customer's specific package when using
5877 experimental package balances on all invoices with date earlier than
5878 TIME.  TIME is specified as a UNIX timestamp; see L<perlfunc/"time">).  Also
5879 see L<Time::Local> and L<Date::Parse> for conversion functions.
5880
5881 =cut
5882
5883 sub total_owed_date_pkgnum {
5884   my( $self, $time, $pkgnum ) = @_;
5885
5886   my $total_bill = 0;
5887   foreach my $cust_bill (
5888     grep { $_->_date <= $time }
5889       qsearch('cust_bill', { 'custnum' => $self->custnum, } )
5890   ) {
5891     $total_bill += $cust_bill->owed_pkgnum($pkgnum);
5892   }
5893   sprintf( "%.2f", $total_bill );
5894
5895 }
5896
5897 =item total_paid
5898
5899 Returns the total amount of all payments.
5900
5901 =cut
5902
5903 sub total_paid {
5904   my $self = shift;
5905   my $total = 0;
5906   $total += $_->paid foreach $self->cust_pay;
5907   sprintf( "%.2f", $total );
5908 }
5909
5910 =item total_unapplied_credits
5911
5912 Returns the total outstanding credit (see L<FS::cust_credit>) for this
5913 customer.  See L<FS::cust_credit/credited>.
5914
5915 =item total_credited
5916
5917 Old name for total_unapplied_credits.  Don't use.
5918
5919 =cut
5920
5921 sub total_credited {
5922   #carp "total_credited deprecated, use total_unapplied_credits";
5923   shift->total_unapplied_credits(@_);
5924 }
5925
5926 sub total_unapplied_credits {
5927   my $self = shift;
5928   my $total_credit = 0;
5929   $total_credit += $_->credited foreach $self->cust_credit;
5930   sprintf( "%.2f", $total_credit );
5931 }
5932
5933 =item total_unapplied_credits_pkgnum PKGNUM
5934
5935 Returns the total outstanding credit (see L<FS::cust_credit>) for this
5936 customer.  See L<FS::cust_credit/credited>.
5937
5938 =cut
5939
5940 sub total_unapplied_credits_pkgnum {
5941   my( $self, $pkgnum ) = @_;
5942   my $total_credit = 0;
5943   $total_credit += $_->credited foreach $self->cust_credit_pkgnum($pkgnum);
5944   sprintf( "%.2f", $total_credit );
5945 }
5946
5947
5948 =item total_unapplied_payments
5949
5950 Returns the total unapplied payments (see L<FS::cust_pay>) for this customer.
5951 See L<FS::cust_pay/unapplied>.
5952
5953 =cut
5954
5955 sub total_unapplied_payments {
5956   my $self = shift;
5957   my $total_unapplied = 0;
5958   $total_unapplied += $_->unapplied foreach $self->cust_pay;
5959   sprintf( "%.2f", $total_unapplied );
5960 }
5961
5962 =item total_unapplied_payments_pkgnum PKGNUM
5963
5964 Returns the total unapplied payments (see L<FS::cust_pay>) for this customer's
5965 specific package when using experimental package balances.  See
5966 L<FS::cust_pay/unapplied>.
5967
5968 =cut
5969
5970 sub total_unapplied_payments_pkgnum {
5971   my( $self, $pkgnum ) = @_;
5972   my $total_unapplied = 0;
5973   $total_unapplied += $_->unapplied foreach $self->cust_pay_pkgnum($pkgnum);
5974   sprintf( "%.2f", $total_unapplied );
5975 }
5976
5977
5978 =item total_unapplied_refunds
5979
5980 Returns the total unrefunded refunds (see L<FS::cust_refund>) for this
5981 customer.  See L<FS::cust_refund/unapplied>.
5982
5983 =cut
5984
5985 sub total_unapplied_refunds {
5986   my $self = shift;
5987   my $total_unapplied = 0;
5988   $total_unapplied += $_->unapplied foreach $self->cust_refund;
5989   sprintf( "%.2f", $total_unapplied );
5990 }
5991
5992 =item balance
5993
5994 Returns the balance for this customer (total_owed plus total_unrefunded, minus
5995 total_unapplied_credits minus total_unapplied_payments).
5996
5997 =cut
5998
5999 sub balance {
6000   my $self = shift;
6001   sprintf( "%.2f",
6002       $self->total_owed
6003     + $self->total_unapplied_refunds
6004     - $self->total_unapplied_credits
6005     - $self->total_unapplied_payments
6006   );
6007 }
6008
6009 =item balance_date TIME
6010
6011 Returns the balance for this customer, only considering invoices with date
6012 earlier than TIME (total_owed_date minus total_credited minus
6013 total_unapplied_payments).  TIME is specified as a UNIX timestamp; see
6014 L<perlfunc/"time">).  Also see L<Time::Local> and L<Date::Parse> for conversion
6015 functions.
6016
6017 =cut
6018
6019 sub balance_date {
6020   my $self = shift;
6021   my $time = shift;
6022   sprintf( "%.2f",
6023         $self->total_owed_date($time)
6024       + $self->total_unapplied_refunds
6025       - $self->total_unapplied_credits
6026       - $self->total_unapplied_payments
6027   );
6028 }
6029
6030 =item balance_date_range START_TIME [ END_TIME [ OPTION => VALUE ... ] ]
6031
6032 Returns the balance for this customer, only considering invoices with date
6033 earlier than START_TIME, and optionally not later than END_TIME
6034 (total_owed_date minus total_unapplied_credits minus total_unapplied_payments).
6035
6036 Times are specified as SQL fragments or numeric
6037 UNIX timestamps; see L<perlfunc/"time">).  Also see L<Time::Local> and
6038 L<Date::Parse> for conversion functions.  The empty string can be passed
6039 to disable that time constraint completely.
6040
6041 Available options are:
6042
6043 =over 4
6044
6045 =item unapplied_date
6046
6047 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)
6048
6049 =back
6050
6051 =cut
6052
6053 sub balance_date_range {
6054   my $self = shift;
6055   my $sql = 'SELECT SUM('. $self->balance_date_sql(@_).
6056             ') FROM cust_main WHERE custnum='. $self->custnum;
6057   sprintf( "%.2f", $self->scalar_sql($sql) );
6058 }
6059
6060 =item balance_pkgnum PKGNUM
6061
6062 Returns the balance for this customer's specific package when using
6063 experimental package balances (total_owed plus total_unrefunded, minus
6064 total_unapplied_credits minus total_unapplied_payments)
6065
6066 =cut
6067
6068 sub balance_pkgnum {
6069   my( $self, $pkgnum ) = @_;
6070
6071   sprintf( "%.2f",
6072       $self->total_owed_pkgnum($pkgnum)
6073 # n/a - refunds aren't part of pkg-balances since they don't apply to invoices
6074 #    + $self->total_unapplied_refunds_pkgnum($pkgnum)
6075     - $self->total_unapplied_credits_pkgnum($pkgnum)
6076     - $self->total_unapplied_payments_pkgnum($pkgnum)
6077   );
6078 }
6079
6080 =item in_transit_payments
6081
6082 Returns the total of requests for payments for this customer pending in 
6083 batches in transit to the bank.  See L<FS::pay_batch> and L<FS::cust_pay_batch>
6084
6085 =cut
6086
6087 sub in_transit_payments {
6088   my $self = shift;
6089   my $in_transit_payments = 0;
6090   foreach my $pay_batch ( qsearch('pay_batch', {
6091     'status' => 'I',
6092   } ) ) {
6093     foreach my $cust_pay_batch ( qsearch('cust_pay_batch', {
6094       'batchnum' => $pay_batch->batchnum,
6095       'custnum' => $self->custnum,
6096     } ) ) {
6097       $in_transit_payments += $cust_pay_batch->amount;
6098     }
6099   }
6100   sprintf( "%.2f", $in_transit_payments );
6101 }
6102
6103 =item payment_info
6104
6105 Returns a hash of useful information for making a payment.
6106
6107 =over 4
6108
6109 =item balance
6110
6111 Current balance.
6112
6113 =item payby
6114
6115 'CARD' (credit card - automatic), 'DCRD' (credit card - on-demand),
6116 'CHEK' (electronic check - automatic), 'DCHK' (electronic check - on-demand),
6117 'LECB' (Phone bill billing), 'BILL' (billing), or 'COMP' (free).
6118
6119 =back
6120
6121 For credit card transactions:
6122
6123 =over 4
6124
6125 =item card_type 1
6126
6127 =item payname
6128
6129 Exact name on card
6130
6131 =back
6132
6133 For electronic check transactions:
6134
6135 =over 4
6136
6137 =item stateid_state
6138
6139 =back
6140
6141 =cut
6142
6143 sub payment_info {
6144   my $self = shift;
6145
6146   my %return = ();
6147
6148   $return{balance} = $self->balance;
6149
6150   $return{payname} = $self->payname
6151                      || ( $self->first. ' '. $self->get('last') );
6152
6153   $return{$_} = $self->get($_) for qw(address1 address2 city state zip);
6154
6155   $return{payby} = $self->payby;
6156   $return{stateid_state} = $self->stateid_state;
6157
6158   if ( $self->payby =~ /^(CARD|DCRD)$/ ) {
6159     $return{card_type} = cardtype($self->payinfo);
6160     $return{payinfo} = $self->paymask;
6161
6162     @return{'month', 'year'} = $self->paydate_monthyear;
6163
6164   }
6165
6166   if ( $self->payby =~ /^(CHEK|DCHK)$/ ) {
6167     my ($payinfo1, $payinfo2) = split '@', $self->paymask;
6168     $return{payinfo1} = $payinfo1;
6169     $return{payinfo2} = $payinfo2;
6170     $return{paytype}  = $self->paytype;
6171     $return{paystate} = $self->paystate;
6172
6173   }
6174
6175   #doubleclick protection
6176   my $_date = time;
6177   $return{paybatch} = "webui-MyAccount-$_date-$$-". rand() * 2**32;
6178
6179   %return;
6180
6181 }
6182
6183 =item paydate_monthyear
6184
6185 Returns a two-element list consisting of the month and year of this customer's
6186 paydate (credit card expiration date for CARD customers)
6187
6188 =cut
6189
6190 sub paydate_monthyear {
6191   my $self = shift;
6192   if ( $self->paydate  =~ /^(\d{4})-(\d{1,2})-\d{1,2}$/ ) { #Pg date format
6193     ( $2, $1 );
6194   } elsif ( $self->paydate =~ /^(\d{1,2})-(\d{1,2}-)?(\d{4}$)/ ) {
6195     ( $1, $3 );
6196   } else {
6197     ('', '');
6198   }
6199 }
6200
6201 =item tax_exemption TAXNAME
6202
6203 =cut
6204
6205 sub tax_exemption {
6206   my( $self, $taxname ) = @_;
6207
6208   qsearchs( 'cust_main_exemption', { 'custnum' => $self->custnum,
6209                                      'taxname' => $taxname,
6210                                    },
6211           );
6212 }
6213
6214 =item cust_main_exemption
6215
6216 =cut
6217
6218 sub cust_main_exemption {
6219   my $self = shift;
6220   qsearch( 'cust_main_exemption', { 'custnum' => $self->custnum } );
6221 }
6222
6223 =item invoicing_list [ ARRAYREF ]
6224
6225 If an arguement is given, sets these email addresses as invoice recipients
6226 (see L<FS::cust_main_invoice>).  Errors are not fatal and are not reported
6227 (except as warnings), so use check_invoicing_list first.
6228
6229 Returns a list of email addresses (with svcnum entries expanded).
6230
6231 Note: You can clear the invoicing list by passing an empty ARRAYREF.  You can
6232 check it without disturbing anything by passing nothing.
6233
6234 This interface may change in the future.
6235
6236 =cut
6237
6238 sub invoicing_list {
6239   my( $self, $arrayref ) = @_;
6240
6241   if ( $arrayref ) {
6242     my @cust_main_invoice;
6243     if ( $self->custnum ) {
6244       @cust_main_invoice = 
6245         qsearch( 'cust_main_invoice', { 'custnum' => $self->custnum } );
6246     } else {
6247       @cust_main_invoice = ();
6248     }
6249     foreach my $cust_main_invoice ( @cust_main_invoice ) {
6250       #warn $cust_main_invoice->destnum;
6251       unless ( grep { $cust_main_invoice->address eq $_ } @{$arrayref} ) {
6252         #warn $cust_main_invoice->destnum;
6253         my $error = $cust_main_invoice->delete;
6254         warn $error if $error;
6255       }
6256     }
6257     if ( $self->custnum ) {
6258       @cust_main_invoice = 
6259         qsearch( 'cust_main_invoice', { 'custnum' => $self->custnum } );
6260     } else {
6261       @cust_main_invoice = ();
6262     }
6263     my %seen = map { $_->address => 1 } @cust_main_invoice;
6264     foreach my $address ( @{$arrayref} ) {
6265       next if exists $seen{$address} && $seen{$address};
6266       $seen{$address} = 1;
6267       my $cust_main_invoice = new FS::cust_main_invoice ( {
6268         'custnum' => $self->custnum,
6269         'dest'    => $address,
6270       } );
6271       my $error = $cust_main_invoice->insert;
6272       warn $error if $error;
6273     }
6274   }
6275   
6276   if ( $self->custnum ) {
6277     map { $_->address }
6278       qsearch( 'cust_main_invoice', { 'custnum' => $self->custnum } );
6279   } else {
6280     ();
6281   }
6282
6283 }
6284
6285 =item check_invoicing_list ARRAYREF
6286
6287 Checks these arguements as valid input for the invoicing_list method.  If there
6288 is an error, returns the error, otherwise returns false.
6289
6290 =cut
6291
6292 sub check_invoicing_list {
6293   my( $self, $arrayref ) = @_;
6294
6295   foreach my $address ( @$arrayref ) {
6296
6297     if ($address eq 'FAX' and $self->getfield('fax') eq '') {
6298       return 'Can\'t add FAX invoice destination with a blank FAX number.';
6299     }
6300
6301     my $cust_main_invoice = new FS::cust_main_invoice ( {
6302       'custnum' => $self->custnum,
6303       'dest'    => $address,
6304     } );
6305     my $error = $self->custnum
6306                 ? $cust_main_invoice->check
6307                 : $cust_main_invoice->checkdest
6308     ;
6309     return $error if $error;
6310
6311   }
6312
6313   return "Email address required"
6314     if $conf->exists('cust_main-require_invoicing_list_email')
6315     && ! grep { $_ !~ /^([A-Z]+)$/ } @$arrayref;
6316
6317   '';
6318 }
6319
6320 =item set_default_invoicing_list
6321
6322 Sets the invoicing list to all accounts associated with this customer,
6323 overwriting any previous invoicing list.
6324
6325 =cut
6326
6327 sub set_default_invoicing_list {
6328   my $self = shift;
6329   $self->invoicing_list($self->all_emails);
6330 }
6331
6332 =item all_emails
6333
6334 Returns the email addresses of all accounts provisioned for this customer.
6335
6336 =cut
6337
6338 sub all_emails {
6339   my $self = shift;
6340   my %list;
6341   foreach my $cust_pkg ( $self->all_pkgs ) {
6342     my @cust_svc = qsearch('cust_svc', { 'pkgnum' => $cust_pkg->pkgnum } );
6343     my @svc_acct =
6344       map { qsearchs('svc_acct', { 'svcnum' => $_->svcnum } ) }
6345         grep { qsearchs('svc_acct', { 'svcnum' => $_->svcnum } ) }
6346           @cust_svc;
6347     $list{$_}=1 foreach map { $_->email } @svc_acct;
6348   }
6349   keys %list;
6350 }
6351
6352 =item invoicing_list_addpost
6353
6354 Adds postal invoicing to this customer.  If this customer is already configured
6355 to receive postal invoices, does nothing.
6356
6357 =cut
6358
6359 sub invoicing_list_addpost {
6360   my $self = shift;
6361   return if grep { $_ eq 'POST' } $self->invoicing_list;
6362   my @invoicing_list = $self->invoicing_list;
6363   push @invoicing_list, 'POST';
6364   $self->invoicing_list(\@invoicing_list);
6365 }
6366
6367 =item invoicing_list_emailonly
6368
6369 Returns the list of email invoice recipients (invoicing_list without non-email
6370 destinations such as POST and FAX).
6371
6372 =cut
6373
6374 sub invoicing_list_emailonly {
6375   my $self = shift;
6376   warn "$me invoicing_list_emailonly called"
6377     if $DEBUG;
6378   grep { $_ !~ /^([A-Z]+)$/ } $self->invoicing_list;
6379 }
6380
6381 =item invoicing_list_emailonly_scalar
6382
6383 Returns the list of email invoice recipients (invoicing_list without non-email
6384 destinations such as POST and FAX) as a comma-separated scalar.
6385
6386 =cut
6387
6388 sub invoicing_list_emailonly_scalar {
6389   my $self = shift;
6390   warn "$me invoicing_list_emailonly_scalar called"
6391     if $DEBUG;
6392   join(', ', $self->invoicing_list_emailonly);
6393 }
6394
6395 =item referral_custnum_cust_main
6396
6397 Returns the customer who referred this customer (or the empty string, if
6398 this customer was not referred).
6399
6400 Note the difference with referral_cust_main method: This method,
6401 referral_custnum_cust_main returns the single customer (if any) who referred
6402 this customer, while referral_cust_main returns an array of customers referred
6403 BY this customer.
6404
6405 =cut
6406
6407 sub referral_custnum_cust_main {
6408   my $self = shift;
6409   return '' unless $self->referral_custnum;
6410   qsearchs('cust_main', { 'custnum' => $self->referral_custnum } );
6411 }
6412
6413 =item referral_cust_main [ DEPTH [ EXCLUDE_HASHREF ] ]
6414
6415 Returns an array of customers referred by this customer (referral_custnum set
6416 to this custnum).  If DEPTH is given, recurses up to the given depth, returning
6417 customers referred by customers referred by this customer and so on, inclusive.
6418 The default behavior is DEPTH 1 (no recursion).
6419
6420 Note the difference with referral_custnum_cust_main method: This method,
6421 referral_cust_main, returns an array of customers referred BY this customer,
6422 while referral_custnum_cust_main returns the single customer (if any) who
6423 referred this customer.
6424
6425 =cut
6426
6427 sub referral_cust_main {
6428   my $self = shift;
6429   my $depth = @_ ? shift : 1;
6430   my $exclude = @_ ? shift : {};
6431
6432   my @cust_main =
6433     map { $exclude->{$_->custnum}++; $_; }
6434       grep { ! $exclude->{ $_->custnum } }
6435         qsearch( 'cust_main', { 'referral_custnum' => $self->custnum } );
6436
6437   if ( $depth > 1 ) {
6438     push @cust_main,
6439       map { $_->referral_cust_main($depth-1, $exclude) }
6440         @cust_main;
6441   }
6442
6443   @cust_main;
6444 }
6445
6446 =item referral_cust_main_ncancelled
6447
6448 Same as referral_cust_main, except only returns customers with uncancelled
6449 packages.
6450
6451 =cut
6452
6453 sub referral_cust_main_ncancelled {
6454   my $self = shift;
6455   grep { scalar($_->ncancelled_pkgs) } $self->referral_cust_main;
6456 }
6457
6458 =item referral_cust_pkg [ DEPTH ]
6459
6460 Like referral_cust_main, except returns a flat list of all unsuspended (and
6461 uncancelled) packages for each customer.  The number of items in this list may
6462 be useful for commission calculations (perhaps after a C<grep { my $pkgpart = $_->pkgpart; grep { $_ == $pkgpart } @commission_worthy_pkgparts> } $cust_main-> ).
6463
6464 =cut
6465
6466 sub referral_cust_pkg {
6467   my $self = shift;
6468   my $depth = @_ ? shift : 1;
6469
6470   map { $_->unsuspended_pkgs }
6471     grep { $_->unsuspended_pkgs }
6472       $self->referral_cust_main($depth);
6473 }
6474
6475 =item referring_cust_main
6476
6477 Returns the single cust_main record for the customer who referred this customer
6478 (referral_custnum), or false.
6479
6480 =cut
6481
6482 sub referring_cust_main {
6483   my $self = shift;
6484   return '' unless $self->referral_custnum;
6485   qsearchs('cust_main', { 'custnum' => $self->referral_custnum } );
6486 }
6487
6488 =item credit AMOUNT, REASON [ , OPTION => VALUE ... ]
6489
6490 Applies a credit to this customer.  If there is an error, returns the error,
6491 otherwise returns false.
6492
6493 REASON can be a text string, an FS::reason object, or a scalar reference to
6494 a reasonnum.  If a text string, it will be automatically inserted as a new
6495 reason, and a 'reason_type' option must be passed to indicate the
6496 FS::reason_type for the new reason.
6497
6498 An I<addlinfo> option may be passed to set the credit's I<addlinfo> field.
6499
6500 Any other options are passed to FS::cust_credit::insert.
6501
6502 =cut
6503
6504 sub credit {
6505   my( $self, $amount, $reason, %options ) = @_;
6506
6507   my $cust_credit = new FS::cust_credit {
6508     'custnum' => $self->custnum,
6509     'amount'  => $amount,
6510   };
6511
6512   if ( ref($reason) ) {
6513
6514     if ( ref($reason) eq 'SCALAR' ) {
6515       $cust_credit->reasonnum( $$reason );
6516     } else {
6517       $cust_credit->reasonnum( $reason->reasonnum );
6518     }
6519
6520   } else {
6521     $cust_credit->set('reason', $reason)
6522   }
6523
6524   for (qw( addlinfo eventnum )) {
6525     $cust_credit->$_( delete $options{$_} )
6526       if exists($options{$_});
6527   }
6528
6529   $cust_credit->insert(%options);
6530
6531 }
6532
6533 =item charge HASHREF || AMOUNT [ PKG [ COMMENT [ TAXCLASS ] ] ]
6534
6535 Creates a one-time charge for this customer.  If there is an error, returns
6536 the error, otherwise returns false.
6537
6538 New-style, with a hashref of options:
6539
6540   my $error = $cust_main->charge(
6541                                   {
6542                                     'amount'     => 54.32,
6543                                     'quantity'   => 1,
6544                                     'start_date' => str2time('7/4/2009'),
6545                                     'pkg'        => 'Description',
6546                                     'comment'    => 'Comment',
6547                                     'additional' => [], #extra invoice detail
6548                                     'classnum'   => 1,  #pkg_class
6549
6550                                     'setuptax'   => '', # or 'Y' for tax exempt
6551
6552                                     #internal taxation
6553                                     'taxclass'   => 'Tax class',
6554
6555                                     #vendor taxation
6556                                     'taxproduct' => 2,  #part_pkg_taxproduct
6557                                     'override'   => {}, #XXX describe
6558
6559                                     #will be filled in with the new object
6560                                     'cust_pkg_ref' => \$cust_pkg,
6561
6562                                     #generate an invoice immediately
6563                                     'bill_now' => 0,
6564                                     'invoice_terms' => '', #with these terms
6565                                   }
6566                                 );
6567
6568 Old-style:
6569
6570   my $error = $cust_main->charge( 54.32, 'Description', 'Comment', 'Tax class' );
6571
6572 =cut
6573
6574 sub charge {
6575   my $self = shift;
6576   my ( $amount, $quantity, $start_date, $classnum );
6577   my ( $pkg, $comment, $additional );
6578   my ( $setuptax, $taxclass );   #internal taxes
6579   my ( $taxproduct, $override ); #vendor (CCH) taxes
6580   my $no_auto = '';
6581   my $cust_pkg_ref = '';
6582   my ( $bill_now, $invoice_terms ) = ( 0, '' );
6583   if ( ref( $_[0] ) ) {
6584     $amount     = $_[0]->{amount};
6585     $quantity   = exists($_[0]->{quantity}) ? $_[0]->{quantity} : 1;
6586     $start_date = exists($_[0]->{start_date}) ? $_[0]->{start_date} : '';
6587     $no_auto    = exists($_[0]->{no_auto}) ? $_[0]->{no_auto} : '';
6588     $pkg        = exists($_[0]->{pkg}) ? $_[0]->{pkg} : 'One-time charge';
6589     $comment    = exists($_[0]->{comment}) ? $_[0]->{comment}
6590                                            : '$'. sprintf("%.2f",$amount);
6591     $setuptax   = exists($_[0]->{setuptax}) ? $_[0]->{setuptax} : '';
6592     $taxclass   = exists($_[0]->{taxclass}) ? $_[0]->{taxclass} : '';
6593     $classnum   = exists($_[0]->{classnum}) ? $_[0]->{classnum} : '';
6594     $additional = $_[0]->{additional} || [];
6595     $taxproduct = $_[0]->{taxproductnum};
6596     $override   = { '' => $_[0]->{tax_override} };
6597     $cust_pkg_ref = exists($_[0]->{cust_pkg_ref}) ? $_[0]->{cust_pkg_ref} : '';
6598     $bill_now = exists($_[0]->{bill_now}) ? $_[0]->{bill_now} : '';
6599     $invoice_terms = exists($_[0]->{invoice_terms}) ? $_[0]->{invoice_terms} : '';
6600   } else {
6601     $amount     = shift;
6602     $quantity   = 1;
6603     $start_date = '';
6604     $pkg        = @_ ? shift : 'One-time charge';
6605     $comment    = @_ ? shift : '$'. sprintf("%.2f",$amount);
6606     $setuptax   = '';
6607     $taxclass   = @_ ? shift : '';
6608     $additional = [];
6609   }
6610
6611   local $SIG{HUP} = 'IGNORE';
6612   local $SIG{INT} = 'IGNORE';
6613   local $SIG{QUIT} = 'IGNORE';
6614   local $SIG{TERM} = 'IGNORE';
6615   local $SIG{TSTP} = 'IGNORE';
6616   local $SIG{PIPE} = 'IGNORE';
6617
6618   my $oldAutoCommit = $FS::UID::AutoCommit;
6619   local $FS::UID::AutoCommit = 0;
6620   my $dbh = dbh;
6621
6622   my $part_pkg = new FS::part_pkg ( {
6623     'pkg'           => $pkg,
6624     'comment'       => $comment,
6625     'plan'          => 'flat',
6626     'freq'          => 0,
6627     'disabled'      => 'Y',
6628     'classnum'      => ( $classnum ? $classnum : '' ),
6629     'setuptax'      => $setuptax,
6630     'taxclass'      => $taxclass,
6631     'taxproductnum' => $taxproduct,
6632   } );
6633
6634   my %options = ( ( map { ("additional_info$_" => $additional->[$_] ) }
6635                         ( 0 .. @$additional - 1 )
6636                   ),
6637                   'additional_count' => scalar(@$additional),
6638                   'setup_fee' => $amount,
6639                 );
6640
6641   my $error = $part_pkg->insert( options       => \%options,
6642                                  tax_overrides => $override,
6643                                );
6644   if ( $error ) {
6645     $dbh->rollback if $oldAutoCommit;
6646     return $error;
6647   }
6648
6649   my $pkgpart = $part_pkg->pkgpart;
6650   my %type_pkgs = ( 'typenum' => $self->agent->typenum, 'pkgpart' => $pkgpart );
6651   unless ( qsearchs('type_pkgs', \%type_pkgs ) ) {
6652     my $type_pkgs = new FS::type_pkgs \%type_pkgs;
6653     $error = $type_pkgs->insert;
6654     if ( $error ) {
6655       $dbh->rollback if $oldAutoCommit;
6656       return $error;
6657     }
6658   }
6659
6660   my $cust_pkg = new FS::cust_pkg ( {
6661     'custnum'    => $self->custnum,
6662     'pkgpart'    => $pkgpart,
6663     'quantity'   => $quantity,
6664     'start_date' => $start_date,
6665     'no_auto'    => $no_auto,
6666   } );
6667
6668   $error = $cust_pkg->insert;
6669   if ( $error ) {
6670     $dbh->rollback if $oldAutoCommit;
6671     return $error;
6672   } elsif ( $cust_pkg_ref ) {
6673     ${$cust_pkg_ref} = $cust_pkg;
6674   }
6675
6676   if ( $bill_now ) {
6677     my $error = $self->bill( 'invoice_terms' => $invoice_terms,
6678                              'pkg_list'      => [ $cust_pkg ],
6679                            );
6680     if ( $error ) {
6681       $dbh->rollback if $oldAutoCommit;
6682       return $error;
6683     }   
6684   }
6685
6686   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
6687   return '';
6688
6689 }
6690
6691 #=item charge_postal_fee
6692 #
6693 #Applies a one time charge this customer.  If there is an error,
6694 #returns the error, returns the cust_pkg charge object or false
6695 #if there was no charge.
6696 #
6697 #=cut
6698 #
6699 # This should be a customer event.  For that to work requires that bill
6700 # also be a customer event.
6701
6702 sub charge_postal_fee {
6703   my $self = shift;
6704
6705   my $pkgpart = $conf->config('postal_invoice-fee_pkgpart');
6706   return '' unless ($pkgpart && grep { $_ eq 'POST' } $self->invoicing_list);
6707
6708   my $cust_pkg = new FS::cust_pkg ( {
6709     'custnum'  => $self->custnum,
6710     'pkgpart'  => $pkgpart,
6711     'quantity' => 1,
6712   } );
6713
6714   my $error = $cust_pkg->insert;
6715   $error ? $error : $cust_pkg;
6716 }
6717
6718 =item cust_bill
6719
6720 Returns all the invoices (see L<FS::cust_bill>) for this customer.
6721
6722 =cut
6723
6724 sub cust_bill {
6725   my $self = shift;
6726   map { $_ } #return $self->num_cust_bill unless wantarray;
6727   sort { $a->_date <=> $b->_date }
6728     qsearch('cust_bill', { 'custnum' => $self->custnum, } )
6729 }
6730
6731 =item open_cust_bill
6732
6733 Returns all the open (owed > 0) invoices (see L<FS::cust_bill>) for this
6734 customer.
6735
6736 =cut
6737
6738 sub open_cust_bill {
6739   my $self = shift;
6740
6741   qsearch({
6742     'table'     => 'cust_bill',
6743     'hashref'   => { 'custnum' => $self->custnum, },
6744     'extra_sql' => ' AND '. FS::cust_bill->owed_sql. ' > 0',
6745     'order_by'  => 'ORDER BY _date ASC',
6746   });
6747
6748 }
6749
6750 =item cust_statements
6751
6752 Returns all the statements (see L<FS::cust_statement>) for this customer.
6753
6754 =cut
6755
6756 sub cust_statement {
6757   my $self = shift;
6758   map { $_ } #return $self->num_cust_statement unless wantarray;
6759   sort { $a->_date <=> $b->_date }
6760     qsearch('cust_statement', { 'custnum' => $self->custnum, } )
6761 }
6762
6763 =item cust_credit
6764
6765 Returns all the credits (see L<FS::cust_credit>) for this customer.
6766
6767 =cut
6768
6769 sub cust_credit {
6770   my $self = shift;
6771   map { $_ } #return $self->num_cust_credit unless wantarray;
6772   sort { $a->_date <=> $b->_date }
6773     qsearch( 'cust_credit', { 'custnum' => $self->custnum } )
6774 }
6775
6776 =item cust_credit_pkgnum
6777
6778 Returns all the credits (see L<FS::cust_credit>) for this customer's specific
6779 package when using experimental package balances.
6780
6781 =cut
6782
6783 sub cust_credit_pkgnum {
6784   my( $self, $pkgnum ) = @_;
6785   map { $_ } #return $self->num_cust_credit_pkgnum($pkgnum) unless wantarray;
6786   sort { $a->_date <=> $b->_date }
6787     qsearch( 'cust_credit', { 'custnum' => $self->custnum,
6788                               'pkgnum'  => $pkgnum,
6789                             }
6790     );
6791 }
6792
6793 =item cust_pay
6794
6795 Returns all the payments (see L<FS::cust_pay>) for this customer.
6796
6797 =cut
6798
6799 sub cust_pay {
6800   my $self = shift;
6801   return $self->num_cust_pay unless wantarray;
6802   sort { $a->_date <=> $b->_date }
6803     qsearch( 'cust_pay', { 'custnum' => $self->custnum } )
6804 }
6805
6806 =item num_cust_pay
6807
6808 Returns the number of payments (see L<FS::cust_pay>) for this customer.  Also
6809 called automatically when the cust_pay method is used in a scalar context.
6810
6811 =cut
6812
6813 sub num_cust_pay {
6814   my $self = shift;
6815   my $sql = "SELECT COUNT(*) FROM cust_pay WHERE custnum = ?";
6816   my $sth = dbh->prepare($sql) or die dbh->errstr;
6817   $sth->execute($self->custnum) or die $sth->errstr;
6818   $sth->fetchrow_arrayref->[0];
6819 }
6820
6821 =item cust_pay_pkgnum
6822
6823 Returns all the payments (see L<FS::cust_pay>) for this customer's specific
6824 package when using experimental package balances.
6825
6826 =cut
6827
6828 sub cust_pay_pkgnum {
6829   my( $self, $pkgnum ) = @_;
6830   map { $_ } #return $self->num_cust_pay_pkgnum($pkgnum) unless wantarray;
6831   sort { $a->_date <=> $b->_date }
6832     qsearch( 'cust_pay', { 'custnum' => $self->custnum,
6833                            'pkgnum'  => $pkgnum,
6834                          }
6835     );
6836 }
6837
6838 =item cust_pay_void
6839
6840 Returns all voided payments (see L<FS::cust_pay_void>) for this customer.
6841
6842 =cut
6843
6844 sub cust_pay_void {
6845   my $self = shift;
6846   map { $_ } #return $self->num_cust_pay_void unless wantarray;
6847   sort { $a->_date <=> $b->_date }
6848     qsearch( 'cust_pay_void', { 'custnum' => $self->custnum } )
6849 }
6850
6851 =item cust_pay_batch
6852
6853 Returns all batched payments (see L<FS::cust_pay_void>) for this customer.
6854
6855 =cut
6856
6857 sub cust_pay_batch {
6858   my $self = shift;
6859   map { $_ } #return $self->num_cust_pay_batch unless wantarray;
6860   sort { $a->paybatchnum <=> $b->paybatchnum }
6861     qsearch( 'cust_pay_batch', { 'custnum' => $self->custnum } )
6862 }
6863
6864 =item cust_pay_pending
6865
6866 Returns all pending payments (see L<FS::cust_pay_pending>) for this customer
6867 (without status "done").
6868
6869 =cut
6870
6871 sub cust_pay_pending {
6872   my $self = shift;
6873   return $self->num_cust_pay_pending unless wantarray;
6874   sort { $a->_date <=> $b->_date }
6875     qsearch( 'cust_pay_pending', {
6876                                    'custnum' => $self->custnum,
6877                                    'status'  => { op=>'!=', value=>'done' },
6878                                  },
6879            );
6880 }
6881
6882 =item num_cust_pay_pending
6883
6884 Returns the number of pending payments (see L<FS::cust_pay_pending>) for this
6885 customer (without status "done").  Also called automatically when the
6886 cust_pay_pending method is used in a scalar context.
6887
6888 =cut
6889
6890 sub num_cust_pay_pending {
6891   my $self = shift;
6892   my $sql = " SELECT COUNT(*) FROM cust_pay_pending ".
6893             "   WHERE custnum = ? AND status != 'done' ";
6894   my $sth = dbh->prepare($sql) or die dbh->errstr;
6895   $sth->execute($self->custnum) or die $sth->errstr;
6896   $sth->fetchrow_arrayref->[0];
6897 }
6898
6899 =item cust_refund
6900
6901 Returns all the refunds (see L<FS::cust_refund>) for this customer.
6902
6903 =cut
6904
6905 sub cust_refund {
6906   my $self = shift;
6907   map { $_ } #return $self->num_cust_refund unless wantarray;
6908   sort { $a->_date <=> $b->_date }
6909     qsearch( 'cust_refund', { 'custnum' => $self->custnum } )
6910 }
6911
6912 =item display_custnum
6913
6914 Returns the displayed customer number for this customer: agent_custid if
6915 cust_main-default_agent_custid is set and it has a value, custnum otherwise.
6916
6917 =cut
6918
6919 sub display_custnum {
6920   my $self = shift;
6921   if ( $conf->exists('cust_main-default_agent_custid') && $self->agent_custid ){
6922     return $self->agent_custid;
6923   } else {
6924     return $self->custnum;
6925   }
6926 }
6927
6928 =item name
6929
6930 Returns a name string for this customer, either "Company (Last, First)" or
6931 "Last, First".
6932
6933 =cut
6934
6935 sub name {
6936   my $self = shift;
6937   my $name = $self->contact;
6938   $name = $self->company. " ($name)" if $self->company;
6939   $name;
6940 }
6941
6942 =item ship_name
6943
6944 Returns a name string for this (service/shipping) contact, either
6945 "Company (Last, First)" or "Last, First".
6946
6947 =cut
6948
6949 sub ship_name {
6950   my $self = shift;
6951   if ( $self->get('ship_last') ) { 
6952     my $name = $self->ship_contact;
6953     $name = $self->ship_company. " ($name)" if $self->ship_company;
6954     $name;
6955   } else {
6956     $self->name;
6957   }
6958 }
6959
6960 =item name_short
6961
6962 Returns a name string for this customer, either "Company" or "First Last".
6963
6964 =cut
6965
6966 sub name_short {
6967   my $self = shift;
6968   $self->company !~ /^\s*$/ ? $self->company : $self->contact_firstlast;
6969 }
6970
6971 =item ship_name_short
6972
6973 Returns a name string for this (service/shipping) contact, either "Company"
6974 or "First Last".
6975
6976 =cut
6977
6978 sub ship_name_short {
6979   my $self = shift;
6980   if ( $self->get('ship_last') ) { 
6981     $self->ship_company !~ /^\s*$/
6982       ? $self->ship_company
6983       : $self->ship_contact_firstlast;
6984   } else {
6985     $self->name_company_or_firstlast;
6986   }
6987 }
6988
6989 =item contact
6990
6991 Returns this customer's full (billing) contact name only, "Last, First"
6992
6993 =cut
6994
6995 sub contact {
6996   my $self = shift;
6997   $self->get('last'). ', '. $self->first;
6998 }
6999
7000 =item ship_contact
7001
7002 Returns this customer's full (shipping) contact name only, "Last, First"
7003
7004 =cut
7005
7006 sub ship_contact {
7007   my $self = shift;
7008   $self->get('ship_last')
7009     ? $self->get('ship_last'). ', '. $self->ship_first
7010     : $self->contact;
7011 }
7012
7013 =item contact_firstlast
7014
7015 Returns this customers full (billing) contact name only, "First Last".
7016
7017 =cut
7018
7019 sub contact_firstlast {
7020   my $self = shift;
7021   $self->first. ' '. $self->get('last');
7022 }
7023
7024 =item ship_contact_firstlast
7025
7026 Returns this customer's full (shipping) contact name only, "First Last".
7027
7028 =cut
7029
7030 sub ship_contact_firstlast {
7031   my $self = shift;
7032   $self->get('ship_last')
7033     ? $self->first. ' '. $self->get('ship_last')
7034     : $self->contact_firstlast;
7035 }
7036
7037 =item country_full
7038
7039 Returns this customer's full country name
7040
7041 =cut
7042
7043 sub country_full {
7044   my $self = shift;
7045   code2country($self->country);
7046 }
7047
7048 =item geocode DATA_VENDOR
7049
7050 Returns a value for the customer location as encoded by DATA_VENDOR.
7051 Currently this only makes sense for "CCH" as DATA_VENDOR.
7052
7053 =cut
7054
7055 sub geocode {
7056   my ($self, $data_vendor) = (shift, shift);  #always cch for now
7057
7058   my $geocode = $self->get('geocode');  #XXX only one data_vendor for geocode
7059   return $geocode if $geocode;
7060
7061   my $prefix = ( $conf->exists('tax-ship_address') && length($self->ship_last) )
7062                ? 'ship_'
7063                : '';
7064
7065   my($zip,$plus4) = split /-/, $self->get("${prefix}zip")
7066     if $self->country eq 'US';
7067
7068   $zip ||= '';
7069   $plus4 ||= '';
7070   #CCH specific location stuff
7071   my $extra_sql = "AND plus4lo <= '$plus4' AND plus4hi >= '$plus4'";
7072
7073   my @cust_tax_location =
7074     qsearch( {
7075                'table'     => 'cust_tax_location', 
7076                'hashref'   => { 'zip' => $zip, 'data_vendor' => $data_vendor },
7077                'extra_sql' => $extra_sql,
7078                'order_by'  => 'ORDER BY plus4hi',#overlapping with distinct ends
7079              }
7080            );
7081   $geocode = $cust_tax_location[0]->geocode
7082     if scalar(@cust_tax_location);
7083
7084   $geocode;
7085 }
7086
7087 =item cust_status
7088
7089 =item status
7090
7091 Returns a status string for this customer, currently:
7092
7093 =over 4
7094
7095 =item prospect - No packages have ever been ordered
7096
7097 =item active - One or more recurring packages is active
7098
7099 =item inactive - No active recurring packages, but otherwise unsuspended/uncancelled (the inactive status is new - previously inactive customers were mis-identified as cancelled)
7100
7101 =item suspended - All non-cancelled recurring packages are suspended
7102
7103 =item cancelled - All recurring packages are cancelled
7104
7105 =back
7106
7107 =cut
7108
7109 sub status { shift->cust_status(@_); }
7110
7111 sub cust_status {
7112   my $self = shift;
7113   for my $status (qw( prospect active inactive suspended cancelled )) {
7114     my $method = $status.'_sql';
7115     my $numnum = ( my $sql = $self->$method() ) =~ s/cust_main\.custnum/?/g;
7116     my $sth = dbh->prepare("SELECT $sql") or die dbh->errstr;
7117     $sth->execute( ($self->custnum) x $numnum )
7118       or die "Error executing 'SELECT $sql': ". $sth->errstr;
7119     return $status if $sth->fetchrow_arrayref->[0];
7120   }
7121 }
7122
7123 =item ucfirst_cust_status
7124
7125 =item ucfirst_status
7126
7127 Returns the status with the first character capitalized.
7128
7129 =cut
7130
7131 sub ucfirst_status { shift->ucfirst_cust_status(@_); }
7132
7133 sub ucfirst_cust_status {
7134   my $self = shift;
7135   ucfirst($self->cust_status);
7136 }
7137
7138 =item statuscolor
7139
7140 Returns a hex triplet color string for this customer's status.
7141
7142 =cut
7143
7144 use vars qw(%statuscolor);
7145 tie %statuscolor, 'Tie::IxHash',
7146   'prospect'  => '7e0079', #'000000', #black?  naw, purple
7147   'active'    => '00CC00', #green
7148   'inactive'  => '0000CC', #blue
7149   'suspended' => 'FF9900', #yellow
7150   'cancelled' => 'FF0000', #red
7151 ;
7152
7153 sub statuscolor { shift->cust_statuscolor(@_); }
7154
7155 sub cust_statuscolor {
7156   my $self = shift;
7157   $statuscolor{$self->cust_status};
7158 }
7159
7160 =item tickets
7161
7162 Returns an array of hashes representing the customer's RT tickets.
7163
7164 =cut
7165
7166 sub tickets {
7167   my $self = shift;
7168
7169   my $num = $conf->config('cust_main-max_tickets') || 10;
7170   my @tickets = ();
7171
7172   if ( $conf->config('ticket_system') ) {
7173     unless ( $conf->config('ticket_system-custom_priority_field') ) {
7174
7175       @tickets = @{ FS::TicketSystem->customer_tickets($self->custnum, $num) };
7176
7177     } else {
7178
7179       foreach my $priority (
7180         $conf->config('ticket_system-custom_priority_field-values'), ''
7181       ) {
7182         last if scalar(@tickets) >= $num;
7183         push @tickets, 
7184           @{ FS::TicketSystem->customer_tickets( $self->custnum,
7185                                                  $num - scalar(@tickets),
7186                                                  $priority,
7187                                                )
7188            };
7189       }
7190     }
7191   }
7192   (@tickets);
7193 }
7194
7195 # Return services representing svc_accts in customer support packages
7196 sub support_services {
7197   my $self = shift;
7198   my %packages = map { $_ => 1 } $conf->config('support_packages');
7199
7200   grep { $_->pkg_svc && $_->pkg_svc->primary_svc eq 'Y' }
7201     grep { $_->part_svc->svcdb eq 'svc_acct' }
7202     map { $_->cust_svc }
7203     grep { exists $packages{ $_->pkgpart } }
7204     $self->ncancelled_pkgs;
7205
7206 }
7207
7208 # Return a list of latitude/longitude for one of the services (if any)
7209 sub service_coordinates {
7210   my $self = shift;
7211
7212   my @svc_X = 
7213     grep { $_->latitude && $_->longitude }
7214     map { $_->svc_x }
7215     map { $_->cust_svc }
7216     $self->ncancelled_pkgs;
7217
7218   scalar(@svc_X) ? ( $svc_X[0]->latitude, $svc_X[0]->longitude ) : ()
7219 }
7220
7221 =back
7222
7223 =head1 CLASS METHODS
7224
7225 =over 4
7226
7227 =item statuses
7228
7229 Class method that returns the list of possible status strings for customers
7230 (see L<the status method|/status>).  For example:
7231
7232   @statuses = FS::cust_main->statuses();
7233
7234 =cut
7235
7236 sub statuses {
7237   #my $self = shift; #could be class...
7238   keys %statuscolor;
7239 }
7240
7241 =item prospect_sql
7242
7243 Returns an SQL expression identifying prospective cust_main records (customers
7244 with no packages ever ordered)
7245
7246 =cut
7247
7248 use vars qw($select_count_pkgs);
7249 $select_count_pkgs =
7250   "SELECT COUNT(*) FROM cust_pkg
7251     WHERE cust_pkg.custnum = cust_main.custnum";
7252
7253 sub select_count_pkgs_sql {
7254   $select_count_pkgs;
7255 }
7256
7257 sub prospect_sql { "
7258   0 = ( $select_count_pkgs )
7259 "; }
7260
7261 =item active_sql
7262
7263 Returns an SQL expression identifying active cust_main records (customers with
7264 active recurring packages).
7265
7266 =cut
7267
7268 sub active_sql { "
7269   0 < ( $select_count_pkgs AND ". FS::cust_pkg->active_sql. "
7270       )
7271 "; }
7272
7273 =item inactive_sql
7274
7275 Returns an SQL expression identifying inactive cust_main records (customers with
7276 no active recurring packages, but otherwise unsuspended/uncancelled).
7277
7278 =cut
7279
7280 sub inactive_sql { "
7281   0 = ( $select_count_pkgs AND ". FS::cust_pkg->active_sql. " )
7282   AND
7283   0 < ( $select_count_pkgs AND ". FS::cust_pkg->inactive_sql. " )
7284 "; }
7285
7286 =item susp_sql
7287 =item suspended_sql
7288
7289 Returns an SQL expression identifying suspended cust_main records.
7290
7291 =cut
7292
7293
7294 sub suspended_sql { susp_sql(@_); }
7295 sub susp_sql { "
7296     0 < ( $select_count_pkgs AND ". FS::cust_pkg->suspended_sql. " )
7297     AND
7298     0 = ( $select_count_pkgs AND ". FS::cust_pkg->active_sql. " )
7299 "; }
7300
7301 =item cancel_sql
7302 =item cancelled_sql
7303
7304 Returns an SQL expression identifying cancelled cust_main records.
7305
7306 =cut
7307
7308 sub cancelled_sql { cancel_sql(@_); }
7309 sub cancel_sql {
7310
7311   my $recurring_sql = FS::cust_pkg->recurring_sql;
7312   my $cancelled_sql = FS::cust_pkg->cancelled_sql;
7313
7314   "
7315         0 < ( $select_count_pkgs )
7316     AND 0 < ( $select_count_pkgs AND $recurring_sql AND $cancelled_sql   )
7317     AND 0 = ( $select_count_pkgs AND $recurring_sql
7318                   AND ( cust_pkg.cancel IS NULL OR cust_pkg.cancel = 0 )
7319             )
7320     AND 0 = (  $select_count_pkgs AND ". FS::cust_pkg->inactive_sql. " )
7321   ";
7322
7323 }
7324
7325 =item uncancel_sql
7326 =item uncancelled_sql
7327
7328 Returns an SQL expression identifying un-cancelled cust_main records.
7329
7330 =cut
7331
7332 sub uncancelled_sql { uncancel_sql(@_); }
7333 sub uncancel_sql { "
7334   ( 0 < ( $select_count_pkgs
7335                    AND ( cust_pkg.cancel IS NULL
7336                          OR cust_pkg.cancel = 0
7337                        )
7338         )
7339     OR 0 = ( $select_count_pkgs )
7340   )
7341 "; }
7342
7343 =item balance_sql
7344
7345 Returns an SQL fragment to retreive the balance.
7346
7347 =cut
7348
7349 sub balance_sql { "
7350     ( SELECT COALESCE( SUM(charged), 0 ) FROM cust_bill
7351         WHERE cust_bill.custnum   = cust_main.custnum     )
7352   - ( SELECT COALESCE( SUM(paid),    0 ) FROM cust_pay
7353         WHERE cust_pay.custnum    = cust_main.custnum     )
7354   - ( SELECT COALESCE( SUM(amount),  0 ) FROM cust_credit
7355         WHERE cust_credit.custnum = cust_main.custnum     )
7356   + ( SELECT COALESCE( SUM(refund),  0 ) FROM cust_refund
7357         WHERE cust_refund.custnum = cust_main.custnum     )
7358 "; }
7359
7360 =item balance_date_sql START_TIME [ END_TIME [ OPTION => VALUE ... ] ]
7361
7362 Returns an SQL fragment to retreive the balance for this customer, only
7363 considering invoices with date earlier than START_TIME, and optionally not
7364 later than END_TIME (total_owed_date minus total_unapplied_credits minus
7365 total_unapplied_payments).
7366
7367 Times are specified as SQL fragments or numeric
7368 UNIX timestamps; see L<perlfunc/"time">).  Also see L<Time::Local> and
7369 L<Date::Parse> for conversion functions.  The empty string can be passed
7370 to disable that time constraint completely.
7371
7372 Available options are:
7373
7374 =over 4
7375
7376 =item unapplied_date
7377
7378 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)
7379
7380 =item total
7381
7382 (unused.  obsolete?)
7383 set to true to remove all customer comparison clauses, for totals
7384
7385 =item where
7386
7387 (unused.  obsolete?)
7388 WHERE clause hashref (elements "AND"ed together) (typically used with the total option)
7389
7390 =item join
7391
7392 (unused.  obsolete?)
7393 JOIN clause (typically used with the total option)
7394
7395 =item cutoff
7396
7397 An absolute cutoff time.  Payments, credits, and refunds I<applied> after this 
7398 time will be ignored.  Note that START_TIME and END_TIME only limit the date 
7399 range for invoices and I<unapplied> payments, credits, and refunds.
7400
7401 =back
7402
7403 =cut
7404
7405 sub balance_date_sql {
7406   my( $class, $start, $end, %opt ) = @_;
7407
7408   my $cutoff = $opt{'cutoff'};
7409
7410   my $owed         = FS::cust_bill->owed_sql($cutoff);
7411   my $unapp_refund = FS::cust_refund->unapplied_sql($cutoff);
7412   my $unapp_credit = FS::cust_credit->unapplied_sql($cutoff);
7413   my $unapp_pay    = FS::cust_pay->unapplied_sql($cutoff);
7414
7415   my $j = $opt{'join'} || '';
7416
7417   my $owed_wh   = $class->_money_table_where( 'cust_bill',   $start,$end,%opt );
7418   my $refund_wh = $class->_money_table_where( 'cust_refund', $start,$end,%opt );
7419   my $credit_wh = $class->_money_table_where( 'cust_credit', $start,$end,%opt );
7420   my $pay_wh    = $class->_money_table_where( 'cust_pay',    $start,$end,%opt );
7421
7422   "   ( SELECT COALESCE(SUM($owed),         0) FROM cust_bill   $j $owed_wh   )
7423     + ( SELECT COALESCE(SUM($unapp_refund), 0) FROM cust_refund $j $refund_wh )
7424     - ( SELECT COALESCE(SUM($unapp_credit), 0) FROM cust_credit $j $credit_wh )
7425     - ( SELECT COALESCE(SUM($unapp_pay),    0) FROM cust_pay    $j $pay_wh    )
7426   ";
7427
7428 }
7429
7430 =item unapplied_payments_date_sql START_TIME [ END_TIME ]
7431
7432 Returns an SQL fragment to retreive the total unapplied payments for this
7433 customer, only considering invoices with date earlier than START_TIME, and
7434 optionally not later than END_TIME.
7435
7436 Times are specified as SQL fragments or numeric
7437 UNIX timestamps; see L<perlfunc/"time">).  Also see L<Time::Local> and
7438 L<Date::Parse> for conversion functions.  The empty string can be passed
7439 to disable that time constraint completely.
7440
7441 Available options are:
7442
7443 =cut
7444
7445 sub unapplied_payments_date_sql {
7446   my( $class, $start, $end, ) = @_;
7447
7448   my $unapp_pay    = FS::cust_pay->unapplied_sql;
7449
7450   my $pay_where = $class->_money_table_where( 'cust_pay', $start, $end,
7451                                                           'unapplied_date'=>1 );
7452
7453   " ( SELECT COALESCE(SUM($unapp_pay), 0) FROM cust_pay $pay_where ) ";
7454 }
7455
7456 =item _money_table_where TABLE START_TIME [ END_TIME [ OPTION => VALUE ... ] ]
7457
7458 Helper method for balance_date_sql; name (and usage) subject to change
7459 (suggestions welcome).
7460
7461 Returns a WHERE clause for the specified monetary TABLE (cust_bill,
7462 cust_refund, cust_credit or cust_pay).
7463
7464 If TABLE is "cust_bill" or the unapplied_date option is true, only
7465 considers records with date earlier than START_TIME, and optionally not
7466 later than END_TIME .
7467
7468 =cut
7469
7470 sub _money_table_where {
7471   my( $class, $table, $start, $end, %opt ) = @_;
7472
7473   my @where = ();
7474   push @where, "cust_main.custnum = $table.custnum" unless $opt{'total'};
7475   if ( $table eq 'cust_bill' || $opt{'unapplied_date'} ) {
7476     push @where, "$table._date <= $start" if defined($start) && length($start);
7477     push @where, "$table._date >  $end"   if defined($end)   && length($end);
7478   }
7479   push @where, @{$opt{'where'}} if $opt{'where'};
7480   my $where = scalar(@where) ? 'WHERE '. join(' AND ', @where ) : '';
7481
7482   $where;
7483
7484 }
7485
7486 =item search HASHREF
7487
7488 (Class method)
7489
7490 Returns a qsearch hash expression to search for parameters specified in
7491 HASHREF.  Valid parameters are
7492
7493 =over 4
7494
7495 =item agentnum
7496
7497 =item status
7498
7499 =item cancelled_pkgs
7500
7501 bool
7502
7503 =item signupdate
7504
7505 listref of start date, end date
7506
7507 =item payby
7508
7509 listref
7510
7511 =item paydate_year
7512
7513 =item paydate_month
7514
7515 =item current_balance
7516
7517 listref (list returned by FS::UI::Web::parse_lt_gt($cgi, 'current_balance'))
7518
7519 =item cust_fields
7520
7521 =item flattened_pkgs
7522
7523 bool
7524
7525 =back
7526
7527 =cut
7528
7529 sub search {
7530   my ($class, $params) = @_;
7531
7532   my $dbh = dbh;
7533
7534   my @where = ();
7535   my $orderby;
7536
7537   ##
7538   # parse agent
7539   ##
7540
7541   if ( $params->{'agentnum'} =~ /^(\d+)$/ and $1 ) {
7542     push @where,
7543       "cust_main.agentnum = $1";
7544   }
7545
7546   ##
7547   # do the same for user
7548   ##
7549
7550   if ( $params->{'usernum'} =~ /^(\d+)$/ and $1 ) {
7551     push @where,
7552       "cust_main.usernum = $1";
7553   }
7554
7555   ##
7556   # parse status
7557   ##
7558
7559   #prospect active inactive suspended cancelled
7560   if ( grep { $params->{'status'} eq $_ } FS::cust_main->statuses() ) {
7561     my $method = $params->{'status'}. '_sql';
7562     #push @where, $class->$method();
7563     push @where, FS::cust_main->$method();
7564   }
7565   
7566   ##
7567   # parse cancelled package checkbox
7568   ##
7569
7570   my $pkgwhere = "";
7571
7572   $pkgwhere .= "AND (cancel = 0 or cancel is null)"
7573     unless $params->{'cancelled_pkgs'};
7574
7575   ##
7576   # parse without census tract checkbox
7577   ##
7578
7579   push @where, "(censustract = '' or censustract is null)"
7580     if $params->{'no_censustract'};
7581
7582   ##
7583   # dates
7584   ##
7585
7586   foreach my $field (qw( signupdate )) {
7587
7588     next unless exists($params->{$field});
7589
7590     my($beginning, $ending, $hour) = @{$params->{$field}};
7591
7592     push @where,
7593       "cust_main.$field IS NOT NULL",
7594       "cust_main.$field >= $beginning",
7595       "cust_main.$field <= $ending";
7596
7597     # XXX: do this for mysql and/or pull it out of here
7598     if(defined $hour) {
7599       if ($dbh->{Driver}->{Name} eq 'Pg') {
7600         push @where, "extract(hour from to_timestamp(cust_main.$field)) = $hour";
7601       }
7602       else {
7603         warn "search by time of day not supported on ".$dbh->{Driver}->{Name}." databases";
7604       }
7605     }
7606
7607     $orderby ||= "ORDER BY cust_main.$field";
7608
7609   }
7610
7611   ###
7612   # classnum
7613   ###
7614
7615   if ( $params->{'classnum'} ) {
7616
7617     my @classnum = ref( $params->{'classnum'} )
7618                      ? @{ $params->{'classnum'} }
7619                      :  ( $params->{'classnum'} );
7620
7621     @classnum = grep /^(\d*)$/, @classnum;
7622
7623     if ( @classnum ) {
7624       push @where, '( '. join(' OR ', map {
7625                                             $_ ? "cust_main.classnum = $_"
7626                                                : "cust_main.classnum IS NULL"
7627                                           }
7628                                           @classnum
7629                              ).
7630                    ' )';
7631     }
7632
7633   }
7634
7635   ###
7636   # payby
7637   ###
7638
7639   if ( $params->{'payby'} ) {
7640
7641     my @payby = ref( $params->{'payby'} )
7642                   ? @{ $params->{'payby'} }
7643                   :  ( $params->{'payby'} );
7644
7645     @payby = grep /^([A-Z]{4})$/, @{ $params->{'payby'} };
7646
7647     push @where, '( '. join(' OR ', map "cust_main.payby = '$_'", @payby). ' )'
7648       if @payby;
7649
7650   }
7651
7652   ###
7653   # paydate_year / paydate_month
7654   ###
7655
7656   if ( $params->{'paydate_year'} =~ /^(\d{4})$/ ) {
7657     my $year = $1;
7658     $params->{'paydate_month'} =~ /^(\d\d?)$/
7659       or die "paydate_year without paydate_month?";
7660     my $month = $1;
7661
7662     push @where,
7663       'paydate IS NOT NULL',
7664       "paydate != ''",
7665       "CAST(paydate AS timestamp) < CAST('$year-$month-01' AS timestamp )"
7666 ;
7667   }
7668
7669   ###
7670   # invoice terms
7671   ###
7672
7673   if ( $params->{'invoice_terms'} =~ /^([\w ]+)$/ ) {
7674     my $terms = $1;
7675     if ( $1 eq 'NULL' ) {
7676       push @where,
7677         "( cust_main.invoice_terms IS NULL OR cust_main.invoice_terms = '' )";
7678     } else {
7679       push @where,
7680         "cust_main.invoice_terms IS NOT NULL",
7681         "cust_main.invoice_terms = '$1'";
7682     }
7683   }
7684
7685   ##
7686   # amounts
7687   ##
7688
7689   if ( $params->{'current_balance'} ) {
7690
7691     #my $balance_sql = $class->balance_sql();
7692     my $balance_sql = FS::cust_main->balance_sql();
7693
7694     my @current_balance =
7695       ref( $params->{'current_balance'} )
7696       ? @{ $params->{'current_balance'} }
7697       :  ( $params->{'current_balance'} );
7698
7699     push @where, map { s/current_balance/$balance_sql/; $_ }
7700                      @current_balance;
7701
7702   }
7703
7704   ##
7705   # custbatch
7706   ##
7707
7708   if ( $params->{'custbatch'} =~ /^([\w\/\-\:\.]+)$/ and $1 ) {
7709     push @where,
7710       "cust_main.custbatch = '$1'";
7711   }
7712
7713   ##
7714   # setup queries, subs, etc. for the search
7715   ##
7716
7717   $orderby ||= 'ORDER BY custnum';
7718
7719   # here is the agent virtualization
7720   push @where, $FS::CurrentUser::CurrentUser->agentnums_sql;
7721
7722   my $extra_sql = scalar(@where) ? ' WHERE '. join(' AND ', @where) : '';
7723
7724   my $addl_from = 'LEFT JOIN cust_pkg USING ( custnum  ) ';
7725
7726   my $count_query = "SELECT COUNT(*) FROM cust_main $extra_sql";
7727
7728   my $select = join(', ', 
7729                  'cust_main.custnum',
7730                  FS::UI::Web::cust_sql_fields($params->{'cust_fields'}),
7731                );
7732
7733   my(@extra_headers) = ();
7734   my(@extra_fields)  = ();
7735
7736   if ($params->{'flattened_pkgs'}) {
7737
7738     if ($dbh->{Driver}->{Name} eq 'Pg') {
7739
7740       $select .= ", array_to_string(array(select pkg from cust_pkg left join part_pkg using ( pkgpart ) where cust_main.custnum = cust_pkg.custnum $pkgwhere),'|') as magic";
7741
7742     }elsif ($dbh->{Driver}->{Name} =~ /^mysql/i) {
7743       $select .= ", GROUP_CONCAT(pkg SEPARATOR '|') as magic";
7744       $addl_from .= " LEFT JOIN part_pkg using ( pkgpart )";
7745     }else{
7746       warn "warning: unknown database type ". $dbh->{Driver}->{Name}. 
7747            "omitting packing information from report.";
7748     }
7749
7750     my $header_query = "SELECT COUNT(cust_pkg.custnum = cust_main.custnum) AS count FROM cust_main $addl_from $extra_sql $pkgwhere group by cust_main.custnum order by count desc limit 1";
7751
7752     my $sth = dbh->prepare($header_query) or die dbh->errstr;
7753     $sth->execute() or die $sth->errstr;
7754     my $headerrow = $sth->fetchrow_arrayref;
7755     my $headercount = $headerrow ? $headerrow->[0] : 0;
7756     while($headercount) {
7757       unshift @extra_headers, "Package ". $headercount;
7758       unshift @extra_fields, eval q!sub {my $c = shift;
7759                                          my @a = split '\|', $c->magic;
7760                                          my $p = $a[!.--$headercount. q!];
7761                                          $p;
7762                                         };!;
7763     }
7764
7765   }
7766
7767   my $sql_query = {
7768     'table'         => 'cust_main',
7769     'select'        => $select,
7770     'hashref'       => {},
7771     'extra_sql'     => $extra_sql,
7772     'order_by'      => $orderby,
7773     'count_query'   => $count_query,
7774     'extra_headers' => \@extra_headers,
7775     'extra_fields'  => \@extra_fields,
7776   };
7777
7778 }
7779
7780 =item email_search_result HASHREF
7781
7782 (Class method)
7783
7784 Emails a notice to the specified customers.
7785
7786 Valid parameters are those of the L<search> method, plus the following:
7787
7788 =over 4
7789
7790 =item from
7791
7792 From: address
7793
7794 =item subject
7795
7796 Email Subject:
7797
7798 =item html_body
7799
7800 HTML body
7801
7802 =item text_body
7803
7804 Text body
7805
7806 =item job
7807
7808 Optional job queue job for status updates.
7809
7810 =back
7811
7812 Returns an error message, or false for success.
7813
7814 If an error occurs during any email, stops the enture send and returns that
7815 error.  Presumably if you're getting SMTP errors aborting is better than 
7816 retrying everything.
7817
7818 =cut
7819
7820 sub email_search_result {
7821   my($class, $params) = @_;
7822
7823   my $from = delete $params->{from};
7824   my $subject = delete $params->{subject};
7825   my $html_body = delete $params->{html_body};
7826   my $text_body = delete $params->{text_body};
7827
7828   my $job = delete $params->{'job'};
7829
7830   $params->{'payby'} = [ split(/\0/, $params->{'payby'}) ]
7831     unless ref($params->{'payby'});
7832
7833   my $sql_query = $class->search($params);
7834
7835   my $count_query   = delete($sql_query->{'count_query'});
7836   my $count_sth = dbh->prepare($count_query)
7837     or die "Error preparing $count_query: ". dbh->errstr;
7838   $count_sth->execute
7839     or die "Error executing $count_query: ". $count_sth->errstr;
7840   my $count_arrayref = $count_sth->fetchrow_arrayref;
7841   my $num_cust = $count_arrayref->[0];
7842
7843   #my @extra_headers = @{ delete($sql_query->{'extra_headers'}) };
7844   #my @extra_fields  = @{ delete($sql_query->{'extra_fields'})  };
7845
7846
7847   my( $num, $last, $min_sec ) = (0, time, 5); #progresbar foo
7848
7849   #eventually order+limit magic to reduce memory use?
7850   foreach my $cust_main ( qsearch($sql_query) ) {
7851
7852     my $to = $cust_main->invoicing_list_emailonly_scalar;
7853     next unless $to;
7854
7855     my $error = send_email(
7856       generate_email(
7857         'from'      => $from,
7858         'to'        => $to,
7859         'subject'   => $subject,
7860         'html_body' => $html_body,
7861         'text_body' => $text_body,
7862       )
7863     );
7864     return $error if $error;
7865
7866     if ( $job ) { #progressbar foo
7867       $num++;
7868       if ( time - $min_sec > $last ) {
7869         my $error = $job->update_statustext(
7870           int( 100 * $num / $num_cust )
7871         );
7872         die $error if $error;
7873         $last = time;
7874       }
7875     }
7876
7877   }
7878
7879   return '';
7880 }
7881
7882 use Storable qw(thaw);
7883 use Data::Dumper;
7884 use MIME::Base64;
7885 sub process_email_search_result {
7886   my $job = shift;
7887   #warn "$me process_re_X $method for job $job\n" if $DEBUG;
7888
7889   my $param = thaw(decode_base64(shift));
7890   warn Dumper($param) if $DEBUG;
7891
7892   $param->{'job'} = $job;
7893
7894   $param->{'payby'} = [ split(/\0/, $param->{'payby'}) ]
7895     unless ref($param->{'payby'});
7896
7897   my $error = FS::cust_main->email_search_result( $param );
7898   die $error if $error;
7899
7900 }
7901
7902 =item fuzzy_search FUZZY_HASHREF [ HASHREF, SELECT, EXTRA_SQL, CACHE_OBJ ]
7903
7904 Performs a fuzzy (approximate) search and returns the matching FS::cust_main
7905 records.  Currently, I<first>, I<last>, I<company> and/or I<address1> may be
7906 specified (the appropriate ship_ field is also searched).
7907
7908 Additional options are the same as FS::Record::qsearch
7909
7910 =cut
7911
7912 sub fuzzy_search {
7913   my( $self, $fuzzy, $hash, @opt) = @_;
7914   #$self
7915   $hash ||= {};
7916   my @cust_main = ();
7917
7918   check_and_rebuild_fuzzyfiles();
7919   foreach my $field ( keys %$fuzzy ) {
7920
7921     my $all = $self->all_X($field);
7922     next unless scalar(@$all);
7923
7924     my %match = ();
7925     $match{$_}=1 foreach ( amatch( $fuzzy->{$field}, ['i'], @$all ) );
7926
7927     my @fcust = ();
7928     foreach ( keys %match ) {
7929       push @fcust, qsearch('cust_main', { %$hash, $field=>$_}, @opt);
7930       push @fcust, qsearch('cust_main', { %$hash, "ship_$field"=>$_}, @opt);
7931     }
7932     my %fsaw = ();
7933     push @cust_main, grep { ! $fsaw{$_->custnum}++ } @fcust;
7934   }
7935
7936   # we want the components of $fuzzy ANDed, not ORed, but still don't want dupes
7937   my %saw = ();
7938   @cust_main = grep { ++$saw{$_->custnum} == scalar(keys %$fuzzy) } @cust_main;
7939
7940   @cust_main;
7941
7942 }
7943
7944 =item masked FIELD
7945
7946 Returns a masked version of the named field
7947
7948 =cut
7949
7950 sub masked {
7951 my ($self,$field) = @_;
7952
7953 # Show last four
7954
7955 'x'x(length($self->getfield($field))-4).
7956   substr($self->getfield($field), (length($self->getfield($field))-4));
7957
7958 }
7959
7960 =back
7961
7962 =head1 SUBROUTINES
7963
7964 =over 4
7965
7966 =item smart_search OPTION => VALUE ...
7967
7968 Accepts the following options: I<search>, the string to search for.  The string
7969 will be searched for as a customer number, phone number, name or company name,
7970 as an exact, or, in some cases, a substring or fuzzy match (see the source code
7971 for the exact heuristics used); I<no_fuzzy_on_exact>, causes smart_search to
7972 skip fuzzy matching when an exact match is found.
7973
7974 Any additional options are treated as an additional qualifier on the search
7975 (i.e. I<agentnum>).
7976
7977 Returns a (possibly empty) array of FS::cust_main objects.
7978
7979 =cut
7980
7981 sub smart_search {
7982   my %options = @_;
7983
7984   #here is the agent virtualization
7985   my $agentnums_sql = $FS::CurrentUser::CurrentUser->agentnums_sql;
7986
7987   my @cust_main = ();
7988
7989   my $skip_fuzzy = delete $options{'no_fuzzy_on_exact'};
7990   my $search = delete $options{'search'};
7991   ( my $alphanum_search = $search ) =~ s/\W//g;
7992   
7993   if ( $alphanum_search =~ /^1?(\d{3})(\d{3})(\d{4})(\d*)$/ ) { #phone# search
7994
7995     #false laziness w/Record::ut_phone
7996     my $phonen = "$1-$2-$3";
7997     $phonen .= " x$4" if $4;
7998
7999     push @cust_main, qsearch( {
8000       'table'   => 'cust_main',
8001       'hashref' => { %options },
8002       'extra_sql' => ( scalar(keys %options) ? ' AND ' : ' WHERE ' ).
8003                      ' ( '.
8004                          join(' OR ', map "$_ = '$phonen'",
8005                                           qw( daytime night fax
8006                                               ship_daytime ship_night ship_fax )
8007                              ).
8008                      ' ) '.
8009                      " AND $agentnums_sql", #agent virtualization
8010     } );
8011
8012     unless ( @cust_main || $phonen =~ /x\d+$/ ) { #no exact match
8013       #try looking for matches with extensions unless one was specified
8014
8015       push @cust_main, qsearch( {
8016         'table'   => 'cust_main',
8017         'hashref' => { %options },
8018         'extra_sql' => ( scalar(keys %options) ? ' AND ' : ' WHERE ' ).
8019                        ' ( '.
8020                            join(' OR ', map "$_ LIKE '$phonen\%'",
8021                                             qw( daytime night
8022                                                 ship_daytime ship_night )
8023                                ).
8024                        ' ) '.
8025                        " AND $agentnums_sql", #agent virtualization
8026       } );
8027
8028     }
8029
8030   # custnum search (also try agent_custid), with some tweaking options if your
8031   # legacy cust "numbers" have letters
8032   } 
8033
8034   if ( $search =~ /^\s*(\d+)\s*$/
8035          || ( $conf->config('cust_main-agent_custid-format') eq 'ww?d+'
8036               && $search =~ /^\s*(\w\w?\d+)\s*$/
8037             )
8038          || ( $conf->exists('address1-search' )
8039               && $search =~ /^\s*(\d+\-?\w*)\s*$/ #i.e. 1234A or 9432-D
8040             )
8041      )
8042   {
8043
8044     my $num = $1;
8045
8046     if ( $num =~ /^(\d+)$/ && $num <= 2147483647 ) { #need a bigint custnum? wow
8047       push @cust_main, qsearch( {
8048         'table'     => 'cust_main',
8049         'hashref'   => { 'custnum' => $num, %options },
8050         'extra_sql' => " AND $agentnums_sql", #agent virtualization
8051       } );
8052     }
8053
8054     push @cust_main, qsearch( {
8055       'table'     => 'cust_main',
8056       'hashref'   => { 'agent_custid' => $num, %options },
8057       'extra_sql' => " AND $agentnums_sql", #agent virtualization
8058     } );
8059
8060     if ( $conf->exists('address1-search') ) {
8061       my $len = length($num);
8062       $num = lc($num);
8063       foreach my $prefix ( '', 'ship_' ) {
8064         push @cust_main, qsearch( {
8065           'table'     => 'cust_main',
8066           'hashref'   => { %options, },
8067           'extra_sql' => 
8068             ( keys(%options) ? ' AND ' : ' WHERE ' ).
8069             " LOWER(SUBSTRING(${prefix}address1 FROM 1 FOR $len)) = '$num' ".
8070             " AND $agentnums_sql",
8071         } );
8072       }
8073     }
8074
8075   } elsif ( $search =~ /^\s*(\S.*\S)\s+\((.+), ([^,]+)\)\s*$/ ) {
8076
8077     my($company, $last, $first) = ( $1, $2, $3 );
8078
8079     # "Company (Last, First)"
8080     #this is probably something a browser remembered,
8081     #so just do an exact search (but case-insensitive, so USPS standardization
8082     #doesn't throw a wrench in the works)
8083
8084     foreach my $prefix ( '', 'ship_' ) {
8085       push @cust_main, qsearch( {
8086         'table'     => 'cust_main',
8087         'hashref'   => { %options },
8088         'extra_sql' => 
8089           ( keys(%options) ? ' AND ' : ' WHERE ' ).
8090           join(' AND ',
8091             " LOWER(${prefix}first)   = ". dbh->quote(lc($first)),
8092             " LOWER(${prefix}last)    = ". dbh->quote(lc($last)),
8093             " LOWER(${prefix}company) = ". dbh->quote(lc($company)),
8094             $agentnums_sql,
8095           ),
8096       } );
8097     }
8098
8099   } elsif ( $search =~ /^\s*(\S.*\S)\s*$/ ) { # value search
8100                                               # try (ship_){last,company}
8101
8102     my $value = lc($1);
8103
8104     # # remove "(Last, First)" in "Company (Last, First)", otherwise the
8105     # # full strings the browser remembers won't work
8106     # $value =~ s/\([\w \,\.\-\']*\)$//; #false laziness w/Record::ut_name
8107
8108     use Lingua::EN::NameParse;
8109     my $NameParse = new Lingua::EN::NameParse(
8110              auto_clean     => 1,
8111              allow_reversed => 1,
8112     );
8113
8114     my($last, $first) = ( '', '' );
8115     #maybe disable this too and just rely on NameParse?
8116     if ( $value =~ /^(.+),\s*([^,]+)$/ ) { # Last, First
8117     
8118       ($last, $first) = ( $1, $2 );
8119     
8120     #} elsif  ( $value =~ /^(.+)\s+(.+)$/ ) {
8121     } elsif ( ! $NameParse->parse($value) ) {
8122
8123       my %name = $NameParse->components;
8124       $first = $name{'given_name_1'};
8125       $last  = $name{'surname_1'};
8126
8127     }
8128
8129     if ( $first && $last ) {
8130
8131       my($q_last, $q_first) = ( dbh->quote($last), dbh->quote($first) );
8132
8133       #exact
8134       my $sql = scalar(keys %options) ? ' AND ' : ' WHERE ';
8135       $sql .= "
8136         (     ( LOWER(last) = $q_last AND LOWER(first) = $q_first )
8137            OR ( LOWER(ship_last) = $q_last AND LOWER(ship_first) = $q_first )
8138         )";
8139
8140       push @cust_main, qsearch( {
8141         'table'     => 'cust_main',
8142         'hashref'   => \%options,
8143         'extra_sql' => "$sql AND $agentnums_sql", #agent virtualization
8144       } );
8145
8146       # or it just be something that was typed in... (try that in a sec)
8147
8148     }
8149
8150     my $q_value = dbh->quote($value);
8151
8152     #exact
8153     my $sql = scalar(keys %options) ? ' AND ' : ' WHERE ';
8154     $sql .= " (    LOWER(last)          = $q_value
8155                 OR LOWER(company)       = $q_value
8156                 OR LOWER(ship_last)     = $q_value
8157                 OR LOWER(ship_company)  = $q_value
8158             ";
8159     $sql .= "   OR LOWER(address1)      = $q_value
8160                 OR LOWER(ship_address1) = $q_value
8161             "
8162       if $conf->exists('address1-search');
8163     $sql .= " )";
8164
8165     push @cust_main, qsearch( {
8166       'table'     => 'cust_main',
8167       'hashref'   => \%options,
8168       'extra_sql' => "$sql AND $agentnums_sql", #agent virtualization
8169     } );
8170
8171     #no exact match, trying substring/fuzzy
8172     #always do substring & fuzzy (unless they're explicity config'ed off)
8173     #getting complaints searches are not returning enough
8174     unless ( @cust_main  && $skip_fuzzy || $conf->exists('disable-fuzzy') ) {
8175
8176       #still some false laziness w/search (was search/cust_main.cgi)
8177
8178       #substring
8179
8180       my @hashrefs = (
8181         { 'company'      => { op=>'ILIKE', value=>"%$value%" }, },
8182         { 'ship_company' => { op=>'ILIKE', value=>"%$value%" }, },
8183       );
8184
8185       if ( $first && $last ) {
8186
8187         push @hashrefs,
8188           { 'first'        => { op=>'ILIKE', value=>"%$first%" },
8189             'last'         => { op=>'ILIKE', value=>"%$last%" },
8190           },
8191           { 'ship_first'   => { op=>'ILIKE', value=>"%$first%" },
8192             'ship_last'    => { op=>'ILIKE', value=>"%$last%" },
8193           },
8194         ;
8195
8196       } else {
8197
8198         push @hashrefs,
8199           { 'last'         => { op=>'ILIKE', value=>"%$value%" }, },
8200           { 'ship_last'    => { op=>'ILIKE', value=>"%$value%" }, },
8201         ;
8202       }
8203
8204       if ( $conf->exists('address1-search') ) {
8205         push @hashrefs,
8206           { 'address1'      => { op=>'ILIKE', value=>"%$value%" }, },
8207           { 'ship_address1' => { op=>'ILIKE', value=>"%$value%" }, },
8208         ;
8209       }
8210
8211       foreach my $hashref ( @hashrefs ) {
8212
8213         push @cust_main, qsearch( {
8214           'table'     => 'cust_main',
8215           'hashref'   => { %$hashref,
8216                            %options,
8217                          },
8218           'extra_sql' => " AND $agentnums_sql", #agent virtualizaiton
8219         } );
8220
8221       }
8222
8223       #fuzzy
8224       my @fuzopts = (
8225         \%options,                #hashref
8226         '',                       #select
8227         " AND $agentnums_sql",    #extra_sql  #agent virtualization
8228       );
8229
8230       if ( $first && $last ) {
8231         push @cust_main, FS::cust_main->fuzzy_search(
8232           { 'last'   => $last,    #fuzzy hashref
8233             'first'  => $first }, #
8234           @fuzopts
8235         );
8236       }
8237       foreach my $field ( 'last', 'company' ) {
8238         push @cust_main,
8239           FS::cust_main->fuzzy_search( { $field => $value }, @fuzopts );
8240       }
8241       if ( $conf->exists('address1-search') ) {
8242         push @cust_main,
8243           FS::cust_main->fuzzy_search( { 'address1' => $value }, @fuzopts );
8244       }
8245
8246     }
8247
8248   }
8249
8250   #eliminate duplicates
8251   my %saw = ();
8252   @cust_main = grep { !$saw{$_->custnum}++ } @cust_main;
8253
8254   @cust_main;
8255
8256 }
8257
8258 =item email_search
8259
8260 Accepts the following options: I<email>, the email address to search for.  The
8261 email address will be searched for as an email invoice destination and as an
8262 svc_acct account.
8263
8264 #Any additional options are treated as an additional qualifier on the search
8265 #(i.e. I<agentnum>).
8266
8267 Returns a (possibly empty) array of FS::cust_main objects (but usually just
8268 none or one).
8269
8270 =cut
8271
8272 sub email_search {
8273   my %options = @_;
8274
8275   local($DEBUG) = 1;
8276
8277   my $email = delete $options{'email'};
8278
8279   #we're only being used by RT at the moment... no agent virtualization yet
8280   #my $agentnums_sql = $FS::CurrentUser::CurrentUser->agentnums_sql;
8281
8282   my @cust_main = ();
8283
8284   if ( $email =~ /([^@]+)\@([^@]+)/ ) {
8285
8286     my ( $user, $domain ) = ( $1, $2 );
8287
8288     warn "$me smart_search: searching for $user in domain $domain"
8289       if $DEBUG;
8290
8291     push @cust_main,
8292       map $_->cust_main,
8293           qsearch( {
8294                      'table'     => 'cust_main_invoice',
8295                      'hashref'   => { 'dest' => $email },
8296                    }
8297                  );
8298
8299     push @cust_main,
8300       map  $_->cust_main,
8301       grep $_,
8302       map  $_->cust_svc->cust_pkg,
8303           qsearch( {
8304                      'table'     => 'svc_acct',
8305                      'hashref'   => { 'username' => $user, },
8306                      'extra_sql' =>
8307                        'AND ( SELECT domain FROM svc_domain
8308                                 WHERE svc_acct.domsvc = svc_domain.svcnum
8309                             ) = '. dbh->quote($domain),
8310                    }
8311                  );
8312   }
8313
8314   my %saw = ();
8315   @cust_main = grep { !$saw{$_->custnum}++ } @cust_main;
8316
8317   warn "$me smart_search: found ". scalar(@cust_main). " unique customers"
8318     if $DEBUG;
8319
8320   @cust_main;
8321
8322 }
8323
8324 =item check_and_rebuild_fuzzyfiles
8325
8326 =cut
8327
8328 sub check_and_rebuild_fuzzyfiles {
8329   my $dir = $FS::UID::conf_dir. "/cache.". $FS::UID::datasrc;
8330   rebuild_fuzzyfiles() if grep { ! -e "$dir/cust_main.$_" } @fuzzyfields
8331 }
8332
8333 =item rebuild_fuzzyfiles
8334
8335 =cut
8336
8337 sub rebuild_fuzzyfiles {
8338
8339   use Fcntl qw(:flock);
8340
8341   my $dir = $FS::UID::conf_dir. "/cache.". $FS::UID::datasrc;
8342   mkdir $dir, 0700 unless -d $dir;
8343
8344   foreach my $fuzzy ( @fuzzyfields ) {
8345
8346     open(LOCK,">>$dir/cust_main.$fuzzy")
8347       or die "can't open $dir/cust_main.$fuzzy: $!";
8348     flock(LOCK,LOCK_EX)
8349       or die "can't lock $dir/cust_main.$fuzzy: $!";
8350
8351     open (CACHE,">$dir/cust_main.$fuzzy.tmp")
8352       or die "can't open $dir/cust_main.$fuzzy.tmp: $!";
8353
8354     foreach my $field ( $fuzzy, "ship_$fuzzy" ) {
8355       my $sth = dbh->prepare("SELECT $field FROM cust_main".
8356                              " WHERE $field != '' AND $field IS NOT NULL");
8357       $sth->execute or die $sth->errstr;
8358
8359       while ( my $row = $sth->fetchrow_arrayref ) {
8360         print CACHE $row->[0]. "\n";
8361       }
8362
8363     } 
8364
8365     close CACHE or die "can't close $dir/cust_main.$fuzzy.tmp: $!";
8366   
8367     rename "$dir/cust_main.$fuzzy.tmp", "$dir/cust_main.$fuzzy";
8368     close LOCK;
8369   }
8370
8371 }
8372
8373 =item all_X
8374
8375 =cut
8376
8377 sub all_X {
8378   my( $self, $field ) = @_;
8379   my $dir = $FS::UID::conf_dir. "/cache.". $FS::UID::datasrc;
8380   open(CACHE,"<$dir/cust_main.$field")
8381     or die "can't open $dir/cust_main.$field: $!";
8382   my @array = map { chomp; $_; } <CACHE>;
8383   close CACHE;
8384   \@array;
8385 }
8386
8387 =item append_fuzzyfiles FIRSTNAME LASTNAME COMPANY ADDRESS1
8388
8389 =cut
8390
8391 sub append_fuzzyfiles {
8392   #my( $first, $last, $company ) = @_;
8393
8394   &check_and_rebuild_fuzzyfiles;
8395
8396   use Fcntl qw(:flock);
8397
8398   my $dir = $FS::UID::conf_dir. "/cache.". $FS::UID::datasrc;
8399
8400   foreach my $field (@fuzzyfields) {
8401     my $value = shift;
8402
8403     if ( $value ) {
8404
8405       open(CACHE,">>$dir/cust_main.$field")
8406         or die "can't open $dir/cust_main.$field: $!";
8407       flock(CACHE,LOCK_EX)
8408         or die "can't lock $dir/cust_main.$field: $!";
8409
8410       print CACHE "$value\n";
8411
8412       flock(CACHE,LOCK_UN)
8413         or die "can't unlock $dir/cust_main.$field: $!";
8414       close CACHE;
8415     }
8416
8417   }
8418
8419   1;
8420 }
8421
8422 =item batch_charge
8423
8424 =cut
8425
8426 sub batch_charge {
8427   my $param = shift;
8428   #warn join('-',keys %$param);
8429   my $fh = $param->{filehandle};
8430   my @fields = @{$param->{fields}};
8431
8432   eval "use Text::CSV_XS;";
8433   die $@ if $@;
8434
8435   my $csv = new Text::CSV_XS;
8436   #warn $csv;
8437   #warn $fh;
8438
8439   my $imported = 0;
8440   #my $columns;
8441
8442   local $SIG{HUP} = 'IGNORE';
8443   local $SIG{INT} = 'IGNORE';
8444   local $SIG{QUIT} = 'IGNORE';
8445   local $SIG{TERM} = 'IGNORE';
8446   local $SIG{TSTP} = 'IGNORE';
8447   local $SIG{PIPE} = 'IGNORE';
8448
8449   my $oldAutoCommit = $FS::UID::AutoCommit;
8450   local $FS::UID::AutoCommit = 0;
8451   my $dbh = dbh;
8452   
8453   #while ( $columns = $csv->getline($fh) ) {
8454   my $line;
8455   while ( defined($line=<$fh>) ) {
8456
8457     $csv->parse($line) or do {
8458       $dbh->rollback if $oldAutoCommit;
8459       return "can't parse: ". $csv->error_input();
8460     };
8461
8462     my @columns = $csv->fields();
8463     #warn join('-',@columns);
8464
8465     my %row = ();
8466     foreach my $field ( @fields ) {
8467       $row{$field} = shift @columns;
8468     }
8469
8470     my $cust_main = qsearchs('cust_main', { 'custnum' => $row{'custnum'} } );
8471     unless ( $cust_main ) {
8472       $dbh->rollback if $oldAutoCommit;
8473       return "unknown custnum $row{'custnum'}";
8474     }
8475
8476     if ( $row{'amount'} > 0 ) {
8477       my $error = $cust_main->charge($row{'amount'}, $row{'pkg'});
8478       if ( $error ) {
8479         $dbh->rollback if $oldAutoCommit;
8480         return $error;
8481       }
8482       $imported++;
8483     } elsif ( $row{'amount'} < 0 ) {
8484       my $error = $cust_main->credit( sprintf( "%.2f", 0-$row{'amount'} ),
8485                                       $row{'pkg'}                         );
8486       if ( $error ) {
8487         $dbh->rollback if $oldAutoCommit;
8488         return $error;
8489       }
8490       $imported++;
8491     } else {
8492       #hmm?
8493     }
8494
8495   }
8496
8497   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
8498
8499   return "Empty file!" unless $imported;
8500
8501   ''; #no error
8502
8503 }
8504
8505 =item notify CUSTOMER_OBJECT TEMPLATE_NAME OPTIONS
8506
8507 Sends a templated email notification to the customer (see L<Text::Template>).
8508
8509 OPTIONS is a hash and may include
8510
8511 I<from> - the email sender (default is invoice_from)
8512
8513 I<to> - comma-separated scalar or arrayref of recipients 
8514    (default is invoicing_list)
8515
8516 I<subject> - The subject line of the sent email notification
8517    (default is "Notice from company_name")
8518
8519 I<extra_fields> - a hashref of name/value pairs which will be substituted
8520    into the template
8521
8522 The following variables are vavailable in the template.
8523
8524 I<$first> - the customer first name
8525 I<$last> - the customer last name
8526 I<$company> - the customer company
8527 I<$payby> - a description of the method of payment for the customer
8528             # would be nice to use FS::payby::shortname
8529 I<$payinfo> - the account information used to collect for this customer
8530 I<$expdate> - the expiration of the customer payment in seconds from epoch
8531
8532 =cut
8533
8534 sub notify {
8535   my ($self, $template, %options) = @_;
8536
8537   return unless $conf->exists($template);
8538
8539   my $from = $conf->config('invoice_from', $self->agentnum)
8540     if $conf->exists('invoice_from', $self->agentnum);
8541   $from = $options{from} if exists($options{from});
8542
8543   my $to = join(',', $self->invoicing_list_emailonly);
8544   $to = $options{to} if exists($options{to});
8545   
8546   my $subject = "Notice from " . $conf->config('company_name', $self->agentnum)
8547     if $conf->exists('company_name', $self->agentnum);
8548   $subject = $options{subject} if exists($options{subject});
8549
8550   my $notify_template = new Text::Template (TYPE => 'ARRAY',
8551                                             SOURCE => [ map "$_\n",
8552                                               $conf->config($template)]
8553                                            )
8554     or die "can't create new Text::Template object: Text::Template::ERROR";
8555   $notify_template->compile()
8556     or die "can't compile template: Text::Template::ERROR";
8557
8558   $FS::notify_template::_template::company_name =
8559     $conf->config('company_name', $self->agentnum);
8560   $FS::notify_template::_template::company_address =
8561     join("\n", $conf->config('company_address', $self->agentnum) ). "\n";
8562
8563   my $paydate = $self->paydate || '2037-12-31';
8564   $FS::notify_template::_template::first = $self->first;
8565   $FS::notify_template::_template::last = $self->last;
8566   $FS::notify_template::_template::company = $self->company;
8567   $FS::notify_template::_template::payinfo = $self->mask_payinfo;
8568   my $payby = $self->payby;
8569   my ($payyear,$paymonth,$payday) = split (/-/,$paydate);
8570   my $expire_time = timelocal(0,0,0,$payday,--$paymonth,$payyear);
8571
8572   #credit cards expire at the end of the month/year of their exp date
8573   if ($payby eq 'CARD' || $payby eq 'DCRD') {
8574     $FS::notify_template::_template::payby = 'credit card';
8575     ($paymonth < 11) ? $paymonth++ : ($paymonth=0, $payyear++);
8576     $expire_time = timelocal(0,0,0,$payday,$paymonth,$payyear);
8577     $expire_time--;
8578   }elsif ($payby eq 'COMP') {
8579     $FS::notify_template::_template::payby = 'complimentary account';
8580   }else{
8581     $FS::notify_template::_template::payby = 'current method';
8582   }
8583   $FS::notify_template::_template::expdate = $expire_time;
8584
8585   for (keys %{$options{extra_fields}}){
8586     no strict "refs";
8587     ${"FS::notify_template::_template::$_"} = $options{extra_fields}->{$_};
8588   }
8589
8590   send_email(from => $from,
8591              to => $to,
8592              subject => $subject,
8593              body => $notify_template->fill_in( PACKAGE =>
8594                                                 'FS::notify_template::_template'                                              ),
8595             );
8596
8597 }
8598
8599 =item generate_letter CUSTOMER_OBJECT TEMPLATE_NAME OPTIONS
8600
8601 Generates a templated notification to the customer (see L<Text::Template>).
8602
8603 OPTIONS is a hash and may include
8604
8605 I<extra_fields> - a hashref of name/value pairs which will be substituted
8606    into the template.  These values may override values mentioned below
8607    and those from the customer record.
8608
8609 The following variables are available in the template instead of or in addition
8610 to the fields of the customer record.
8611
8612 I<$payby> - a description of the method of payment for the customer
8613             # would be nice to use FS::payby::shortname
8614 I<$payinfo> - the masked account information used to collect for this customer
8615 I<$expdate> - the expiration of the customer payment method in seconds from epoch
8616 I<$returnaddress> - the return address defaults to invoice_latexreturnaddress or company_address
8617
8618 =cut
8619
8620 sub generate_letter {
8621   my ($self, $template, %options) = @_;
8622
8623   return unless $conf->exists($template);
8624
8625   my $letter_template = new Text::Template
8626                         ( TYPE       => 'ARRAY',
8627                           SOURCE     => [ map "$_\n", $conf->config($template)],
8628                           DELIMITERS => [ '[@--', '--@]' ],
8629                         )
8630     or die "can't create new Text::Template object: Text::Template::ERROR";
8631
8632   $letter_template->compile()
8633     or die "can't compile template: Text::Template::ERROR";
8634
8635   my %letter_data = map { $_ => $self->$_ } $self->fields;
8636   $letter_data{payinfo} = $self->mask_payinfo;
8637
8638   #my $paydate = $self->paydate || '2037-12-31';
8639   my $paydate = $self->paydate =~ /^\S+$/ ? $self->paydate : '2037-12-31';
8640
8641   my $payby = $self->payby;
8642   my ($payyear,$paymonth,$payday) = split (/-/,$paydate);
8643   my $expire_time = timelocal(0,0,0,$payday,--$paymonth,$payyear);
8644
8645   #credit cards expire at the end of the month/year of their exp date
8646   if ($payby eq 'CARD' || $payby eq 'DCRD') {
8647     $letter_data{payby} = 'credit card';
8648     ($paymonth < 11) ? $paymonth++ : ($paymonth=0, $payyear++);
8649     $expire_time = timelocal(0,0,0,$payday,$paymonth,$payyear);
8650     $expire_time--;
8651   }elsif ($payby eq 'COMP') {
8652     $letter_data{payby} = 'complimentary account';
8653   }else{
8654     $letter_data{payby} = 'current method';
8655   }
8656   $letter_data{expdate} = $expire_time;
8657
8658   for (keys %{$options{extra_fields}}){
8659     $letter_data{$_} = $options{extra_fields}->{$_};
8660   }
8661
8662   unless(exists($letter_data{returnaddress})){
8663     my $retadd = join("\n", $conf->config_orbase( 'invoice_latexreturnaddress',
8664                                                   $self->agent_template)
8665                      );
8666     if ( length($retadd) ) {
8667       $letter_data{returnaddress} = $retadd;
8668     } elsif ( grep /\S/, $conf->config('company_address', $self->agentnum) ) {
8669       $letter_data{returnaddress} =
8670         join( '\\*'."\n", map s/( {2,})/'~' x length($1)/eg,
8671                           $conf->config('company_address', $self->agentnum)
8672         );
8673     } else {
8674       $letter_data{returnaddress} = '~';
8675     }
8676   }
8677
8678   $letter_data{conf_dir} = "$FS::UID::conf_dir/conf.$FS::UID::datasrc";
8679
8680   $letter_data{company_name} = $conf->config('company_name', $self->agentnum);
8681
8682   my $dir = $FS::UID::conf_dir."/cache.". $FS::UID::datasrc;
8683   my $fh = new File::Temp( TEMPLATE => 'letter.'. $self->custnum. '.XXXXXXXX',
8684                            DIR      => $dir,
8685                            SUFFIX   => '.tex',
8686                            UNLINK   => 0,
8687                          ) or die "can't open temp file: $!\n";
8688
8689   $letter_template->fill_in( OUTPUT => $fh, HASH => \%letter_data );
8690   close $fh;
8691   $fh->filename =~ /^(.*).tex$/ or die "unparsable filename: ". $fh->filename;
8692   return $1;
8693 }
8694
8695 =item print_ps TEMPLATE 
8696
8697 Returns an postscript letter filled in from TEMPLATE, as a scalar.
8698
8699 =cut
8700
8701 sub print_ps {
8702   my $self = shift;
8703   my $file = $self->generate_letter(@_);
8704   FS::Misc::generate_ps($file);
8705 }
8706
8707 =item print TEMPLATE
8708
8709 Prints the filled in template.
8710
8711 TEMPLATE is the name of a L<Text::Template> to fill in and print.
8712
8713 =cut
8714
8715 sub queueable_print {
8716   my %opt = @_;
8717
8718   my $self = qsearchs('cust_main', { 'custnum' => $opt{custnum} } )
8719     or die "invalid customer number: " . $opt{custvnum};
8720
8721   my $error = $self->print( $opt{template} );
8722   die $error if $error;
8723 }
8724
8725 sub print {
8726   my ($self, $template) = (shift, shift);
8727   do_print [ $self->print_ps($template) ];
8728 }
8729
8730 #these three subs should just go away once agent stuff is all config overrides
8731
8732 sub agent_template {
8733   my $self = shift;
8734   $self->_agent_plandata('agent_templatename');
8735 }
8736
8737 sub agent_invoice_from {
8738   my $self = shift;
8739   $self->_agent_plandata('agent_invoice_from');
8740 }
8741
8742 sub _agent_plandata {
8743   my( $self, $option ) = @_;
8744
8745   #yuck.  this whole thing needs to be reconciled better with 1.9's idea of
8746   #agent-specific Conf
8747
8748   use FS::part_event::Condition;
8749   
8750   my $agentnum = $self->agentnum;
8751
8752   my $regexp = regexp_sql();
8753
8754   my $part_event_option =
8755     qsearchs({
8756       'select'    => 'part_event_option.*',
8757       'table'     => 'part_event_option',
8758       'addl_from' => q{
8759         LEFT JOIN part_event USING ( eventpart )
8760         LEFT JOIN part_event_option AS peo_agentnum
8761           ON ( part_event.eventpart = peo_agentnum.eventpart
8762                AND peo_agentnum.optionname = 'agentnum'
8763                AND peo_agentnum.optionvalue }. $regexp. q{ '(^|,)}. $agentnum. q{(,|$)'
8764              )
8765         LEFT JOIN part_event_condition
8766           ON ( part_event.eventpart = part_event_condition.eventpart
8767                AND part_event_condition.conditionname = 'cust_bill_age'
8768              )
8769         LEFT JOIN part_event_condition_option
8770           ON ( part_event_condition.eventconditionnum = part_event_condition_option.eventconditionnum
8771                AND part_event_condition_option.optionname = 'age'
8772              )
8773       },
8774       #'hashref'   => { 'optionname' => $option },
8775       #'hashref'   => { 'part_event_option.optionname' => $option },
8776       'extra_sql' =>
8777         " WHERE part_event_option.optionname = ". dbh->quote($option).
8778         " AND action = 'cust_bill_send_agent' ".
8779         " AND ( disabled IS NULL OR disabled != 'Y' ) ".
8780         " AND peo_agentnum.optionname = 'agentnum' ".
8781         " AND ( agentnum IS NULL OR agentnum = $agentnum ) ".
8782         " ORDER BY
8783            CASE WHEN part_event_condition_option.optionname IS NULL
8784            THEN -1
8785            ELSE ". FS::part_event::Condition->age2seconds_sql('part_event_condition_option.optionvalue').
8786         " END
8787           , part_event.weight".
8788         " LIMIT 1"
8789     });
8790     
8791   unless ( $part_event_option ) {
8792     return $self->agent->invoice_template || ''
8793       if $option eq 'agent_templatename';
8794     return '';
8795   }
8796
8797   $part_event_option->optionvalue;
8798
8799 }
8800
8801 sub queued_bill {
8802   ## actual sub, not a method, designed to be called from the queue.
8803   ## sets up the customer, and calls the bill_and_collect
8804   my (%args) = @_; #, ($time, $invoice_time, $check_freq, $resetup) = @_;
8805   my $cust_main = qsearchs( 'cust_main', { custnum => $args{'custnum'} } );
8806       $cust_main->bill_and_collect(
8807         %args,
8808       );
8809 }
8810
8811 sub _upgrade_data { #class method
8812   my ($class, %opts) = @_;
8813
8814   my $sql = 'UPDATE h_cust_main SET paycvv = NULL WHERE paycvv IS NOT NULL';
8815   my $sth = dbh->prepare($sql) or die dbh->errstr;
8816   $sth->execute or die $sth->errstr;
8817
8818   local($ignore_expired_card) = 1;
8819   $class->_upgrade_otaker(%opts);
8820
8821 }
8822
8823 =back
8824
8825 =head1 BUGS
8826
8827 The delete method.
8828
8829 The delete method should possibly take an FS::cust_main object reference
8830 instead of a scalar customer number.
8831
8832 Bill and collect options should probably be passed as references instead of a
8833 list.
8834
8835 There should probably be a configuration file with a list of allowed credit
8836 card types.
8837
8838 No multiple currency support (probably a larger project than just this module).
8839
8840 payinfo_masked false laziness with cust_pay.pm and cust_refund.pm
8841
8842 Birthdates rely on negative epoch values.
8843
8844 The payby for card/check batches is broken.  With mixed batching, bad
8845 things will happen.
8846
8847 B<collect> I<invoice_time> should be renamed I<time>, like B<bill>.
8848
8849 =head1 SEE ALSO
8850
8851 L<FS::Record>, L<FS::cust_pkg>, L<FS::cust_bill>, L<FS::cust_credit>
8852 L<FS::agent>, L<FS::part_referral>, L<FS::cust_main_county>,
8853 L<FS::cust_main_invoice>, L<FS::UID>, schema.html from the base documentation.
8854
8855 =cut
8856
8857 1;
8858