aeb3feced6c3132c4bb25580bda052af67d968e9
[freeside.git] / FS / FS / cust_main / Billing.pm
1 package FS::cust_main::Billing;
2
3 use strict;
4 use vars qw( $conf $DEBUG $me );
5 use Carp;
6 use Data::Dumper;
7 use List::Util qw( min );
8 use FS::UID qw( dbh );
9 use FS::Record qw( qsearch qsearchs dbdef );
10 use FS::Misc::DateTime qw( day_end );
11 use FS::cust_bill;
12 use FS::cust_bill_pkg;
13 use FS::cust_bill_pkg_display;
14 use FS::cust_bill_pay;
15 use FS::cust_credit_bill;
16 use FS::cust_tax_adjustment;
17 use FS::tax_rate;
18 use FS::tax_rate_location;
19 use FS::cust_bill_pkg_tax_location;
20 use FS::cust_bill_pkg_tax_rate_location;
21 use FS::part_event;
22 use FS::part_event_condition;
23 use FS::pkg_category;
24 use FS::Log;
25
26 # 1 is mostly method/subroutine entry and options
27 # 2 traces progress of some operations
28 # 3 is even more information including possibly sensitive data
29 $DEBUG = 0;
30 $me = '[FS::cust_main::Billing]';
31
32 install_callback FS::UID sub { 
33   $conf = new FS::Conf;
34   #yes, need it for stuff below (prolly should be cached)
35 };
36
37 =head1 NAME
38
39 FS::cust_main::Billing - Billing mixin for cust_main
40
41 =head1 SYNOPSIS
42
43 =head1 DESCRIPTION
44
45 These methods are available on FS::cust_main objects.
46
47 =head1 METHODS
48
49 =over 4
50
51 =item bill_and_collect 
52
53 Cancels and suspends any packages due, generates bills, applies payments and
54 credits, and applies collection events to run cards, send bills and notices,
55 etc.
56
57 By default, warns on errors and continues with the next operation (but see the
58 "fatal" flag below).
59
60 Options are passed as name-value pairs.  Currently available options are:
61
62 =over 4
63
64 =item time
65
66 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:
67
68  use Date::Parse;
69  ...
70  $cust_main->bill( 'time' => str2time('April 20th, 2001') );
71
72 =item invoice_time
73
74 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.
75
76 =item check_freq
77
78 "1d" for the traditional, daily events (the default), or "1m" for the new monthly events (part_event.check_freq)
79
80 =item resetup
81
82 If set true, re-charges setup fees.
83
84 =item fatal
85
86 If set any errors prevent subsequent operations from continusing.  If set
87 specifically to "return", returns the error (or false, if there is no error).
88 Any other true value causes errors to die.
89
90 =item debug
91
92 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)
93
94 =item job
95
96 Optional FS::queue entry to receive status updates.
97
98 =back
99
100 Options are passed to the B<bill> and B<collect> methods verbatim, so all
101 options of those methods are also available.
102
103 =cut
104
105 sub bill_and_collect {
106   my( $self, %options ) = @_;
107
108   my $log = FS::Log->new('bill_and_collect');
109   $log->debug('start', object => $self, agentnum => $self->agentnum);
110
111   my $error;
112
113   #$options{actual_time} not $options{time} because freeside-daily -d is for
114   #pre-printing invoices
115
116   $options{'actual_time'} ||= time;
117   my $job = $options{'job'};
118
119   my $actual_time = ( $conf->exists('next-bill-ignore-time')
120                         ? day_end( $options{actual_time} )
121                         : $options{actual_time}
122                     );
123
124   $job->update_statustext('0,cleaning expired packages') if $job;
125   $error = $self->cancel_expired_pkgs( $actual_time );
126   if ( $error ) {
127     $error = "Error expiring custnum ". $self->custnum. ": $error";
128     if    ( $options{fatal} && $options{fatal} eq 'return' ) { return $error; }
129     elsif ( $options{fatal}                                ) { die    $error; }
130     else                                                     { warn   $error; }
131   }
132
133   $error = $self->suspend_adjourned_pkgs( $actual_time );
134   if ( $error ) {
135     $error = "Error adjourning custnum ". $self->custnum. ": $error";
136     if    ( $options{fatal} && $options{fatal} eq 'return' ) { return $error; }
137     elsif ( $options{fatal}                                ) { die    $error; }
138     else                                                     { warn   $error; }
139   }
140
141   $error = $self->unsuspend_resumed_pkgs( $actual_time );
142   if ( $error ) {
143     $error = "Error resuming custnum ".$self->custnum. ": $error";
144     if    ( $options{fatal} && $options{fatal} eq 'return' ) { return $error; }
145     elsif ( $options{fatal}                                ) { die    $error; }
146     else                                                     { warn   $error; }
147   }
148
149   $job->update_statustext('20,billing packages') if $job;
150   $error = $self->bill( %options );
151   if ( $error ) {
152     $error = "Error billing custnum ". $self->custnum. ": $error";
153     if    ( $options{fatal} && $options{fatal} eq 'return' ) { return $error; }
154     elsif ( $options{fatal}                                ) { die    $error; }
155     else                                                     { warn   $error; }
156   }
157
158   $job->update_statustext('50,applying payments and credits') if $job;
159   $error = $self->apply_payments_and_credits;
160   if ( $error ) {
161     $error = "Error applying custnum ". $self->custnum. ": $error";
162     if    ( $options{fatal} && $options{fatal} eq 'return' ) { return $error; }
163     elsif ( $options{fatal}                                ) { die    $error; }
164     else                                                     { warn   $error; }
165   }
166
167   $job->update_statustext('70,running collection events') if $job;
168   unless ( $conf->exists('cancelled_cust-noevents')
169            && ! $self->num_ncancelled_pkgs
170   ) {
171     $error = $self->collect( %options );
172     if ( $error ) {
173       $error = "Error collecting custnum ". $self->custnum. ": $error";
174       if    ($options{fatal} && $options{fatal} eq 'return') { return $error; }
175       elsif ($options{fatal}                               ) { die    $error; }
176       else                                                   { warn   $error; }
177     }
178   }
179   $job->update_statustext('100,finished') if $job;
180   $log->debug('finish', object => $self, agentnum => $self->agentnum);
181
182   '';
183
184 }
185
186 sub cancel_expired_pkgs {
187   my ( $self, $time, %options ) = @_;
188   
189   my @cancel_pkgs = $self->ncancelled_pkgs( { 
190     'extra_sql' => " AND expire IS NOT NULL AND expire > 0 AND expire <= $time "
191   } );
192
193   my @errors = ();
194
195   foreach my $cust_pkg ( @cancel_pkgs ) {
196     my $cpr = $cust_pkg->last_cust_pkg_reason('expire');
197     my $error = $cust_pkg->cancel($cpr ? ( 'reason'        => $cpr->reasonnum,
198                                            'reason_otaker' => $cpr->otaker
199                                          )
200                                        : ()
201                                  );
202     push @errors, 'pkgnum '.$cust_pkg->pkgnum.": $error" if $error;
203   }
204
205   join(' / ', @errors);
206
207 }
208
209 sub suspend_adjourned_pkgs {
210   my ( $self, $time, %options ) = @_;
211   
212   my @susp_pkgs = $self->ncancelled_pkgs( {
213     'extra_sql' =>
214       " AND ( susp IS NULL OR susp = 0 )
215         AND (    ( bill    IS NOT NULL AND bill    != 0 AND bill    <  $time )
216               OR ( adjourn IS NOT NULL AND adjourn != 0 AND adjourn <= $time )
217             )
218       ",
219   } );
220
221   #only because there's no SQL test for is_prepaid :/
222   @susp_pkgs = 
223     grep {     (    $_->part_pkg->is_prepaid
224                  && $_->bill
225                  && $_->bill < $time
226                )
227             || (    $_->adjourn
228                  && $_->adjourn <= $time
229                )
230            
231          }
232          @susp_pkgs;
233
234   my @errors = ();
235
236   foreach my $cust_pkg ( @susp_pkgs ) {
237     my $cpr = $cust_pkg->last_cust_pkg_reason('adjourn')
238       if ($cust_pkg->adjourn && $cust_pkg->adjourn < $^T);
239     my $error = $cust_pkg->suspend($cpr ? ( 'reason' => $cpr->reasonnum,
240                                             'reason_otaker' => $cpr->otaker
241                                           )
242                                         : ()
243                                   );
244     push @errors, 'pkgnum '.$cust_pkg->pkgnum.": $error" if $error;
245   }
246
247   join(' / ', @errors);
248
249 }
250
251 sub unsuspend_resumed_pkgs {
252   my ( $self, $time, %options ) = @_;
253   
254   my @unsusp_pkgs = $self->ncancelled_pkgs( { 
255     'extra_sql' => " AND resume IS NOT NULL AND resume > 0 AND resume <= $time "
256   } );
257
258   my @errors = ();
259
260   foreach my $cust_pkg ( @unsusp_pkgs ) {
261     my $error = $cust_pkg->unsuspend( 'time' => $time );
262     push @errors, 'pkgnum '.$cust_pkg->pkgnum.": $error" if $error;
263   }
264
265   join(' / ', @errors);
266
267 }
268
269 =item bill OPTIONS
270
271 Generates invoices (see L<FS::cust_bill>) for this customer.  Usually used in
272 conjunction with the collect method by calling B<bill_and_collect>.
273
274 If there is an error, returns the error, otherwise returns false.
275
276 Options are passed as name-value pairs.  Currently available options are:
277
278 =over 4
279
280 =item resetup
281
282 If set true, re-charges setup fees.
283
284 =item recurring_only
285
286 If set true then only bill recurring charges, not setup, usage, one time
287 charges, etc.
288
289 =item freq_override
290
291 If set, then override the normal frequency and look for a part_pkg_discount
292 to take at that frequency.  This is appropriate only when the normal 
293 frequency for all packages is monthly, and is an error otherwise.  Use
294 C<pkg_list> to limit the set of packages included in billing.
295
296 =item time
297
298 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:
299
300  use Date::Parse;
301  ...
302  $cust_main->bill( 'time' => str2time('April 20th, 2001') );
303
304 =item pkg_list
305
306 An array ref of specific packages (objects) to attempt billing, instead trying all of them.
307
308  $cust_main->bill( pkg_list => [$pkg1, $pkg2] );
309
310 =item not_pkgpart
311
312 A hashref of pkgparts to exclude from this billing run (can also be specified as a comma-separated scalar).
313
314 =item invoice_time
315
316 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.
317
318 =item cancel
319
320 This boolean value informs the us that the package is being cancelled.  This
321 typically might mean not charging the normal recurring fee but only usage
322 fees since the last billing. Setup charges may be charged.  Not all package
323 plans support this feature (they tend to charge 0).
324
325 =item no_usage_reset
326
327 Prevent the resetting of usage limits during this call.
328
329 =item no_commit
330
331 Do not save the generated bill in the database.  Useful with return_bill
332
333 =item return_bill
334
335 A list reference on which the generated bill(s) will be returned.
336
337 =item invoice_terms
338
339 Optional terms to be printed on this invoice.  Otherwise, customer-specific
340 terms or the default terms are used.
341
342 =back
343
344 =cut
345
346 sub bill {
347   my( $self, %options ) = @_;
348
349   return '' if $self->payby eq 'COMP';
350
351   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
352
353   warn "$me bill customer ". $self->custnum. "\n"
354     if $DEBUG;
355
356   my $time = $options{'time'} || time;
357   my $invoice_time = $options{'invoice_time'} || $time;
358
359   $options{'not_pkgpart'} ||= {};
360   $options{'not_pkgpart'} = { map { $_ => 1 }
361                                   split(/\s*,\s*/, $options{'not_pkgpart'})
362                             }
363     unless ref($options{'not_pkgpart'});
364
365   local $SIG{HUP} = 'IGNORE';
366   local $SIG{INT} = 'IGNORE';
367   local $SIG{QUIT} = 'IGNORE';
368   local $SIG{TERM} = 'IGNORE';
369   local $SIG{TSTP} = 'IGNORE';
370   local $SIG{PIPE} = 'IGNORE';
371
372   my $oldAutoCommit = $FS::UID::AutoCommit;
373   local $FS::UID::AutoCommit = 0;
374   my $dbh = dbh;
375
376   warn "$me acquiring lock on customer ". $self->custnum. "\n"
377     if $DEBUG;
378
379   $self->select_for_update; #mutex
380
381   warn "$me running pre-bill events for customer ". $self->custnum. "\n"
382     if $DEBUG;
383
384   my $error = $self->do_cust_event(
385     'debug'      => ( $options{'debug'} || 0 ),
386     'time'       => $invoice_time,
387     'check_freq' => $options{'check_freq'},
388     'stage'      => 'pre-bill',
389   )
390     unless $options{no_commit};
391   if ( $error ) {
392     $dbh->rollback if $oldAutoCommit && !$options{no_commit};
393     return $error;
394   }
395
396   warn "$me done running pre-bill events for customer ". $self->custnum. "\n"
397     if $DEBUG;
398
399   #keep auto-charge and non-auto-charge line items separate
400   my @passes = ( '', 'no_auto' );
401
402   my %cust_bill_pkg = map { $_ => [] } @passes;
403
404   ###
405   # find the packages which are due for billing, find out how much they are
406   # & generate invoice database.
407   ###
408
409   my %total_setup   = map { my $z = 0; $_ => \$z; } @passes;
410   my %total_recur   = map { my $z = 0; $_ => \$z; } @passes;
411
412   my %taxlisthash = map { $_ => {} } @passes;
413
414   my @precommit_hooks = ();
415
416   $options{'pkg_list'} ||= [ $self->ncancelled_pkgs ];  #param checks?
417   foreach my $cust_pkg ( @{ $options{'pkg_list'} } ) {
418
419     next if $options{'not_pkgpart'}->{$cust_pkg->pkgpart};
420
421     warn "  bill package ". $cust_pkg->pkgnum. "\n" if $DEBUG;
422
423     #? to avoid use of uninitialized value errors... ?
424     $cust_pkg->setfield('bill', '')
425       unless defined($cust_pkg->bill);
426  
427     #my $part_pkg = $cust_pkg->part_pkg;
428
429     my $real_pkgpart = $cust_pkg->pkgpart;
430     my %hash = $cust_pkg->hash;
431
432     # we could implement this bit as FS::part_pkg::has_hidden, but we already
433     # suffer from performance issues
434     $options{has_hidden} = 0;
435     my @part_pkg = $cust_pkg->part_pkg->self_and_bill_linked;
436     $options{has_hidden} = 1 if ($part_pkg[1] && $part_pkg[1]->hidden);
437  
438     foreach my $part_pkg ( @part_pkg ) {
439
440       $cust_pkg->set($_, $hash{$_}) foreach qw ( setup last_bill bill );
441
442       my $pass = ($cust_pkg->no_auto || $part_pkg->no_auto) ? 'no_auto' : '';
443
444       my $next_bill = $cust_pkg->getfield('bill') || 0;
445       my $error;
446       while ( $next_bill <= $time ) {
447         $error =
448           $self->_make_lines( 'part_pkg'            => $part_pkg,
449                               'cust_pkg'            => $cust_pkg,
450                               'precommit_hooks'     => \@precommit_hooks,
451                               'line_items'          => $cust_bill_pkg{$pass},
452                               'setup'               => $total_setup{$pass},
453                               'recur'               => $total_recur{$pass},
454                               'tax_matrix'          => $taxlisthash{$pass},
455                               'time'                => $time,
456                               'real_pkgpart'        => $real_pkgpart,
457                               'options'             => \%options,
458                             );
459
460         # Stop if anything goes wrong
461         last if $error;
462
463         # or if we're not incrementing the bill date.
464         last if ($cust_pkg->getfield('bill') || 0) == $next_bill;
465
466         $next_bill = $cust_pkg->getfield('bill') || 0;
467
468         #stop if -o was passed to freeside-daily
469         last if $options{'one_recur'};
470       }
471       if ($error) {
472         $dbh->rollback if $oldAutoCommit && !$options{no_commit};
473         return $error;
474       }
475
476     } #foreach my $part_pkg
477
478   } #foreach my $cust_pkg
479
480   #if the customer isn't on an automatic payby, everything can go on a single
481   #invoice anyway?
482   #if ( $cust_main->payby !~ /^(CARD|CHEK)$/ ) {
483     #merge everything into one list
484   #}
485
486   foreach my $pass (@passes) { # keys %cust_bill_pkg ) {
487
488     my @cust_bill_pkg = _omit_zero_value_bundles(@{ $cust_bill_pkg{$pass} });
489
490     next unless @cust_bill_pkg; #don't create an invoice w/o line items
491
492     warn "$me billing pass $pass\n"
493            #.Dumper(\@cust_bill_pkg)."\n"
494       if $DEBUG > 2;
495
496     if ( scalar( grep { $_->recur && $_->recur > 0 } @cust_bill_pkg) ||
497            !$conf->exists('postal_invoice-recurring_only')
498        )
499     {
500
501       my $postal_pkg = $self->charge_postal_fee();
502       if ( $postal_pkg && !ref( $postal_pkg ) ) {
503
504         $dbh->rollback if $oldAutoCommit && !$options{no_commit};
505         return "can't charge postal invoice fee for customer ".
506           $self->custnum. ": $postal_pkg";
507
508       } elsif ( $postal_pkg ) {
509
510         my $real_pkgpart = $postal_pkg->pkgpart;
511         # we could implement this bit as FS::part_pkg::has_hidden, but we already
512         # suffer from performance issues
513         $options{has_hidden} = 0;
514         my @part_pkg = $postal_pkg->part_pkg->self_and_bill_linked;
515         $options{has_hidden} = 1 if ($part_pkg[1] && $part_pkg[1]->hidden);
516
517         foreach my $part_pkg ( @part_pkg ) {
518           my %postal_options = %options;
519           delete $postal_options{cancel};
520           my $error =
521             $self->_make_lines( 'part_pkg'            => $part_pkg,
522                                 'cust_pkg'            => $postal_pkg,
523                                 'precommit_hooks'     => \@precommit_hooks,
524                                 'line_items'          => \@cust_bill_pkg,
525                                 'setup'               => $total_setup{$pass},
526                                 'recur'               => $total_recur{$pass},
527                                 'tax_matrix'          => $taxlisthash{$pass},
528                                 'time'                => $time,
529                                 'real_pkgpart'        => $real_pkgpart,
530                                 'options'             => \%postal_options,
531                               );
532           if ($error) {
533             $dbh->rollback if $oldAutoCommit && !$options{no_commit};
534             return $error;
535           }
536         }
537
538         # it's silly to have a zero value postal_pkg, but....
539         @cust_bill_pkg = _omit_zero_value_bundles(@cust_bill_pkg);
540
541       }
542
543     }
544
545     my $listref_or_error =
546       $self->calculate_taxes( \@cust_bill_pkg, $taxlisthash{$pass}, $invoice_time);
547
548     unless ( ref( $listref_or_error ) ) {
549       $dbh->rollback if $oldAutoCommit && !$options{no_commit};
550       return $listref_or_error;
551     }
552
553     foreach my $taxline ( @$listref_or_error ) {
554       ${ $total_setup{$pass} } =
555         sprintf('%.2f', ${ $total_setup{$pass} } + $taxline->setup );
556       push @cust_bill_pkg, $taxline;
557     }
558
559     #add tax adjustments
560     warn "adding tax adjustments...\n" if $DEBUG > 2;
561     foreach my $cust_tax_adjustment (
562       qsearch('cust_tax_adjustment', { 'custnum'    => $self->custnum,
563                                        'billpkgnum' => '',
564                                      }
565              )
566     ) {
567
568       my $tax = sprintf('%.2f', $cust_tax_adjustment->amount );
569
570       my $itemdesc = $cust_tax_adjustment->taxname;
571       $itemdesc = '' if $itemdesc eq 'Tax';
572
573       push @cust_bill_pkg, new FS::cust_bill_pkg {
574         'pkgnum'      => 0,
575         'setup'       => $tax,
576         'recur'       => 0,
577         'sdate'       => '',
578         'edate'       => '',
579         'itemdesc'    => $itemdesc,
580         'itemcomment' => $cust_tax_adjustment->comment,
581         'cust_tax_adjustment' => $cust_tax_adjustment,
582         #'cust_bill_pkg_tax_location' => \@cust_bill_pkg_tax_location,
583       };
584
585     }
586
587     my $charged = sprintf('%.2f', ${ $total_setup{$pass} } + ${ $total_recur{$pass} } );
588
589     my @cust_bill = $self->cust_bill;
590     my $balance = $self->balance;
591     my $previous_balance = scalar(@cust_bill)
592                              ? ( $cust_bill[$#cust_bill]->billing_balance || 0 )
593                              : 0;
594
595     $previous_balance += $cust_bill[$#cust_bill]->charged
596       if scalar(@cust_bill);
597     #my $balance_adjustments =
598     #  sprintf('%.2f', $balance - $prior_prior_balance - $prior_charged);
599
600     warn "creating the new invoice\n" if $DEBUG;
601     #create the new invoice
602     my $cust_bill = new FS::cust_bill ( {
603       'custnum'             => $self->custnum,
604       '_date'               => $invoice_time,
605       'charged'             => $charged,
606       'billing_balance'     => $balance,
607       'previous_balance'    => $previous_balance,
608       'invoice_terms'       => $options{'invoice_terms'},
609       'cust_bill_pkg'       => \@cust_bill_pkg,
610     } );
611     $error = $cust_bill->insert unless $options{no_commit};
612     if ( $error ) {
613       $dbh->rollback if $oldAutoCommit && !$options{no_commit};
614       return "can't create invoice for customer #". $self->custnum. ": $error";
615     }
616     push @{$options{return_bill}}, $cust_bill if $options{return_bill};
617
618   } #foreach my $pass ( keys %cust_bill_pkg )
619
620   foreach my $hook ( @precommit_hooks ) { 
621     eval {
622       &{$hook}; #($self) ?
623     } unless $options{no_commit};
624     if ( $@ ) {
625       $dbh->rollback if $oldAutoCommit && !$options{no_commit};
626       return "$@ running precommit hook $hook\n";
627     }
628   }
629   
630   $dbh->commit or die $dbh->errstr if $oldAutoCommit && !$options{no_commit};
631
632   ''; #no error
633 }
634
635 #discard bundled packages of 0 value
636 sub _omit_zero_value_bundles {
637   my @in = @_;
638
639   my @cust_bill_pkg = ();
640   my @cust_bill_pkg_bundle = ();
641   my $sum = 0;
642   my $discount_show_always = 0;
643
644   foreach my $cust_bill_pkg ( @in ) {
645
646     $discount_show_always = ($cust_bill_pkg->get('discounts')
647                                 && scalar(@{$cust_bill_pkg->get('discounts')})
648                                 && $conf->exists('discount-show-always'));
649
650     warn "  pkgnum ". $cust_bill_pkg->pkgnum. " sum $sum, ".
651          "setup_show_zero ". $cust_bill_pkg->setup_show_zero.
652          "recur_show_zero ". $cust_bill_pkg->recur_show_zero. "\n"
653       if $DEBUG > 0;
654
655     if (scalar(@cust_bill_pkg_bundle) && !$cust_bill_pkg->pkgpart_override) {
656       push @cust_bill_pkg, @cust_bill_pkg_bundle 
657         if $sum > 0
658         || ($sum == 0 && (    $discount_show_always
659                            || grep {$_->recur_show_zero || $_->setup_show_zero}
660                                    @cust_bill_pkg_bundle
661                          )
662            );
663       @cust_bill_pkg_bundle = ();
664       $sum = 0;
665     }
666
667     $sum += $cust_bill_pkg->setup + $cust_bill_pkg->recur;
668     push @cust_bill_pkg_bundle, $cust_bill_pkg;
669
670   }
671
672   push @cust_bill_pkg, @cust_bill_pkg_bundle
673     if $sum > 0
674     || ($sum == 0 && (    $discount_show_always
675                        || grep {$_->recur_show_zero || $_->setup_show_zero}
676                                @cust_bill_pkg_bundle
677                      )
678        );
679
680   warn "  _omit_zero_value_bundles: ". scalar(@in).
681        '->'. scalar(@cust_bill_pkg). "\n" #. Dumper(@cust_bill_pkg). "\n"
682     if $DEBUG > 2;
683
684   (@cust_bill_pkg);
685
686 }
687
688 =item calculate_taxes LINEITEMREF TAXHASHREF INVOICE_TIME
689
690 This is a weird one.  Perhaps it should not even be exposed.
691
692 Generates tax line items (see L<FS::cust_bill_pkg>) for this customer.
693 Usually used internally by bill method B<bill>.
694
695 If there is an error, returns the error, otherwise returns reference to a
696 list of line items suitable for insertion.
697
698 =over 4
699
700 =item LINEITEMREF
701
702 An array ref of the line items being billed.
703
704 =item TAXHASHREF
705
706 A strange beast.  The keys to this hash are internal identifiers consisting
707 of the name of the tax object type, a space, and its unique identifier ( e.g.
708  'cust_main_county 23' ).  The values of the hash are listrefs.  The first
709 item in the list is the tax object.  The remaining items are either line
710 items or floating point values (currency amounts).
711
712 The taxes are calculated on this entity.  Calculated exemption records are
713 transferred to the LINEITEMREF items on the assumption that they are related.
714
715 Read the source.
716
717 =item INVOICE_TIME
718
719 This specifies the date appearing on the associated invoice.  Some
720 jurisdictions (i.e. Texas) have tax exemptions which are date sensitive.
721
722 =back
723
724 =cut
725
726 sub calculate_taxes {
727   my ($self, $cust_bill_pkg, $taxlisthash, $invoice_time) = @_;
728
729   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
730
731   warn "$me calculate_taxes\n"
732        #.Dumper($self, $cust_bill_pkg, $taxlisthash, $invoice_time). "\n"
733     if $DEBUG > 2;
734
735   my @tax_line_items = ();
736
737   # keys are tax names (as printed on invoices / itemdesc )
738   # values are listrefs of taxlisthash keys (internal identifiers)
739   my %taxname = ();
740
741   # keys are taxlisthash keys (internal identifiers)
742   # values are (cumulative) amounts
743   my %tax = ();
744
745   # keys are taxlisthash keys (internal identifiers)
746   # values are listrefs of cust_bill_pkg_tax_location hashrefs
747   my %tax_location = ();
748
749   # keys are taxlisthash keys (internal identifiers)
750   # values are listrefs of cust_bill_pkg_tax_rate_location hashrefs
751   my %tax_rate_location = ();
752
753   foreach my $tax ( keys %$taxlisthash ) {
754     my $tax_object = shift @{ $taxlisthash->{$tax} };
755     warn "found ". $tax_object->taxname. " as $tax\n" if $DEBUG > 2;
756     warn " ". join('/', @{ $taxlisthash->{$tax} } ). "\n" if $DEBUG > 2;
757     my $hashref_or_error =
758       $tax_object->taxline( $taxlisthash->{$tax},
759                             'custnum'      => $self->custnum,
760                             'invoice_time' => $invoice_time
761                           );
762     return $hashref_or_error unless ref($hashref_or_error);
763
764     unshift @{ $taxlisthash->{$tax} }, $tax_object;
765
766     my $name   = $hashref_or_error->{'name'};
767     my $amount = $hashref_or_error->{'amount'};
768
769     #warn "adding $amount as $name\n";
770     $taxname{ $name } ||= [];
771     push @{ $taxname{ $name } }, $tax;
772
773     $tax{ $tax } += $amount;
774
775     $tax_location{ $tax } ||= [];
776     if ( $tax_object->get('pkgnum') || $tax_object->get('locationnum') ) {
777       push @{ $tax_location{ $tax }  },
778         {
779           'taxnum'      => $tax_object->taxnum, 
780           'taxtype'     => ref($tax_object),
781           'pkgnum'      => $tax_object->get('pkgnum'),
782           'locationnum' => $tax_object->get('locationnum'),
783           'amount'      => sprintf('%.2f', $amount ),
784         };
785     }
786
787     $tax_rate_location{ $tax } ||= [];
788     if ( ref($tax_object) eq 'FS::tax_rate' ) {
789       my $taxratelocationnum =
790         $tax_object->tax_rate_location->taxratelocationnum;
791       push @{ $tax_rate_location{ $tax }  },
792         {
793           'taxnum'             => $tax_object->taxnum, 
794           'taxtype'            => ref($tax_object),
795           'amount'             => sprintf('%.2f', $amount ),
796           'locationtaxid'      => $tax_object->location,
797           'taxratelocationnum' => $taxratelocationnum,
798         };
799     }
800
801   }
802
803   #move the cust_tax_exempt_pkg records to the cust_bill_pkgs we will commit
804   my %packagemap = map { $_->pkgnum => $_ } @$cust_bill_pkg;
805   foreach my $tax ( keys %$taxlisthash ) {
806     foreach ( @{ $taxlisthash->{$tax} }[1 .. scalar(@{ $taxlisthash->{$tax}}) - 1] ) {
807       next unless ref($_) eq 'FS::cust_bill_pkg'; #IS needed for CCH tax-on-tax
808
809       my @cust_tax_exempt_pkg = splice( @{ $_->_cust_tax_exempt_pkg } );
810
811       next unless @cust_tax_exempt_pkg; #just avoiding the prob when irrelevant?
812       die "can't distribute tax exemptions: no line item for ".  Dumper($_).
813           " in packagemap ". join(',', sort {$a<=>$b} keys %packagemap). "\n"
814         unless $packagemap{$_->pkgnum};
815
816       push @{ $packagemap{$_->pkgnum}->_cust_tax_exempt_pkg },
817            @cust_tax_exempt_pkg;
818     }
819   }
820
821   #consolidate and create tax line items
822   warn "consolidating and generating...\n" if $DEBUG > 2;
823   foreach my $taxname ( keys %taxname ) {
824     my $tax = 0;
825     my %seen = ();
826     my @cust_bill_pkg_tax_location = ();
827     my @cust_bill_pkg_tax_rate_location = ();
828     warn "adding $taxname\n" if $DEBUG > 1;
829     foreach my $taxitem ( @{ $taxname{$taxname} } ) {
830       next if $seen{$taxitem}++;
831       warn "adding $tax{$taxitem}\n" if $DEBUG > 1;
832       $tax += $tax{$taxitem};
833       push @cust_bill_pkg_tax_location,
834         map { new FS::cust_bill_pkg_tax_location $_ }
835             @{ $tax_location{ $taxitem } };
836       push @cust_bill_pkg_tax_rate_location,
837         map { new FS::cust_bill_pkg_tax_rate_location $_ }
838             @{ $tax_rate_location{ $taxitem } };
839     }
840     next unless $tax;
841
842     $tax = sprintf('%.2f', $tax );
843   
844     my $pkg_category = qsearchs( 'pkg_category', { 'categoryname' => $taxname,
845                                                    'disabled'     => '',
846                                                  },
847                                );
848
849     my @display = ();
850     if ( $pkg_category and
851          $conf->config('invoice_latexsummary') ||
852          $conf->config('invoice_htmlsummary')
853        )
854     {
855
856       my %hash = (  'section' => $pkg_category->categoryname );
857       push @display, new FS::cust_bill_pkg_display { type => 'S', %hash };
858
859     }
860
861     push @tax_line_items, new FS::cust_bill_pkg {
862       'pkgnum'   => 0,
863       'setup'    => $tax,
864       'recur'    => 0,
865       'sdate'    => '',
866       'edate'    => '',
867       'itemdesc' => $taxname,
868       'display'  => \@display,
869       'cust_bill_pkg_tax_location' => \@cust_bill_pkg_tax_location,
870       'cust_bill_pkg_tax_rate_location' => \@cust_bill_pkg_tax_rate_location,
871     };
872
873   }
874
875   \@tax_line_items;
876 }
877
878 sub _make_lines {
879   my ($self, %params) = @_;
880
881   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
882
883   my $part_pkg = $params{part_pkg} or die "no part_pkg specified";
884   my $cust_pkg = $params{cust_pkg} or die "no cust_pkg specified";
885   my $precommit_hooks = $params{precommit_hooks} or die "no package specified";
886   my $cust_bill_pkgs = $params{line_items} or die "no line buffer specified";
887   my $total_setup = $params{setup} or die "no setup accumulator specified";
888   my $total_recur = $params{recur} or die "no recur accumulator specified";
889   my $taxlisthash = $params{tax_matrix} or die "no tax accumulator specified";
890   my $time = $params{'time'} or die "no time specified";
891   my (%options) = %{$params{options}};
892
893   if ( $part_pkg->freq ne '1' and ($options{'freq_override'} || 0) > 0 ) {
894     # this should never happen
895     die 'freq_override billing attempted on non-monthly package '.
896       $cust_pkg->pkgnum;
897   }
898
899   my $dbh = dbh;
900   my $real_pkgpart = $params{real_pkgpart};
901   my %hash = $cust_pkg->hash;
902   my $old_cust_pkg = new FS::cust_pkg \%hash;
903
904   my @details = ();
905   my $lineitems = 0;
906
907   $cust_pkg->pkgpart($part_pkg->pkgpart);
908
909   my $cmp_time = ( $conf->exists('next-bill-ignore-time')
910                      ? day_end( $time )
911                      : $time
912                  );
913
914   ###
915   # bill setup
916   ###
917
918   my $setup = 0;
919   my $unitsetup = 0;
920   my @setup_discounts = ();
921   my %setup_param = ( 'discounts' => \@setup_discounts );
922   if (     ! $options{recurring_only}
923        and ! $options{cancel}
924        and ( $options{'resetup'}
925              || ( ! $cust_pkg->setup
926                   && ( ! $cust_pkg->start_date
927                        || $cust_pkg->start_date <= $cmp_time
928                      )
929                   && ( ! $conf->exists('disable_setup_suspended_pkgs')
930                        || ( $conf->exists('disable_setup_suspended_pkgs') &&
931                             ! $cust_pkg->getfield('susp')
932                           )
933                      )
934                 )
935            )
936      )
937   {
938     
939     warn "    bill setup\n" if $DEBUG > 1;
940
941     unless ( $cust_pkg->waive_setup ) {
942         $lineitems++;
943
944         $setup = eval { $cust_pkg->calc_setup( $time, \@details, \%setup_param ) };
945         return "$@ running calc_setup for $cust_pkg\n"
946           if $@;
947
948         $unitsetup = $cust_pkg->part_pkg->unit_setup || $setup; #XXX uuh
949     }
950
951     $cust_pkg->setfield('setup', $time)
952       unless $cust_pkg->setup;
953           #do need it, but it won't get written to the db
954           #|| $cust_pkg->pkgpart != $real_pkgpart;
955
956     $cust_pkg->setfield('start_date', '')
957       if $cust_pkg->start_date;
958
959   }
960
961   ###
962   # bill recurring fee
963   ### 
964
965   #XXX unit stuff here too
966   my $recur = 0;
967   my $unitrecur = 0;
968   my @recur_discounts = ();
969   my $sdate;
970   if (     ! $cust_pkg->start_date
971        and ( ! $cust_pkg->susp || $cust_pkg->option('suspend_bill',1)
972                                || ( $part_pkg->option('suspend_bill', 1) )
973                                      && ! $cust_pkg->option('no_suspend_bill',1)
974                                   )
975        and
976             ( $part_pkg->freq ne '0' && ( $cust_pkg->bill || 0 ) <= $cmp_time )
977          || ( $part_pkg->plan eq 'voip_cdr'
978                && $part_pkg->option('bill_every_call')
979             )
980          || $options{cancel}
981   ) {
982
983     # XXX should this be a package event?  probably.  events are called
984     # at collection time at the moment, though...
985     $part_pkg->reset_usage($cust_pkg, 'debug'=>$DEBUG)
986       if $part_pkg->can('reset_usage') && !$options{'no_usage_reset'};
987       #don't want to reset usage just cause we want a line item??
988       #&& $part_pkg->pkgpart == $real_pkgpart;
989
990     warn "    bill recur\n" if $DEBUG > 1;
991     $lineitems++;
992
993     # XXX shared with $recur_prog
994     $sdate = ( $options{cancel} ? $cust_pkg->last_bill : $cust_pkg->bill )
995              || $cust_pkg->setup
996              || $time;
997
998     #over two params!  lets at least switch to a hashref for the rest...
999     my $increment_next_bill = ( $part_pkg->freq ne '0'
1000                                 && ( $cust_pkg->getfield('bill') || 0 ) <= $cmp_time
1001                                 && !$options{cancel}
1002                               );
1003     my %param = ( %setup_param,
1004                   'precommit_hooks'     => $precommit_hooks,
1005                   'increment_next_bill' => $increment_next_bill,
1006                   'discounts'           => \@recur_discounts,
1007                   'real_pkgpart'        => $real_pkgpart,
1008                   'freq_override'       => $options{freq_override} || '',
1009                   'setup_fee'           => 0,
1010                 );
1011
1012     my $method = $options{cancel} ? 'calc_cancel' : 'calc_recur';
1013
1014     # There may be some part_pkg for which this is wrong.  Only those
1015     # which can_discount are supported.
1016     # (the UI should prevent adding discounts to these at the moment)
1017
1018     warn "calling $method on cust_pkg ". $cust_pkg->pkgnum.
1019          " for pkgpart ". $cust_pkg->pkgpart.
1020          " with params ". join(' / ', map "$_=>$param{$_}", keys %param). "\n"
1021       if $DEBUG > 2;
1022            
1023     $recur = eval { $cust_pkg->$method( \$sdate, \@details, \%param ) };
1024     return "$@ running $method for $cust_pkg\n"
1025       if ( $@ );
1026
1027     if ( $increment_next_bill ) {
1028
1029       my $next_bill = $part_pkg->add_freq($sdate, $options{freq_override} || 0);
1030       return "unparsable frequency: ". $part_pkg->freq
1031         if $next_bill == -1;
1032   
1033       #pro-rating magic - if $recur_prog fiddled $sdate, want to use that
1034       # only for figuring next bill date, nothing else, so, reset $sdate again
1035       # here
1036       $sdate = $cust_pkg->bill || $cust_pkg->setup || $time;
1037       #no need, its in $hash{last_bill}# my $last_bill = $cust_pkg->last_bill;
1038       $cust_pkg->last_bill($sdate);
1039
1040       $cust_pkg->setfield('bill', $next_bill );
1041
1042     }
1043
1044     if ( $param{'setup_fee'} ) {
1045       # Add an additional setup fee at the billing stage.
1046       # Used for prorate_defer_bill.
1047       $setup += $param{'setup_fee'};
1048       $unitsetup += $param{'setup_fee'};
1049       $lineitems++;
1050     }
1051
1052     if ( defined $param{'discount_left_setup'} ) {
1053         foreach my $discount_setup ( values %{$param{'discount_left_setup'}} ) {
1054             $setup -= $discount_setup;
1055         }
1056     }
1057
1058   }
1059
1060   warn "\$setup is undefined" unless defined($setup);
1061   warn "\$recur is undefined" unless defined($recur);
1062   warn "\$cust_pkg->bill is undefined" unless defined($cust_pkg->bill);
1063   
1064   ###
1065   # If there's line items, create em cust_bill_pkg records
1066   # If $cust_pkg has been modified, update it (if we're a real pkgpart)
1067   ###
1068
1069   if ( $lineitems ) {
1070
1071     if ( $cust_pkg->modified && $cust_pkg->pkgpart == $real_pkgpart ) {
1072       # hmm.. and if just the options are modified in some weird price plan?
1073   
1074       warn "  package ". $cust_pkg->pkgnum. " modified; updating\n"
1075         if $DEBUG >1;
1076   
1077       my $error = $cust_pkg->replace( $old_cust_pkg,
1078                                       'depend_jobnum'=>$options{depend_jobnum},
1079                                       'options' => { $cust_pkg->options },
1080                                     )
1081         unless $options{no_commit};
1082       return "Error modifying pkgnum ". $cust_pkg->pkgnum. ": $error"
1083         if $error; #just in case
1084     }
1085   
1086     $setup = sprintf( "%.2f", $setup );
1087     $recur = sprintf( "%.2f", $recur );
1088     if ( $setup < 0 && ! $conf->exists('allow_negative_charges') ) {
1089       return "negative setup $setup for pkgnum ". $cust_pkg->pkgnum;
1090     }
1091     if ( $recur < 0 && ! $conf->exists('allow_negative_charges') ) {
1092       return "negative recur $recur for pkgnum ". $cust_pkg->pkgnum;
1093     }
1094
1095     my $discount_show_always = $conf->exists('discount-show-always')
1096                                && (    ($setup == 0 && scalar(@setup_discounts))
1097                                     || ($recur == 0 && scalar(@recur_discounts))
1098                                   );
1099
1100     if (    $setup != 0
1101          || $recur != 0
1102          || (!$part_pkg->hidden && $options{has_hidden}) #include some $0 lines
1103          || $discount_show_always
1104          || ($setup == 0 && $cust_pkg->_X_show_zero('setup'))
1105          || ($recur == 0 && $cust_pkg->_X_show_zero('recur'))
1106        ) 
1107     {
1108
1109       warn "    charges (setup=$setup, recur=$recur); adding line items\n"
1110         if $DEBUG > 1;
1111
1112       my @cust_pkg_detail = map { $_->detail } $cust_pkg->cust_pkg_detail('I');
1113       if ( $DEBUG > 1 ) {
1114         warn "      adding customer package invoice detail: $_\n"
1115           foreach @cust_pkg_detail;
1116       }
1117       push @details, @cust_pkg_detail;
1118
1119       my $cust_bill_pkg = new FS::cust_bill_pkg {
1120         'pkgnum'    => $cust_pkg->pkgnum,
1121         'setup'     => $setup,
1122         'unitsetup' => $unitsetup,
1123         'recur'     => $recur,
1124         'unitrecur' => $unitrecur,
1125         'quantity'  => $cust_pkg->quantity,
1126         'details'   => \@details,
1127         'discounts' => [ @setup_discounts, @recur_discounts ],
1128         'hidden'    => $part_pkg->hidden,
1129         'freq'      => $part_pkg->freq,
1130       };
1131
1132       if ( $part_pkg->option('prorate_defer_bill',1) 
1133            and !$hash{last_bill} ) {
1134         # both preceding and upcoming, technically
1135         $cust_bill_pkg->sdate( $cust_pkg->setup );
1136         $cust_bill_pkg->edate( $cust_pkg->bill );
1137       } elsif ( $part_pkg->recur_temporality eq 'preceding' ) {
1138         $cust_bill_pkg->sdate( $hash{last_bill} );
1139         $cust_bill_pkg->edate( $sdate - 86399   ); #60s*60m*24h-1
1140         $cust_bill_pkg->edate( $time ) if $options{cancel};
1141       } else { #if ( $part_pkg->recur_temporality eq 'upcoming' ) {
1142         $cust_bill_pkg->sdate( $sdate );
1143         $cust_bill_pkg->edate( $cust_pkg->bill );
1144         #$cust_bill_pkg->edate( $time ) if $options{cancel};
1145       }
1146
1147       $cust_bill_pkg->pkgpart_override($part_pkg->pkgpart)
1148         unless $part_pkg->pkgpart == $real_pkgpart;
1149
1150       $$total_setup += $setup;
1151       $$total_recur += $recur;
1152
1153       ###
1154       # handle taxes
1155       ###
1156
1157       unless ( $discount_show_always ) {
1158           my $error = 
1159             $self->_handle_taxes($part_pkg, $taxlisthash, $cust_bill_pkg, $cust_pkg, $options{invoice_time}, $real_pkgpart, \%options);
1160           return $error if $error;
1161       }
1162
1163       $cust_bill_pkg->set_display(   part_pkg     => $part_pkg,
1164                                      real_pkgpart => $real_pkgpart,
1165                                  );
1166
1167       push @$cust_bill_pkgs, $cust_bill_pkg;
1168
1169     } #if $setup != 0 || $recur != 0
1170       
1171   } #if $line_items
1172
1173   '';
1174
1175 }
1176
1177 sub _handle_taxes {
1178   my $self = shift;
1179   my $part_pkg = shift;
1180   my $taxlisthash = shift;
1181   my $cust_bill_pkg = shift;
1182   my $cust_pkg = shift;
1183   my $invoice_time = shift;
1184   my $real_pkgpart = shift;
1185   my $options = shift;
1186
1187   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
1188
1189   my %cust_bill_pkg = ();
1190   my %taxes = ();
1191     
1192   my @classes;
1193   #push @classes, $cust_bill_pkg->usage_classes if $cust_bill_pkg->type eq 'U';
1194   push @classes, $cust_bill_pkg->usage_classes if $cust_bill_pkg->usage;
1195   push @classes, 'setup' if ($cust_bill_pkg->setup && !$options->{cancel});
1196   push @classes, 'recur' if ($cust_bill_pkg->recur && !$options->{cancel});
1197
1198   if ( $self->tax !~ /Y/i && $self->payby ne 'COMP' ) {
1199
1200     if ( $conf->exists('enable_taxproducts')
1201          && ( scalar($part_pkg->part_pkg_taxoverride)
1202               || $part_pkg->has_taxproduct
1203             )
1204        )
1205     {
1206
1207       foreach my $class (@classes) {
1208         my $err_or_ref = $self->_gather_taxes( $part_pkg, $class, $cust_pkg );
1209         return $err_or_ref unless ref($err_or_ref);
1210         $taxes{$class} = $err_or_ref;
1211       }
1212
1213       unless (exists $taxes{''}) {
1214         my $err_or_ref = $self->_gather_taxes( $part_pkg, '', $cust_pkg );
1215         return $err_or_ref unless ref($err_or_ref);
1216         $taxes{''} = $err_or_ref;
1217       }
1218
1219     } else {
1220
1221       my @loc_keys = qw( district city county state country );
1222       my %taxhash;
1223       if ( $conf->exists('tax-pkg_address') && $cust_pkg->locationnum ) {
1224         my $cust_location = $cust_pkg->cust_location;
1225         %taxhash = map { $_ => $cust_location->$_()    } @loc_keys;
1226       } else {
1227         my $prefix = 
1228           ( $conf->exists('tax-ship_address') && length($self->ship_last) )
1229           ? 'ship_'
1230           : '';
1231         %taxhash = map { $_ => $self->get("$prefix$_") } @loc_keys;
1232         # special case--there's no 'ship_district' field
1233         $taxhash{'district'} = $self->get('district');
1234       }
1235
1236       $taxhash{'taxclass'} = $part_pkg->taxclass;
1237
1238       my @taxes = ();
1239       my %taxhash_elim = %taxhash;
1240       my @elim = qw( district city county state );
1241       do { 
1242
1243         #first try a match with taxclass
1244         @taxes = qsearch( 'cust_main_county', \%taxhash_elim );
1245
1246         if ( !scalar(@taxes) && $taxhash_elim{'taxclass'} ) {
1247           #then try a match without taxclass
1248           my %no_taxclass = %taxhash_elim;
1249           $no_taxclass{ 'taxclass' } = '';
1250           @taxes = qsearch( 'cust_main_county', \%no_taxclass );
1251         }
1252
1253         $taxhash_elim{ shift(@elim) } = '';
1254
1255       } while ( !scalar(@taxes) && scalar(@elim) );
1256
1257       @taxes = grep { ! $_->taxname or ! $self->tax_exemption($_->taxname) }
1258                     @taxes
1259         if $self->cust_main_exemption; #just to be safe
1260
1261       if ( $conf->exists('tax-pkg_address') && $cust_pkg->locationnum ) {
1262         foreach (@taxes) {
1263           $_->set('pkgnum',      $cust_pkg->pkgnum );
1264           $_->set('locationnum', $cust_pkg->locationnum );
1265         }
1266       }
1267
1268       $taxes{''} = [ @taxes ];
1269       $taxes{'setup'} = [ @taxes ];
1270       $taxes{'recur'} = [ @taxes ];
1271       $taxes{$_} = [ @taxes ] foreach (@classes);
1272
1273       # # maybe eliminate this entirely, along with all the 0% records
1274       # unless ( @taxes ) {
1275       #   return
1276       #     "fatal: can't find tax rate for state/county/country/taxclass ".
1277       #     join('/', map $taxhash{$_}, qw(state county country taxclass) );
1278       # }
1279
1280     } #if $conf->exists('enable_taxproducts') ...
1281
1282   }
1283
1284   my %tax_cust_bill_pkg = $cust_bill_pkg->disintegrate;
1285   foreach my $key (keys %tax_cust_bill_pkg) {
1286     my @taxes = @{ $taxes{$key} || [] };
1287     my $tax_cust_bill_pkg = $tax_cust_bill_pkg{$key};
1288
1289     my %localtaxlisthash = ();
1290     foreach my $tax ( @taxes ) {
1291
1292       my $taxname = ref( $tax ). ' '. $tax->taxnum;
1293 #      $taxname .= ' pkgnum'. $cust_pkg->pkgnum.
1294 #                  ' locationnum'. $cust_pkg->locationnum
1295 #        if $conf->exists('tax-pkg_address') && $cust_pkg->locationnum;
1296
1297       $taxlisthash->{ $taxname } ||= [ $tax ];
1298       push @{ $taxlisthash->{ $taxname  } }, $tax_cust_bill_pkg;
1299
1300       $localtaxlisthash{ $taxname } ||= [ $tax ];
1301       push @{ $localtaxlisthash{ $taxname  } }, $tax_cust_bill_pkg;
1302
1303     }
1304
1305     warn "finding taxed taxes...\n" if $DEBUG > 2;
1306     foreach my $tax ( keys %localtaxlisthash ) {
1307       my $tax_object = shift @{ $localtaxlisthash{$tax} };
1308       warn "found possible taxed tax ". $tax_object->taxname. " we call $tax\n"
1309         if $DEBUG > 2;
1310       next unless $tax_object->can('tax_on_tax');
1311
1312       foreach my $tot ( $tax_object->tax_on_tax( $self ) ) {
1313         my $totname = ref( $tot ). ' '. $tot->taxnum;
1314
1315         warn "checking $totname which we call ". $tot->taxname. " as applicable\n"
1316           if $DEBUG > 2;
1317         next unless exists( $localtaxlisthash{ $totname } ); # only increase
1318                                                              # existing taxes
1319         warn "adding $totname to taxed taxes\n" if $DEBUG > 2;
1320         my $hashref_or_error = 
1321           $tax_object->taxline( $localtaxlisthash{$tax},
1322                                 'custnum'      => $self->custnum,
1323                                 'invoice_time' => $invoice_time,
1324                               );
1325         return $hashref_or_error
1326           unless ref($hashref_or_error);
1327         
1328         $taxlisthash->{ $totname } ||= [ $tot ];
1329         push @{ $taxlisthash->{ $totname  } }, $hashref_or_error->{amount};
1330
1331       }
1332     }
1333
1334   }
1335
1336   '';
1337 }
1338
1339 sub _gather_taxes {
1340   my $self = shift;
1341   my $part_pkg = shift;
1342   my $class = shift;
1343   my $cust_pkg = shift;
1344
1345   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
1346
1347   my $geocode;
1348   if ( $cust_pkg->locationnum && $conf->exists('tax-pkg_address') ) {
1349     $geocode = $cust_pkg->cust_location->geocode('cch');
1350   } else {
1351     $geocode = $self->geocode('cch');
1352   }
1353
1354   my @taxes = ();
1355
1356   my @taxclassnums = map { $_->taxclassnum }
1357                      $part_pkg->part_pkg_taxoverride($class);
1358
1359   unless (@taxclassnums) {
1360     @taxclassnums = map { $_->taxclassnum }
1361                     grep { $_->taxable eq 'Y' }
1362                     $part_pkg->part_pkg_taxrate('cch', $geocode, $class);
1363   }
1364   warn "Found taxclassnum values of ". join(',', @taxclassnums)
1365     if $DEBUG;
1366
1367   my $extra_sql =
1368     "AND (".
1369     join(' OR ', map { "taxclassnum = $_" } @taxclassnums ). ")";
1370
1371   @taxes = qsearch({ 'table' => 'tax_rate',
1372                      'hashref' => { 'geocode' => $geocode, },
1373                      'extra_sql' => $extra_sql,
1374                   })
1375     if scalar(@taxclassnums);
1376
1377   warn "Found taxes ".
1378        join(',', map{ ref($_). " ". $_->get($_->primary_key) } @taxes). "\n" 
1379    if $DEBUG;
1380
1381   [ @taxes ];
1382
1383 }
1384
1385 =item collect [ HASHREF | OPTION => VALUE ... ]
1386
1387 (Attempt to) collect money for this customer's outstanding invoices (see
1388 L<FS::cust_bill>).  Usually used after the bill method.
1389
1390 Actions are now triggered by billing events; see L<FS::part_event> and the
1391 billing events web interface.  Old-style invoice events (see
1392 L<FS::part_bill_event>) have been deprecated.
1393
1394 If there is an error, returns the error, otherwise returns false.
1395
1396 Options are passed as name-value pairs.
1397
1398 Currently available options are:
1399
1400 =over 4
1401
1402 =item invoice_time
1403
1404 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.
1405
1406 =item retry
1407
1408 Retry card/echeck/LEC transactions even when not scheduled by invoice events.
1409
1410 =item check_freq
1411
1412 "1d" for the traditional, daily events (the default), or "1m" for the new monthly events (part_event.check_freq)
1413
1414 =item quiet
1415
1416 set true to surpress email card/ACH decline notices.
1417
1418 =item debug
1419
1420 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)
1421
1422 =back
1423
1424 # =item payby
1425 #
1426 # allows for one time override of normal customer billing method
1427
1428 =cut
1429
1430 sub collect {
1431   my( $self, %options ) = @_;
1432
1433   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
1434
1435   my $invoice_time = $options{'invoice_time'} || time;
1436
1437   #put below somehow?
1438   local $SIG{HUP} = 'IGNORE';
1439   local $SIG{INT} = 'IGNORE';
1440   local $SIG{QUIT} = 'IGNORE';
1441   local $SIG{TERM} = 'IGNORE';
1442   local $SIG{TSTP} = 'IGNORE';
1443   local $SIG{PIPE} = 'IGNORE';
1444
1445   my $oldAutoCommit = $FS::UID::AutoCommit;
1446   local $FS::UID::AutoCommit = 0;
1447   my $dbh = dbh;
1448
1449   $self->select_for_update; #mutex
1450
1451   if ( $DEBUG ) {
1452     my $balance = $self->balance;
1453     warn "$me collect customer ". $self->custnum. ": balance $balance\n"
1454   }
1455
1456   if ( exists($options{'retry_card'}) ) {
1457     carp 'retry_card option passed to collect is deprecated; use retry';
1458     $options{'retry'} ||= $options{'retry_card'};
1459   }
1460   if ( exists($options{'retry'}) && $options{'retry'} ) {
1461     my $error = $self->retry_realtime;
1462     if ( $error ) {
1463       $dbh->rollback if $oldAutoCommit;
1464       return $error;
1465     }
1466   }
1467
1468   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1469
1470   #never want to roll back an event just because it returned an error
1471   local $FS::UID::AutoCommit = 1; #$oldAutoCommit;
1472
1473   $self->do_cust_event(
1474     'debug'      => ( $options{'debug'} || 0 ),
1475     'time'       => $invoice_time,
1476     'check_freq' => $options{'check_freq'},
1477     'stage'      => 'collect',
1478   );
1479
1480 }
1481
1482 =item retry_realtime
1483
1484 Schedules realtime / batch  credit card / electronic check / LEC billing
1485 events for for retry.  Useful if card information has changed or manual
1486 retry is desired.  The 'collect' method must be called to actually retry
1487 the transaction.
1488
1489 Implementation details: For either this customer, or for each of this
1490 customer's open invoices, changes the status of the first "done" (with
1491 statustext error) realtime processing event to "failed".
1492
1493 =cut
1494
1495 sub retry_realtime {
1496   my $self = shift;
1497
1498   local $SIG{HUP} = 'IGNORE';
1499   local $SIG{INT} = 'IGNORE';
1500   local $SIG{QUIT} = 'IGNORE';
1501   local $SIG{TERM} = 'IGNORE';
1502   local $SIG{TSTP} = 'IGNORE';
1503   local $SIG{PIPE} = 'IGNORE';
1504
1505   my $oldAutoCommit = $FS::UID::AutoCommit;
1506   local $FS::UID::AutoCommit = 0;
1507   my $dbh = dbh;
1508
1509   #a little false laziness w/due_cust_event (not too bad, really)
1510
1511   my $join = FS::part_event_condition->join_conditions_sql;
1512   my $order = FS::part_event_condition->order_conditions_sql;
1513   my $mine = 
1514   '( '
1515    . join ( ' OR ' , map { 
1516     "( part_event.eventtable = " . dbh->quote($_) 
1517     . " AND tablenum IN( SELECT " . dbdef->table($_)->primary_key . " from $_ where custnum = " . dbh->quote( $self->custnum ) . "))" ;
1518    } FS::part_event->eventtables)
1519    . ') ';
1520
1521   #here is the agent virtualization
1522   my $agent_virt = " (    part_event.agentnum IS NULL
1523                        OR part_event.agentnum = ". $self->agentnum. ' )';
1524
1525   #XXX this shouldn't be hardcoded, actions should declare it...
1526   my @realtime_events = qw(
1527     cust_bill_realtime_card
1528     cust_bill_realtime_check
1529     cust_bill_realtime_lec
1530     cust_bill_batch
1531   );
1532
1533   my $is_realtime_event =
1534     ' part_event.action IN ( '.
1535         join(',', map "'$_'", @realtime_events ).
1536     ' ) ';
1537
1538   my $batch_or_statustext =
1539     "( part_event.action = 'cust_bill_batch'
1540        OR ( statustext IS NOT NULL AND statustext != '' )
1541      )";
1542
1543
1544   my @cust_event = qsearch({
1545     'table'     => 'cust_event',
1546     'select'    => 'cust_event.*',
1547     'addl_from' => "LEFT JOIN part_event USING ( eventpart ) $join",
1548     'hashref'   => { 'status' => 'done' },
1549     'extra_sql' => " AND $batch_or_statustext ".
1550                    " AND $mine AND $is_realtime_event AND $agent_virt $order" # LIMIT 1"
1551   });
1552
1553   my %seen_invnum = ();
1554   foreach my $cust_event (@cust_event) {
1555
1556     #max one for the customer, one for each open invoice
1557     my $cust_X = $cust_event->cust_X;
1558     next if $seen_invnum{ $cust_event->part_event->eventtable eq 'cust_bill'
1559                           ? $cust_X->invnum
1560                           : 0
1561                         }++
1562          or $cust_event->part_event->eventtable eq 'cust_bill'
1563             && ! $cust_X->owed;
1564
1565     my $error = $cust_event->retry;
1566     if ( $error ) {
1567       $dbh->rollback if $oldAutoCommit;
1568       return "error scheduling event for retry: $error";
1569     }
1570
1571   }
1572
1573   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1574   '';
1575
1576 }
1577
1578 =item do_cust_event [ HASHREF | OPTION => VALUE ... ]
1579
1580 Runs billing events; see L<FS::part_event> and the billing events web
1581 interface.
1582
1583 If there is an error, returns the error, otherwise returns false.
1584
1585 Options are passed as name-value pairs.
1586
1587 Currently available options are:
1588
1589 =over 4
1590
1591 =item time
1592
1593 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.
1594
1595 =item check_freq
1596
1597 "1d" for the traditional, daily events (the default), or "1m" for the new monthly events (part_event.check_freq)
1598
1599 =item stage
1600
1601 "collect" (the default) or "pre-bill"
1602
1603 =item quiet
1604  
1605 set true to surpress email card/ACH decline notices.
1606
1607 =item debug
1608
1609 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)
1610
1611 =back
1612 =cut
1613
1614 # =item payby
1615 #
1616 # allows for one time override of normal customer billing method
1617
1618 # =item retry
1619 #
1620 # Retry card/echeck/LEC transactions even when not scheduled by invoice events.
1621
1622 sub do_cust_event {
1623   my( $self, %options ) = @_;
1624
1625   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
1626
1627   my $time = $options{'time'} || time;
1628
1629   #put below somehow?
1630   local $SIG{HUP} = 'IGNORE';
1631   local $SIG{INT} = 'IGNORE';
1632   local $SIG{QUIT} = 'IGNORE';
1633   local $SIG{TERM} = 'IGNORE';
1634   local $SIG{TSTP} = 'IGNORE';
1635   local $SIG{PIPE} = 'IGNORE';
1636
1637   my $oldAutoCommit = $FS::UID::AutoCommit;
1638   local $FS::UID::AutoCommit = 0;
1639   my $dbh = dbh;
1640
1641   $self->select_for_update; #mutex
1642
1643   if ( $DEBUG ) {
1644     my $balance = $self->balance;
1645     warn "$me do_cust_event customer ". $self->custnum. ": balance $balance\n"
1646   }
1647
1648 #  if ( exists($options{'retry_card'}) ) {
1649 #    carp 'retry_card option passed to collect is deprecated; use retry';
1650 #    $options{'retry'} ||= $options{'retry_card'};
1651 #  }
1652 #  if ( exists($options{'retry'}) && $options{'retry'} ) {
1653 #    my $error = $self->retry_realtime;
1654 #    if ( $error ) {
1655 #      $dbh->rollback if $oldAutoCommit;
1656 #      return $error;
1657 #    }
1658 #  }
1659
1660   # false laziness w/pay_batch::import_results
1661
1662   my $due_cust_event = $self->due_cust_event(
1663     'debug'      => ( $options{'debug'} || 0 ),
1664     'time'       => $time,
1665     'check_freq' => $options{'check_freq'},
1666     'stage'      => ( $options{'stage'} || 'collect' ),
1667   );
1668   unless( ref($due_cust_event) ) {
1669     $dbh->rollback if $oldAutoCommit;
1670     return $due_cust_event;
1671   }
1672
1673   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1674   #never want to roll back an event just because it or a different one
1675   # returned an error
1676   local $FS::UID::AutoCommit = 1; #$oldAutoCommit;
1677
1678   foreach my $cust_event ( @$due_cust_event ) {
1679
1680     #XXX lock event
1681     
1682     #re-eval event conditions (a previous event could have changed things)
1683     unless ( $cust_event->test_conditions( 'time' => $time ) ) {
1684       #don't leave stray "new/locked" records around
1685       my $error = $cust_event->delete;
1686       return $error if $error;
1687       next;
1688     }
1689
1690     {
1691       local $FS::cust_main::Billing_Realtime::realtime_bop_decline_quiet = 1
1692         if $options{'quiet'};
1693       warn "  running cust_event ". $cust_event->eventnum. "\n"
1694         if $DEBUG > 1;
1695
1696       #if ( my $error = $cust_event->do_event(%options) ) { #XXX %options?
1697       if ( my $error = $cust_event->do_event( 'time' => $time ) ) {
1698         #XXX wtf is this?  figure out a proper dealio with return value
1699         #from do_event
1700         return $error;
1701       }
1702     }
1703
1704   }
1705
1706   '';
1707
1708 }
1709
1710 =item due_cust_event [ HASHREF | OPTION => VALUE ... ]
1711
1712 Inserts database records for and returns an ordered listref of new events due
1713 for this customer, as FS::cust_event objects (see L<FS::cust_event>).  If no
1714 events are due, an empty listref is returned.  If there is an error, returns a
1715 scalar error message.
1716
1717 To actually run the events, call each event's test_condition method, and if
1718 still true, call the event's do_event method.
1719
1720 Options are passed as a hashref or as a list of name-value pairs.  Available
1721 options are:
1722
1723 =over 4
1724
1725 =item check_freq
1726
1727 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.
1728
1729 =item stage
1730
1731 "collect" (the default) or "pre-bill"
1732
1733 =item time
1734
1735 "Current time" for the events.
1736
1737 =item debug
1738
1739 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)
1740
1741 =item eventtable
1742
1743 Only return events for the specified eventtable (by default, events of all eventtables are returned)
1744
1745 =item objects
1746
1747 Explicitly pass the objects to be tested (typically used with eventtable).
1748
1749 =item testonly
1750
1751 Set to true to return the objects, but not actually insert them into the
1752 database.
1753
1754 =back
1755
1756 =cut
1757
1758 sub due_cust_event {
1759   my $self = shift;
1760   my %opt = ref($_[0]) ? %{ $_[0] } : @_;
1761
1762   #???
1763   #my $DEBUG = $opt{'debug'}
1764   $opt{'debug'} ||= 0; # silence some warnings
1765   local($DEBUG) = $opt{'debug'}
1766     if $opt{'debug'} > $DEBUG;
1767   $DEBUG = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
1768
1769   warn "$me due_cust_event called with options ".
1770        join(', ', map { "$_: $opt{$_}" } keys %opt). "\n"
1771     if $DEBUG;
1772
1773   $opt{'time'} ||= time;
1774
1775   local $SIG{HUP} = 'IGNORE';
1776   local $SIG{INT} = 'IGNORE';
1777   local $SIG{QUIT} = 'IGNORE';
1778   local $SIG{TERM} = 'IGNORE';
1779   local $SIG{TSTP} = 'IGNORE';
1780   local $SIG{PIPE} = 'IGNORE';
1781
1782   my $oldAutoCommit = $FS::UID::AutoCommit;
1783   local $FS::UID::AutoCommit = 0;
1784   my $dbh = dbh;
1785
1786   $self->select_for_update #mutex
1787     unless $opt{testonly};
1788
1789   ###
1790   # find possible events (initial search)
1791   ###
1792   
1793   my @cust_event = ();
1794
1795   my @eventtable = $opt{'eventtable'}
1796                      ? ( $opt{'eventtable'} )
1797                      : FS::part_event->eventtables_runorder;
1798
1799   my $check_freq = $opt{'check_freq'} || '1d';
1800
1801   foreach my $eventtable ( @eventtable ) {
1802
1803     my @objects;
1804     if ( $opt{'objects'} ) {
1805
1806       @objects = @{ $opt{'objects'} };
1807
1808     } else {
1809
1810       #my @objects = $self->$eventtable(); # sub cust_main { @{ [ $self ] }; }
1811       if ( $eventtable eq 'cust_main' ) {
1812         @objects = ( $self );
1813       } else {
1814
1815         my $cm_join =
1816           "LEFT JOIN cust_main USING ( custnum )";
1817
1818         #some false laziness w/Cron::bill bill_where
1819
1820         my $join  = FS::part_event_condition->join_conditions_sql( $eventtable);
1821         my $where = FS::part_event_condition->where_conditions_sql($eventtable,
1822                                                            'time'=>$opt{'time'},
1823                                                                   );
1824         $where = $where ? "AND $where" : '';
1825
1826         my $are_part_event = 
1827           "EXISTS ( SELECT 1 FROM part_event $join
1828                       WHERE check_freq = '$check_freq'
1829                         AND eventtable = '$eventtable'
1830                         AND ( disabled = '' OR disabled IS NULL )
1831                         $where
1832                   )
1833           ";
1834         #eofalse
1835
1836         @objects = $self->$eventtable(
1837                      'addl_from' => $cm_join,
1838                      'extra_sql' => " AND $are_part_event",
1839                    );
1840       }
1841
1842     }
1843
1844     my @e_cust_event = ();
1845
1846     my $cross = "CROSS JOIN $eventtable";
1847     $cross .= ' LEFT JOIN cust_main USING ( custnum )'
1848       unless $eventtable eq 'cust_main';
1849
1850     foreach my $object ( @objects ) {
1851
1852       #this first search uses the condition_sql magic for optimization.
1853       #the more possible events we can eliminate in this step the better
1854
1855       my $cross_where = '';
1856       my $pkey = $object->primary_key;
1857       $cross_where = "$eventtable.$pkey = ". $object->$pkey();
1858
1859       my $join = FS::part_event_condition->join_conditions_sql( $eventtable );
1860       my $extra_sql =
1861         FS::part_event_condition->where_conditions_sql( $eventtable,
1862                                                         'time'=>$opt{'time'}
1863                                                       );
1864       my $order = FS::part_event_condition->order_conditions_sql( $eventtable );
1865
1866       $extra_sql = "AND $extra_sql" if $extra_sql;
1867
1868       #here is the agent virtualization
1869       $extra_sql .= " AND (    part_event.agentnum IS NULL
1870                             OR part_event.agentnum = ". $self->agentnum. ' )';
1871
1872       $extra_sql .= " $order";
1873
1874       warn "searching for events for $eventtable ". $object->$pkey. "\n"
1875         if $opt{'debug'} > 2;
1876       my @part_event = qsearch( {
1877         'debug'     => ( $opt{'debug'} > 3 ? 1 : 0 ),
1878         'select'    => 'part_event.*',
1879         'table'     => 'part_event',
1880         'addl_from' => "$cross $join",
1881         'hashref'   => { 'check_freq' => $check_freq,
1882                          'eventtable' => $eventtable,
1883                          'disabled'   => '',
1884                        },
1885         'extra_sql' => "AND $cross_where $extra_sql",
1886       } );
1887
1888       if ( $DEBUG > 2 ) {
1889         my $pkey = $object->primary_key;
1890         warn "      ". scalar(@part_event).
1891              " possible events found for $eventtable ". $object->$pkey(). "\n";
1892       }
1893
1894       push @e_cust_event, map { $_->new_cust_event($object) } @part_event;
1895
1896     }
1897
1898     warn "    ". scalar(@e_cust_event).
1899          " subtotal possible cust events found for $eventtable\n"
1900       if $DEBUG > 1;
1901
1902     push @cust_event, @e_cust_event;
1903
1904   }
1905
1906   warn "  ". scalar(@cust_event).
1907        " total possible cust events found in initial search\n"
1908     if $DEBUG; # > 1;
1909
1910
1911   ##
1912   # test stage
1913   ##
1914
1915   $opt{stage} ||= 'collect';
1916   @cust_event =
1917     grep { my $stage = $_->part_event->event_stage;
1918            $opt{stage} eq $stage or ( ! $stage && $opt{stage} eq 'collect' )
1919          }
1920          @cust_event;
1921
1922   ##
1923   # test conditions
1924   ##
1925   
1926   my %unsat = ();
1927
1928   @cust_event = grep $_->test_conditions( 'time'          => $opt{'time'},
1929                                           'stats_hashref' => \%unsat ),
1930                      @cust_event;
1931
1932   warn "  ". scalar(@cust_event). " cust events left satisfying conditions\n"
1933     if $DEBUG; # > 1;
1934
1935   warn "    invalid conditions not eliminated with condition_sql:\n".
1936        join('', map "      $_: ".$unsat{$_}."\n", keys %unsat )
1937     if keys %unsat && $DEBUG; # > 1;
1938
1939   ##
1940   # insert
1941   ##
1942
1943   unless( $opt{testonly} ) {
1944     foreach my $cust_event ( @cust_event ) {
1945
1946       my $error = $cust_event->insert();
1947       if ( $error ) {
1948         $dbh->rollback if $oldAutoCommit;
1949         return $error;
1950       }
1951                                        
1952     }
1953   }
1954
1955   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1956
1957   ##
1958   # return
1959   ##
1960
1961   warn "  returning events: ". Dumper(@cust_event). "\n"
1962     if $DEBUG > 2;
1963
1964   \@cust_event;
1965
1966 }
1967
1968 =item apply_payments_and_credits [ OPTION => VALUE ... ]
1969
1970 Applies unapplied payments and credits.
1971
1972 In most cases, this new method should be used in place of sequential
1973 apply_payments and apply_credits methods.
1974
1975 A hash of optional arguments may be passed.  Currently "manual" is supported.
1976 If true, a payment receipt is sent instead of a statement when
1977 'payment_receipt_email' configuration option is set.
1978
1979 If there is an error, returns the error, otherwise returns false.
1980
1981 =cut
1982
1983 sub apply_payments_and_credits {
1984   my( $self, %options ) = @_;
1985
1986   local $SIG{HUP} = 'IGNORE';
1987   local $SIG{INT} = 'IGNORE';
1988   local $SIG{QUIT} = 'IGNORE';
1989   local $SIG{TERM} = 'IGNORE';
1990   local $SIG{TSTP} = 'IGNORE';
1991   local $SIG{PIPE} = 'IGNORE';
1992
1993   my $oldAutoCommit = $FS::UID::AutoCommit;
1994   local $FS::UID::AutoCommit = 0;
1995   my $dbh = dbh;
1996
1997   $self->select_for_update; #mutex
1998
1999   foreach my $cust_bill ( $self->open_cust_bill ) {
2000     my $error = $cust_bill->apply_payments_and_credits(%options);
2001     if ( $error ) {
2002       $dbh->rollback if $oldAutoCommit;
2003       return "Error applying: $error";
2004     }
2005   }
2006
2007   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
2008   ''; #no error
2009
2010 }
2011
2012 =item apply_credits OPTION => VALUE ...
2013
2014 Applies (see L<FS::cust_credit_bill>) unapplied credits (see L<FS::cust_credit>)
2015 to outstanding invoice balances in chronological order (or reverse
2016 chronological order if the I<order> option is set to B<newest>) and returns the
2017 value of any remaining unapplied credits available for refund (see
2018 L<FS::cust_refund>).
2019
2020 Dies if there is an error.
2021
2022 =cut
2023
2024 sub apply_credits {
2025   my $self = shift;
2026   my %opt = @_;
2027
2028   local $SIG{HUP} = 'IGNORE';
2029   local $SIG{INT} = 'IGNORE';
2030   local $SIG{QUIT} = 'IGNORE';
2031   local $SIG{TERM} = 'IGNORE';
2032   local $SIG{TSTP} = 'IGNORE';
2033   local $SIG{PIPE} = 'IGNORE';
2034
2035   my $oldAutoCommit = $FS::UID::AutoCommit;
2036   local $FS::UID::AutoCommit = 0;
2037   my $dbh = dbh;
2038
2039   $self->select_for_update; #mutex
2040
2041   unless ( $self->total_unapplied_credits ) {
2042     $dbh->commit or die $dbh->errstr if $oldAutoCommit;
2043     return 0;
2044   }
2045
2046   my @credits = sort { $b->_date <=> $a->_date} (grep { $_->credited > 0 }
2047       qsearch('cust_credit', { 'custnum' => $self->custnum } ) );
2048
2049   my @invoices = $self->open_cust_bill;
2050   @invoices = sort { $b->_date <=> $a->_date } @invoices
2051     if defined($opt{'order'}) && $opt{'order'} eq 'newest';
2052
2053   if ( $conf->exists('pkg-balances') ) {
2054     # limit @credits to those w/ a pkgnum grepped from $self
2055     my %pkgnums = ();
2056     foreach my $i (@invoices) {
2057       foreach my $li ( $i->cust_bill_pkg ) {
2058         $pkgnums{$li->pkgnum} = 1;
2059       }
2060     }
2061     @credits = grep { ! $_->pkgnum || $pkgnums{$_->pkgnum} } @credits;
2062   }
2063
2064   my $credit;
2065
2066   foreach my $cust_bill ( @invoices ) {
2067
2068     if ( !defined($credit) || $credit->credited == 0) {
2069       $credit = pop @credits or last;
2070     }
2071
2072     my $owed;
2073     if ( $conf->exists('pkg-balances') && $credit->pkgnum ) {
2074       $owed = $cust_bill->owed_pkgnum($credit->pkgnum);
2075     } else {
2076       $owed = $cust_bill->owed;
2077     }
2078     unless ( $owed > 0 ) {
2079       push @credits, $credit;
2080       next;
2081     }
2082
2083     my $amount = min( $credit->credited, $owed );
2084     
2085     my $cust_credit_bill = new FS::cust_credit_bill ( {
2086       'crednum' => $credit->crednum,
2087       'invnum'  => $cust_bill->invnum,
2088       'amount'  => $amount,
2089     } );
2090     $cust_credit_bill->pkgnum( $credit->pkgnum )
2091       if $conf->exists('pkg-balances') && $credit->pkgnum;
2092     my $error = $cust_credit_bill->insert;
2093     if ( $error ) {
2094       $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
2095       die $error;
2096     }
2097     
2098     redo if ($cust_bill->owed > 0) && ! $conf->exists('pkg-balances');
2099
2100   }
2101
2102   my $total_unapplied_credits = $self->total_unapplied_credits;
2103
2104   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
2105
2106   return $total_unapplied_credits;
2107 }
2108
2109 =item apply_payments  [ OPTION => VALUE ... ]
2110
2111 Applies (see L<FS::cust_bill_pay>) unapplied payments (see L<FS::cust_pay>)
2112 to outstanding invoice balances in chronological order.
2113
2114  #and returns the value of any remaining unapplied payments.
2115
2116 A hash of optional arguments may be passed.  Currently "manual" is supported.
2117 If true, a payment receipt is sent instead of a statement when
2118 'payment_receipt_email' configuration option is set.
2119
2120 Dies if there is an error.
2121
2122 =cut
2123
2124 sub apply_payments {
2125   my( $self, %options ) = @_;
2126
2127   local $SIG{HUP} = 'IGNORE';
2128   local $SIG{INT} = 'IGNORE';
2129   local $SIG{QUIT} = 'IGNORE';
2130   local $SIG{TERM} = 'IGNORE';
2131   local $SIG{TSTP} = 'IGNORE';
2132   local $SIG{PIPE} = 'IGNORE';
2133
2134   my $oldAutoCommit = $FS::UID::AutoCommit;
2135   local $FS::UID::AutoCommit = 0;
2136   my $dbh = dbh;
2137
2138   $self->select_for_update; #mutex
2139
2140   #return 0 unless
2141
2142   my @payments = sort { $b->_date <=> $a->_date }
2143                  grep { $_->unapplied > 0 }
2144                  $self->cust_pay;
2145
2146   my @invoices = sort { $a->_date <=> $b->_date}
2147                  grep { $_->owed > 0 }
2148                  $self->cust_bill;
2149
2150   if ( $conf->exists('pkg-balances') ) {
2151     # limit @payments to those w/ a pkgnum grepped from $self
2152     my %pkgnums = ();
2153     foreach my $i (@invoices) {
2154       foreach my $li ( $i->cust_bill_pkg ) {
2155         $pkgnums{$li->pkgnum} = 1;
2156       }
2157     }
2158     @payments = grep { ! $_->pkgnum || $pkgnums{$_->pkgnum} } @payments;
2159   }
2160
2161   my $payment;
2162
2163   foreach my $cust_bill ( @invoices ) {
2164
2165     if ( !defined($payment) || $payment->unapplied == 0 ) {
2166       $payment = pop @payments or last;
2167     }
2168
2169     my $owed;
2170     if ( $conf->exists('pkg-balances') && $payment->pkgnum ) {
2171       $owed = $cust_bill->owed_pkgnum($payment->pkgnum);
2172     } else {
2173       $owed = $cust_bill->owed;
2174     }
2175     unless ( $owed > 0 ) {
2176       push @payments, $payment;
2177       next;
2178     }
2179
2180     my $amount = min( $payment->unapplied, $owed );
2181
2182     my $cbp = {
2183       'paynum' => $payment->paynum,
2184       'invnum' => $cust_bill->invnum,
2185       'amount' => $amount,
2186     };
2187     $cbp->{_date} = $payment->_date 
2188         if $options{'manual'} && $options{'backdate_application'};
2189     my $cust_bill_pay = new FS::cust_bill_pay($cbp);
2190     $cust_bill_pay->pkgnum( $payment->pkgnum )
2191       if $conf->exists('pkg-balances') && $payment->pkgnum;
2192     my $error = $cust_bill_pay->insert(%options);
2193     if ( $error ) {
2194       $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
2195       die $error;
2196     }
2197
2198     redo if ( $cust_bill->owed > 0) && ! $conf->exists('pkg-balances');
2199
2200   }
2201
2202   my $total_unapplied_payments = $self->total_unapplied_payments;
2203
2204   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
2205
2206   return $total_unapplied_payments;
2207 }
2208
2209 =back
2210
2211 =head1 FLOW
2212
2213   bill_and_collect
2214
2215     cancel_expired_pkgs
2216     suspend_adjourned_pkgs
2217     unsuspend_resumed_pkgs
2218
2219     bill
2220       (do_cust_event pre-bill)
2221       _make_lines
2222         _handle_taxes
2223           (vendor-only) _gather_taxes
2224       _omit_zero_value_bundles
2225       calculate_taxes
2226
2227     apply_payments_and_credits
2228     collect
2229       do_cust_event
2230         due_cust_event
2231
2232 =head1 BUGS
2233
2234 =head1 SEE ALSO
2235
2236 L<FS::cust_main>, L<FS::cust_main::Billing_Realtime>
2237
2238 =cut
2239
2240 1;