use credit_lineitems logic for unused-time credits, #42729
[freeside.git] / FS / FS / cust_credit.pm
1 package FS::cust_credit;
2 use base qw( FS::otaker_Mixin FS::cust_main_Mixin FS::reason_Mixin
3              FS::Record );
4
5 use strict;
6 use vars qw( $conf $me $DEBUG
7              $otaker_upgrade_kludge $ignore_empty_reasonnum
8            );
9 use List::Util qw( min );
10 use Date::Format;
11 use FS::UID qw( dbh );
12 use FS::Record qw( qsearch qsearchs dbdef );
13 use FS::CurrentUser;
14 use FS::cust_pkg;
15 use FS::cust_refund;
16 use FS::cust_credit_bill;
17 use FS::part_pkg;
18 use FS::reason_type;
19 use FS::reason;
20 use FS::cust_event;
21 use FS::agent;
22 use FS::sales;
23 use FS::cust_credit_void;
24 use FS::cust_bill_pkg;
25 use FS::upgrade_journal;
26
27 $me = '[ FS::cust_credit ]';
28 $DEBUG = 0;
29
30 $otaker_upgrade_kludge = 0;
31 $ignore_empty_reasonnum = 0;
32
33 #ask FS::UID to run this stuff for us later
34 $FS::UID::callback{'FS::cust_credit'} = sub { 
35
36   $conf = new FS::Conf;
37
38 };
39
40 our %reasontype_map = ( 'referral_credit_type' => 'Referral Credit',
41                         'cancel_credit_type'   => 'Cancellation Credit',
42                       );
43
44 =head1 NAME
45
46 FS::cust_credit - Object methods for cust_credit records
47
48 =head1 SYNOPSIS
49
50   use FS::cust_credit;
51
52   $record = new FS::cust_credit \%hash;
53   $record = new FS::cust_credit { 'column' => 'value' };
54
55   $error = $record->insert;
56
57   $error = $new_record->replace($old_record);
58
59   $error = $record->delete;
60
61   $error = $record->check;
62
63 =head1 DESCRIPTION
64
65 An FS::cust_credit object represents a credit; the equivalent of a negative
66 B<cust_bill> record (see L<FS::cust_bill>).  FS::cust_credit inherits from
67 FS::Record.  The following fields are currently supported:
68
69 =over 4
70
71 =item crednum
72
73 Primary key (assigned automatically for new credits)
74
75 =item custnum
76
77 Customer (see L<FS::cust_main>)
78
79 =item amount
80
81 Amount of the credit
82
83 =item _date
84
85 Specified as a UNIX timestamp; see L<perlfunc/"time">.  Also see
86 L<Time::Local> and L<Date::Parse> for conversion functions.
87
88 =item usernum
89
90 Order taker (see L<FS::access_user>)
91
92 =item reason
93
94 Text ( deprecated )
95
96 =item reasonnum
97
98 Reason (see L<FS::reason>)
99
100 =item addlinfo
101
102 Text
103
104 =item closed
105
106 Books closed flag, empty or `Y'
107
108 =item pkgnum
109
110 Desired pkgnum when using experimental package balances.
111
112 =back
113
114 =head1 METHODS
115
116 =over 4
117
118 =item new HASHREF
119
120 Creates a new credit.  To add the credit to the database, see L<"insert">.
121
122 =cut
123
124 sub table { 'cust_credit'; }
125 sub cust_linked { $_[0]->cust_main_custnum || $_[0]->custnum } 
126 sub cust_unlinked_msg {
127   my $self = shift;
128   "WARNING: can't find cust_main.custnum ". $self->custnum.
129   ' (cust_credit.crednum '. $self->crednum. ')';
130 }
131
132 =item insert [ OPTION => VALUE ... ]
133
134 Adds this credit to the database ("Posts" the credit).  If there is an error,
135 returns the error, otherwise returns false.
136
137 Ooptions are passed as a list of keys and values.  Available options:
138
139 =over 4
140
141 =item reason_type
142
143 L<FS::reason_type|Reason> type for newly-inserted reason
144
145 =item cust_credit_source_bill_pkg
146
147 An arrayref of
148 L<FS::cust_credit_source_bill_pkg|FS::cust_credit_source_bilL_pkg> objects.
149 They will have their crednum set and will be inserted along with this credit.
150
151 =back
152
153 =cut
154
155 sub insert {
156   my ($self, %options) = @_;
157
158   local $SIG{HUP} = 'IGNORE';
159   local $SIG{INT} = 'IGNORE';
160   local $SIG{QUIT} = 'IGNORE';
161   local $SIG{TERM} = 'IGNORE';
162   local $SIG{TSTP} = 'IGNORE';
163   local $SIG{PIPE} = 'IGNORE';
164
165   my $oldAutoCommit = $FS::UID::AutoCommit;
166   local $FS::UID::AutoCommit = 0;
167   my $dbh = dbh;
168
169   my $cust_main = qsearchs( 'cust_main', { 'custnum' => $self->custnum } );
170   my $old_balance = $cust_main->balance;
171
172   if (!$self->reasonnum) {
173     my $reason_text = $self->get('reason')
174       or return "reason text or existing reason required";
175     my $reason_type = $options{'reason_type'}
176       or return "reason type required";
177
178     local $@;
179     my $reason = FS::reason->new_or_existing(
180       reason => $reason_text,
181       type   => $reason_type,
182       class  => 'R',
183     );
184     if ($@) {
185       $dbh->rollback if $oldAutoCommit;
186       return "failed to set credit reason: $@";
187     }
188     $self->set('reasonnum', $reason->reasonnum);
189   }
190
191   $self->setfield('reason', '');
192
193   my $error = $self->SUPER::insert;
194   if ( $error ) {
195     $dbh->rollback if $oldAutoCommit;
196     return "error inserting $self: $error";
197   }
198
199   if ( $options{'cust_credit_source_bill_pkg'} ) {
200     foreach my $ccsbr ( @{ $options{'cust_credit_source_bill_pkg'} } ) {
201       $ccsbr->crednum( $self->crednum );
202       $error = $ccsbr->insert;
203       if ( $error ) {
204         $dbh->rollback if $oldAutoCommit;
205         return "error inserting $ccsbr: $error";
206       }
207     }
208   }
209
210   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
211
212   # possibly trigger package unsuspend, doesn't abort transaction on failure
213   $self->unsuspend_balance if $old_balance;
214
215   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
216
217   '';
218
219 }
220
221 =item delete
222
223 Unless the closed flag is set, deletes this credit and all associated
224 applications (see L<FS::cust_credit_bill>).  In most cases, you want to use
225 the void method instead to leave a record of the deleted credit.
226
227 =cut
228
229 # very similar to FS::cust_pay::delete
230 sub delete {
231   my $self = shift;
232   my %opt = @_;
233
234   return "Can't delete closed credit" if $self->closed =~ /^Y/i;
235
236   local $SIG{HUP} = 'IGNORE';
237   local $SIG{INT} = 'IGNORE';
238   local $SIG{QUIT} = 'IGNORE';
239   local $SIG{TERM} = 'IGNORE';
240   local $SIG{TSTP} = 'IGNORE';
241   local $SIG{PIPE} = 'IGNORE';
242
243   my $oldAutoCommit = $FS::UID::AutoCommit;
244   local $FS::UID::AutoCommit = 0;
245   my $dbh = dbh;
246
247   foreach my $cust_credit_bill ( $self->cust_credit_bill ) {
248     my $error = $cust_credit_bill->delete;
249     if ( $error ) {
250       $dbh->rollback if $oldAutoCommit;
251       return $error;
252     }
253   }
254
255   foreach my $cust_credit_refund ( $self->cust_credit_refund ) {
256     my $error = $cust_credit_refund->delete;
257     if ( $error ) {
258       $dbh->rollback if $oldAutoCommit;
259       return $error;
260     }
261   }
262
263   my $error = $self->SUPER::delete(@_);
264   if ( $error ) {
265     $dbh->rollback if $oldAutoCommit;
266     return $error;
267   }
268
269   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
270
271   '';
272
273 }
274
275 =item replace [ OLD_RECORD ]
276
277 You can, but probably shouldn't modify credits... 
278
279 Replaces the OLD_RECORD with this one in the database, or, if OLD_RECORD is not
280 supplied, replaces this record.  If there is an error, returns the error,
281 otherwise returns false.
282
283 =cut
284
285 sub replace {
286   my $self = shift;
287   return "Can't modify closed credit" if $self->closed =~ /^Y/i;
288   $self->SUPER::replace(@_);
289 }
290
291 =item check
292
293 Checks all fields to make sure this is a valid credit.  If there is an error,
294 returns the error, otherwise returns false.  Called by the insert and replace
295 methods.
296
297 =cut
298
299 sub check {
300   my $self = shift;
301
302   $self->usernum($FS::CurrentUser::CurrentUser->usernum) unless $self->usernum;
303
304   my $error =
305     $self->ut_numbern('crednum')
306     || $self->ut_number('custnum')
307     || $self->ut_numbern('_date')
308     || $self->ut_money('amount')
309     || $self->ut_alphan('otaker')
310     || $self->ut_textn('reason')
311     || $self->ut_textn('addlinfo')
312     || $self->ut_enum('closed', [ '', 'Y' ])
313     || $self->ut_foreign_keyn('pkgnum', 'cust_pkg', 'pkgnum')
314     || $self->ut_foreign_keyn('eventnum', 'cust_event', 'eventnum')
315     || $self->ut_foreign_keyn('commission_agentnum',  'agent', 'agentnum')
316     || $self->ut_foreign_keyn('commission_salesnum',  'sales', 'salesnum')
317     || $self->ut_foreign_keyn('commission_pkgnum', 'cust_pkg', 'pkgnum')
318     || $self->ut_foreign_keyn('commission_invnum', 'cust_bill', 'invnum')
319   ;
320   return $error if $error;
321
322   my $method = $ignore_empty_reasonnum ? 'ut_foreign_keyn' : 'ut_foreign_key';
323   $error = $self->$method('reasonnum', 'reason', 'reasonnum');
324   return $error if $error;
325
326   return "amount must be > 0 " if $self->amount <= 0;
327
328   return "amount must be greater or equal to amount applied"
329     if $self->unapplied < 0 && ! $otaker_upgrade_kludge;
330
331   return "Unknown customer"
332     unless qsearchs( 'cust_main', { 'custnum' => $self->custnum } );
333
334   $self->_date(time) unless $self->_date;
335
336   $self->SUPER::check;
337 }
338
339 =item void [ REASON ]
340
341 Voids this credit: deletes the credit and all associated applications and 
342 adds a record of the voided credit to the cust_credit_void table.
343
344 =cut
345
346 sub void {
347   my $self = shift;
348   my $reason = shift;
349
350   unless (ref($reason) || !$reason) {
351     $reason = FS::reason->new_or_existing(
352       'class'  => 'X',
353       'type'   => 'Void credit',
354       'reason' => $reason
355     );
356   }
357
358   local $SIG{HUP} = 'IGNORE';
359   local $SIG{INT} = 'IGNORE';
360   local $SIG{QUIT} = 'IGNORE';
361   local $SIG{TERM} = 'IGNORE';
362   local $SIG{TSTP} = 'IGNORE';
363   local $SIG{PIPE} = 'IGNORE';
364
365   my $oldAutoCommit = $FS::UID::AutoCommit;
366   local $FS::UID::AutoCommit = 0;
367   my $dbh = dbh;
368
369   my $cust_credit_void = new FS::cust_credit_void ( {
370       map { $_ => $self->get($_) } $self->fields
371     } );
372   $cust_credit_void->set('void_reasonnum', $reason->reasonnum) if $reason;
373   my $error = $cust_credit_void->insert;
374   if ( $error ) {
375     $dbh->rollback if $oldAutoCommit;
376     return $error;
377   }
378
379   $error = $self->delete();
380   if ( $error ) {
381     $dbh->rollback if $oldAutoCommit;
382     return $error;
383   }
384
385   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
386
387   '';
388
389 }
390
391 =item cust_credit_refund
392
393 Returns all refund applications (see L<FS::cust_credit_refund>) for this credit.
394
395 =cut
396
397 sub cust_credit_refund {
398   my $self = shift;
399   map { $_ } #return $self->num_cust_credit_refund unless wantarray;
400   sort { $a->_date <=> $b->_date }
401     qsearch( 'cust_credit_refund', { 'crednum' => $self->crednum } )
402   ;
403 }
404
405 =item cust_credit_bill
406
407 Returns all application to invoices (see L<FS::cust_credit_bill>) for this
408 credit.
409
410 =cut
411
412 sub cust_credit_bill {
413   my $self = shift;
414   map { $_ } #return $self->num_cust_credit_bill unless wantarray;
415   sort { $a->_date <=> $b->_date }
416     qsearch( 'cust_credit_bill', { 'crednum' => $self->crednum } )
417   ;
418 }
419
420 =item unapplied
421
422 Returns the amount of this credit that is still unapplied/outstanding; 
423 amount minus all refund applications (see L<FS::cust_credit_refund>) and
424 applications to invoices (see L<FS::cust_credit_bill>).
425
426 =cut
427
428 sub unapplied {
429   my $self = shift;
430   my $amount = $self->amount;
431   $amount -= $_->amount foreach ( $self->cust_credit_refund );
432   $amount -= $_->amount foreach ( $self->cust_credit_bill );
433   sprintf( "%.2f", $amount );
434 }
435
436 =item credited
437
438 Deprecated name for the unapplied method.
439
440 =cut
441
442 sub credited {
443   my $self = shift;
444   #carp "cust_credit->credited deprecated; use ->unapplied";
445   $self->unapplied(@_);
446 }
447
448 =item cust_main
449
450 Returns the customer (see L<FS::cust_main>) for this credit.
451
452 =cut
453
454 # _upgrade_data
455 #
456 # Used by FS::Upgrade to migrate to a new database.
457
458 sub _upgrade_data {  # class method
459   my ($class, %opts) = @_;
460
461   warn "$me upgrading $class\n" if $DEBUG;
462
463   $class->_upgrade_reasonnum(%opts);
464
465   if (defined dbdef->table($class->table)->column('reason')) {
466
467     warn "$me Ensuring existance of auto reasons\n" if $DEBUG;
468
469     foreach ( keys %reasontype_map ) {
470       unless ($conf->config($_)) {       # hmmmm
471 #       warn "$me Found $_ reason type lacking\n" if $DEBUG;
472 #       my $hashref = { 'class' => 'R', 'type' => $reasontype_map{$_} };
473         my $hashref = { 'class' => 'R', 'type' => 'Legacy' };
474         my $reason_type = qsearchs( 'reason_type', $hashref );
475         unless ($reason_type) {
476           $reason_type  = new FS::reason_type( $hashref );
477           my $error   = $reason_type->insert();
478           die "$class had error inserting FS::reason_type into database: $error\n"
479             if $error;
480         }
481         $conf->set($_, $reason_type->typenum);
482       }
483     }
484
485     warn "$me Ensuring commission packages have a reason type\n" if $DEBUG;
486
487     my $hashref = { 'class' => 'R', 'type' => 'Legacy' };
488     my $reason_type = qsearchs( 'reason_type', $hashref );
489     unless ($reason_type) {
490       $reason_type  = new FS::reason_type( $hashref );
491       my $error   = $reason_type->insert();
492       die "$class had error inserting FS::reason_type into database: $error\n"
493         if $error;
494     }
495
496     my @plans = qw( flat_comission flat_comission_cust flat_comission_pkg );
497     foreach my $plan ( @plans ) {
498       foreach my $pkg ( qsearch('part_pkg', { 'plan' => $plan } ) ) {
499         unless ($pkg->option('reason_type', 1) ) { 
500           my $plandata = $pkg->plandata.
501                         "reason_type=". $reason_type->typenum. "\n";
502           $pkg->plandata($plandata);
503           my $error =
504             $pkg->replace( undef,
505                            'pkg_svc' => { map { $_->svcpart => $_->quantity }
506                                           $pkg->pkg_svc
507                                         },
508                            'primary_svc' => $pkg->svcpart,
509                          );
510             die "failed setting reason_type option: $error"
511               if $error;
512         }
513       }
514     }
515   }
516
517   local($otaker_upgrade_kludge) = 1;
518   local($ignore_empty_reasonnum) = 1;
519   $class->_upgrade_otaker(%opts);
520
521   if ( !FS::upgrade_journal->is_done('cust_credit__tax_link')
522       and !$conf->config('tax_data_vendor') ) {
523     # RT#25458: fix credit line item applications that should refer to a 
524     # specific tax allocation
525     my @cust_credit_bill_pkg = qsearch({
526         table     => 'cust_credit_bill_pkg',
527         select    => 'cust_credit_bill_pkg.*',
528         addl_from => ' LEFT JOIN cust_bill_pkg USING (billpkgnum)',
529         extra_sql =>
530           'WHERE cust_credit_bill_pkg.billpkgtaxlocationnum IS NULL '.
531           'AND cust_bill_pkg.pkgnum = 0', # is a tax
532     });
533     my %tax_items;
534     my %credits;
535     foreach (@cust_credit_bill_pkg) {
536       my $billpkgnum = $_->billpkgnum;
537       $tax_items{$billpkgnum} ||= FS::cust_bill_pkg->by_key($billpkgnum);
538       $credits{$billpkgnum} ||= [];
539       push @{ $credits{$billpkgnum} }, $_;
540     }
541     TAX_ITEM: foreach my $tax_item (values %tax_items) {
542       my $billpkgnum = $tax_item->billpkgnum;
543       # get all pkg/location/taxrate allocations of this tax line item
544       my @allocations = sort {$b->amount <=> $a->amount}
545                         qsearch('cust_bill_pkg_tax_location', {
546                             billpkgnum => $billpkgnum
547                         });
548       # and these are all credit applications to it
549       my @credits = sort {$b->amount <=> $a->amount}
550                     @{ $credits{$billpkgnum} };
551       my $c = shift @credits;
552       my $a = shift @allocations; # we will NOT modify these
553       while ($c and $a) {
554         if ( abs($c->amount - $a->amount) < 0.005 ) {
555           # by far the most common case: the tax line item is for a single
556           # tax, so we just fill in the billpkgtaxlocationnum
557           $c->set('billpkgtaxlocationnum', $a->billpkgtaxlocationnum);
558           my $error = $c->replace;
559           if ($error) {
560             warn "error fixing credit application to tax item #$billpkgnum:\n$error\n";
561             next TAX_ITEM;
562           }
563           $c = shift @credits;
564           $a = shift @allocations;
565         } elsif ( $c->amount > $a->amount ) {
566           # fairly common: the tax line contains tax for multiple packages
567           # (or multiple taxes) but the credit isn't divided up
568           my $new_link = FS::cust_credit_bill_pkg->new({
569               creditbillnum         => $c->creditbillnum,
570               billpkgnum            => $c->billpkgnum,
571               billpkgtaxlocationnum => $a->billpkgtaxlocationnum,
572               amount                => $a->amount,
573               setuprecur            => 'setup',
574           });
575           my $error = $new_link->insert;
576           if ($error) {
577             warn "error fixing credit application to tax item #$billpkgnum:\n$error\n";
578             next TAX_ITEM;
579           }
580           $c->set(amount => sprintf('%.2f', $c->amount - $a->amount));
581           $a = shift @allocations;
582         } elsif ( $c->amount < 0.005 ) {
583           # also fairly common; we can delete these with no harm
584           my $error = $c->delete;
585           warn "error removing zero-amount credit application (probably harmless):\n$error\n" if $error;
586           $c = shift @credits;
587         } elsif ( $c->amount < $a->amount ) {
588           # should never happen, but if it does, handle it gracefully
589           $c->set('billpkgtaxlocationnum', $a->billpkgtaxlocationnum);
590           my $error = $c->replace;
591           if ($error) {
592             warn "error fixing credit application to tax item #$billpkgnum:\n$error\n";
593             next TAX_ITEM;
594           }
595           $a->set(amount => $a->amount - $c->amount);
596           $c = shift @credits;
597         }
598       } # while $c and $a
599       if ( $c ) {
600         if ( $c->amount < 0.005 ) {
601           my $error = $c->delete;
602           warn "error removing zero-amount credit application (probably harmless):\n$error\n" if $error;
603         } elsif ( $c->modified ) {
604           # then we've allocated part of it, so reduce the nonspecific 
605           # application by that much
606           my $error = $c->replace;
607           warn "error fixing credit application to tax item #$billpkgnum:\n$error\n" if $error;
608         }
609         # else there are probably no allocations, i.e. this is a pre-3.x 
610         # record that was never migrated over, so leave it alone
611       } # if $c
612     } # foreach $tax_item
613     FS::upgrade_journal->set_done('cust_credit__tax_link');
614   }
615 }
616
617 =back
618
619 =head1 CLASS METHODS
620
621 =over 4
622
623 =item unapplied_sql
624
625 Returns an SQL fragment to retreive the unapplied amount.
626
627 =cut
628
629 sub unapplied_sql {
630   my ($class, $start, $end) = @_;
631
632   my $bill_start   = $start ? "AND cust_credit_bill._date <= $start"   : '';
633   my $bill_end     = $end   ? "AND cust_credit_bill._date > $end"     : '';
634   my $refund_start = $start ? "AND cust_credit_refund._date <= $start" : '';
635   my $refund_end   = $end   ? "AND cust_credit_refund._date > $end"   : '';
636
637   "amount
638         - COALESCE(
639                     ( SELECT SUM(amount) FROM cust_credit_refund
640                         WHERE cust_credit.crednum = cust_credit_refund.crednum
641                         $refund_start $refund_end )
642                     ,0
643                   )
644         - COALESCE(
645                     ( SELECT SUM(amount) FROM cust_credit_bill
646                         WHERE cust_credit.crednum = cust_credit_bill.crednum
647                         $bill_start $bill_end )
648                     ,0
649                   )
650   ";
651
652 }
653
654 =item credited_sql
655
656 Deprecated name for the unapplied_sql method.
657
658 =cut
659
660 sub credited_sql {
661   #my $class = shift;
662
663   #carp "cust_credit->credited_sql deprecated; use ->unapplied_sql";
664
665   #$class->unapplied_sql(@_);
666   unapplied_sql();
667 }
668
669 =item calculate_tax_adjustment PARAMS
670
671 Calculate the amount of tax that needs to be credited as part of a lineitem
672 credit.
673
674 PARAMS must include:
675
676 - billpkgnums: arrayref identifying the line items to credit
677 - setuprecurs: arrayref of 'setup' or 'recur', indicating which part of
678   the lineitem charge is being credited
679 - amounts: arrayref of the amounts to credit on each line item
680 - custnum: the customer all of these invoices belong to, for error checking
681
682 Returns a hash containing:
683 - subtotal: the total non-tax amount to be credited (the sum of the 'amounts')
684 - taxtotal: the total tax amount to be credited
685 - taxlines: an arrayref of hashrefs for each tax line to be credited, each with:
686   - table: "cust_bill_pkg_tax_location" or "cust_bill_pkg_tax_rate_location"
687   - num: the key within that table
688   - credit: the credit amount to apply to that line
689
690 =cut
691
692 sub calculate_tax_adjustment {
693   my ($class, %arg) = @_;
694
695   my $error;
696   my @taxlines;
697   my $subtotal = 0;
698   my $taxtotal = 0;
699
700   my (%cust_bill_pkg, %cust_bill);
701
702   for (my $i = 0; ; $i++) {
703     my $billpkgnum = $arg{billpkgnums}[$i]
704       or last;
705     my $setuprecur = $arg{setuprecurs}[$i];
706     my $amount = $arg{amounts}[$i];
707     next if $amount == 0;
708     $subtotal += $amount;
709     my $cust_bill_pkg = $cust_bill_pkg{$billpkgnum}
710                     ||= FS::cust_bill_pkg->by_key($billpkgnum)
711       or die "lineitem #$billpkgnum not found\n";
712
713     my $invnum = $cust_bill_pkg->invnum;
714     $cust_bill{ $invnum } ||= FS::cust_bill->by_key($invnum);
715     $cust_bill{ $invnum}->custnum == $arg{custnum}
716       or die "lineitem #$billpkgnum not found\n";
717
718     # tax_Xlocation records don't distinguish setup and recur, so calculate
719     # the fraction of setup+recur (after deducting credits) that's setup. This
720     # will also be the fraction of tax (after deducting credits) that's tax on
721     # setup.
722     my ($setup, $recur);
723     $setup = $cust_bill_pkg->get('setup') || 0;
724     if ($setup) {
725       $setup -= $cust_bill_pkg->credited('', '', setuprecur => 'setup') || 0;
726     }
727     $recur = $cust_bill_pkg->get('recur') || 0;
728     if ($recur) {
729       $recur -= $cust_bill_pkg->credited('', '', setuprecur => 'recur') || 0;
730     }
731     my $setup_ratio = $setup / ($setup + $recur);
732
733     # Calculate the fraction of tax to credit: it's the fraction of this charge
734     # (either setup or recur) that's being credited.
735     my $charged = ($setuprecur eq 'setup') ? $setup : $recur;
736     next if $charged == 0; # shouldn't happen, but still...
737
738     if ($charged < $amount) {
739       $error = "invoice #$invnum: tried to credit $amount, but only $charged was charged";
740       last;
741     }
742     my $credit_ratio = $amount / $charged;
743
744     # gather taxes that apply to the selected item
745     foreach my $table (
746       qw(cust_bill_pkg_tax_location cust_bill_pkg_tax_rate_location)
747     ) {
748       foreach my $tax_link (
749         qsearch($table, { taxable_billpkgnum => $billpkgnum })
750       ) {
751         my $tax_amount = $tax_link->amount;
752         # deduct existing credits applied to the tax, for the same reason as
753         # above
754         foreach ($tax_link->cust_credit_bill_pkg) {
755           $tax_amount -= $_->amount;
756         }
757         # split tax amount based on setuprecur
758         # (this method ensures that, if you credit both setup and recur tax,
759         # it always equals the entire tax despite any rounding)
760         my $setup_tax = sprintf('%.2f', $tax_amount * $setup_ratio);
761         if ( $setuprecur eq 'setup' ) {
762           $tax_amount = $setup_tax;
763         } else {
764           $tax_amount = $tax_amount - $setup_tax;
765         }
766         my $tax_credit = sprintf('%.2f', $tax_amount * $credit_ratio);
767         my $pkey = $tax_link->get($tax_link->primary_key);
768         push @taxlines, {
769           table   => $table,
770           num     => $pkey,
771           credit  => $tax_credit,
772         };
773         $taxtotal += $tax_credit;
774
775       } #foreach cust_bill_pkg_tax_(rate_)?location
776     }
777   } # foreach $billpkgnum
778
779   return (
780     subtotal => sprintf('%.2f', $subtotal),
781     taxtotal => sprintf('%.2f', $taxtotal),
782     taxlines => \@taxlines,
783   );
784 }
785
786 =item credit_lineitems OPTIONS
787
788 Creates a credit to a group of line items, with a specified amount applied
789 to each. This will also calculate the tax adjustments for those amounts and
790 credit the appropriate tax line items.
791
792 Example:
793
794   my $error = FS::cust_credit->credit_lineitems(
795
796     #the lineitems to credit
797     'billpkgnums'       => \@billpkgnums,
798     'setuprecurs'       => \@setuprecurs,
799     'amounts'           => \@amounts,
800     'apply'             => 1, #0 leaves the credit unapplied
801
802     #the credit
803     map { $_ => scalar($cgi->param($_)) }
804       #fields('cust_credit')  
805       qw( custnum _date amount reasonnum addlinfo ), #pkgnum eventnum
806
807   );
808
809 C<billpkgnums>, C<setuprecurs>, C<amounts> are required and are parallel
810 arrays. Each one indicates an amount of credit to be applied to either the
811 setup or recur portion of a (non-tax) line item.
812
813 C<custnum>, C<_date>, C<reasonnum>, and C<addlinfo> will be set on the
814 credit before it's inserted.
815
816 C<amount> is the total amount. If unspecified, the credit will be the sum
817 of the per-line-item amounts and their tax adjustments.
818
819 =cut
820
821 #maybe i should just be an insert with extra args instead of a class method
822 sub credit_lineitems {
823   my( $class, %arg ) = @_;
824   my $curuser = $FS::CurrentUser::CurrentUser;
825
826   #some false laziness w/misc/xmlhttp-cust_bill_pkg-calculate_taxes.html
827
828   my $cust_main = qsearchs({
829     'table'     => 'cust_main',
830     'hashref'   => { 'custnum' => $arg{custnum} },
831     'extra_sql' => ' AND '. $curuser->agentnums_sql,
832   }) or return 'unknown customer';
833
834
835   local $SIG{HUP} = 'IGNORE';
836   local $SIG{INT} = 'IGNORE';
837   local $SIG{QUIT} = 'IGNORE';
838   local $SIG{TERM} = 'IGNORE';
839   local $SIG{TSTP} = 'IGNORE';
840   local $SIG{PIPE} = 'IGNORE';
841
842   my $oldAutoCommit = $FS::UID::AutoCommit;
843   local $FS::UID::AutoCommit = 0;
844   my $dbh = dbh;
845
846   #my @cust_bill_pkg = qsearch({
847   #  'select'    => 'cust_bill_pkg.*',
848   #  'table'     => 'cust_bill_pkg',
849   #  'addl_from' => ' LEFT JOIN cust_bill USING (invnum)  '.
850   #                 ' LEFT JOIN cust_main USING (custnum) ',
851   #  'extra_sql' => ' WHERE custnum = $custnum AND billpkgnum IN ('.
852   #                     join( ',', @{$arg{billpkgnums}} ). ')',
853   #  'order_by'  => 'ORDER BY invnum ASC, billpkgnum ASC',
854   #});
855
856   my $error = '';
857
858   # first, determine the tax adjustments
859   my %tax_adjust = $class->calculate_tax_adjustment(%arg);
860   # and determine the amount automatically if it wasn't specified
861   if ( !exists( $arg{amount} ) ) {
862     $arg{amount} = sprintf('%.2f', $tax_adjust{subtotal} + $tax_adjust{taxtotal});
863   }
864
865   # create the credit
866   my $cust_credit = new FS::cust_credit ( {
867     map { $_ => $arg{$_} }
868       #fields('cust_credit')
869       qw( custnum _date amount reason reasonnum addlinfo ), #pkgnum eventnum
870   } );
871   $error = $cust_credit->insert;
872   if ( $error ) {
873     $dbh->rollback if $oldAutoCommit;
874     return "Error inserting credit: $error";
875   }
876
877   unless ( $arg{'apply'} ) {
878     $dbh->commit or die $dbh->errstr if $oldAutoCommit;
879     return '';
880   }
881
882   #my $subtotal = 0;
883   # keys in all of these are invoice numbers
884   my %cust_credit_bill = ();
885   my %cust_bill_pkg = ();
886   my %cust_credit_bill_pkg = ();
887   my %unapplied_payments = (); #invoice numbers, and then billpaynums
888
889   foreach my $billpkgnum ( @{$arg{billpkgnums}} ) {
890     my $setuprecur = shift @{$arg{setuprecurs}};
891     my $amount = shift @{$arg{amounts}};
892
893     my $cust_bill_pkg = qsearchs({
894       'table'     => 'cust_bill_pkg',
895       'hashref'   => { 'billpkgnum' => $billpkgnum },
896       'addl_from' => 'LEFT JOIN cust_bill USING (invnum)',
897       'extra_sql' => 'AND custnum = '. $cust_main->custnum,
898     }) or die "unknown billpkgnum $billpkgnum";
899   
900     my $invnum = $cust_bill_pkg->invnum;
901
902     push @{$cust_bill_pkg{$invnum}}, $cust_bill_pkg;
903
904     $cust_credit_bill{$invnum} += $amount;
905     push @{ $cust_credit_bill_pkg{$invnum} },
906       new FS::cust_credit_bill_pkg {
907         'billpkgnum' => $billpkgnum,
908         'amount'     => sprintf('%.2f',$amount),
909         'setuprecur' => $setuprecur,
910         'sdate'      => $cust_bill_pkg->sdate,
911         'edate'      => $cust_bill_pkg->edate,
912       };
913     # unapply payments (but not other credits) from this line item
914     foreach my $cust_bill_pay_pkg (
915       $cust_bill_pkg->cust_bill_pay_pkg($setuprecur)
916     ) {
917       $error = $cust_bill_pay_pkg->delete;
918       if ( $error ) {
919         $dbh->rollback if $oldAutoCommit;
920         return "Error unapplying payment: $error";
921       }
922       $unapplied_payments{$invnum}{$cust_bill_pay_pkg->billpaynum}
923         += $cust_bill_pay_pkg->amount;
924     }
925   }
926
927   # do the same for taxes
928   foreach my $tax_credit ( @{ $tax_adjust{taxlines} } ) {
929     my $table = $tax_credit->{table};
930     my $tax_link = "FS::$table"->by_key( $tax_credit->{num} )
931       or die "tried to credit $table #$tax_credit->{num} but it doesn't exist";
932
933     my $billpkgnum = $tax_link->billpkgnum;
934     my $cust_bill_pkg = qsearchs({
935       'table'     => 'cust_bill_pkg',
936       'hashref'   => { 'billpkgnum' => $billpkgnum },
937       'addl_from' => 'LEFT JOIN cust_bill USING (invnum)',
938       'extra_sql' => 'AND custnum = '. $cust_main->custnum,
939     }) or die "unknown billpkgnum $billpkgnum";
940     
941     my $invnum = $cust_bill_pkg->invnum;
942     push @{$cust_bill_pkg{$invnum}}, $cust_bill_pkg;
943
944     my $amount = $tax_credit->{credit};
945     $cust_credit_bill{$invnum} += $amount;
946
947     # create a credit application record to the tax line item, earmarked
948     # to the specific cust_bill_pkg_Xlocation
949     push @{ $cust_credit_bill_pkg{$invnum} },
950       new FS::cust_credit_bill_pkg {
951         'billpkgnum' => $billpkgnum,
952         'amount'     => sprintf('%.2f', $amount),
953         'setuprecur' => 'setup',
954         $tax_link->primary_key, $tax_credit->{num}
955       };
956     # unapply any payments from the tax
957     foreach my $cust_bill_pay_pkg (
958       $cust_bill_pkg->cust_bill_pay_pkg('setup')
959     ) {
960       $error = $cust_bill_pay_pkg->delete;
961       if ( $error ) {
962         $dbh->rollback if $oldAutoCommit;
963         return "Error unapplying payment: $error";
964       }
965       $unapplied_payments{$invnum}{$cust_bill_pay_pkg->billpaynum}
966         += $cust_bill_pay_pkg->amount;
967     }
968   }
969
970   ###
971   # now loop through %cust_credit_bill and insert those
972   ###
973
974   # (hack to prevent cust_credit_bill_pkg insertion)
975   local($FS::cust_bill_ApplicationCommon::skip_apply_to_lineitems_hack) = 1;
976
977   foreach my $invnum ( sort { $a <=> $b } keys %cust_credit_bill ) {
978
979     # if we unapplied any payments from line items, also unapply that 
980     # amount from the invoice
981     foreach my $billpaynum (keys %{$unapplied_payments{$invnum}}) {
982       my $cust_bill_pay = FS::cust_bill_pay->by_key($billpaynum)
983         or die "broken payment application $billpaynum";
984       my @subapps = $cust_bill_pay->lineitem_applications;
985       $error = $cust_bill_pay->delete; # can't replace
986
987       my $new_cust_bill_pay = FS::cust_bill_pay->new({
988           $cust_bill_pay->hash,
989           billpaynum => '',
990           amount => sprintf('%.2f', 
991               $cust_bill_pay->amount 
992               - $unapplied_payments{$invnum}{$billpaynum}),
993       });
994
995       if ( $new_cust_bill_pay->amount > 0 ) {
996         $error ||= $new_cust_bill_pay->insert;
997         # Also reapply it to everything it was applied to before.
998         # Note that we've already deleted cust_bill_pay_pkg records for the
999         # items we're crediting, so they aren't on this list.
1000         foreach my $cust_bill_pay_pkg (@subapps) {
1001           $cust_bill_pay_pkg->billpaypkgnum('');
1002           $cust_bill_pay_pkg->billpaynum($new_cust_bill_pay->billpaynum);
1003           $error ||= $cust_bill_pay_pkg->insert;
1004         }
1005       }
1006       if ( $error ) {
1007         $dbh->rollback if $oldAutoCommit;
1008         return "Error unapplying payment: $error";
1009       }
1010     }
1011     #insert cust_credit_bill
1012
1013     my $cust_credit_bill = new FS::cust_credit_bill {
1014       'crednum' => $cust_credit->crednum,
1015       'invnum'  => $invnum,
1016       'amount'  => sprintf('%.2f', $cust_credit_bill{$invnum}),
1017     };
1018     $error = $cust_credit_bill->insert;
1019     if ( $error ) {
1020       $dbh->rollback if $oldAutoCommit;
1021       return "Error applying credit of $cust_credit_bill{$invnum} ".
1022              " to invoice $invnum: $error";
1023     }
1024
1025     #and then insert cust_credit_bill_pkg for each cust_bill_pkg
1026     foreach my $cust_credit_bill_pkg ( @{$cust_credit_bill_pkg{$invnum}} ) {
1027       $cust_credit_bill_pkg->creditbillnum( $cust_credit_bill->creditbillnum );
1028       $error = $cust_credit_bill_pkg->insert;
1029       if ( $error ) {
1030         $dbh->rollback if $oldAutoCommit;
1031         return "Error applying credit to line item: $error";
1032       }
1033     }
1034
1035   }
1036
1037   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1038   '';
1039
1040 }
1041
1042 ### refund_to_unapply/unapply_refund false laziness with FS::cust_pay
1043
1044 =item refund_to_unapply
1045
1046 Returns L<FS::cust_credit_refund> objects that will be deleted by L</unapply_refund>
1047 (all currently applied refunds that aren't closed.)
1048 Returns empty list if credit itself is closed.
1049
1050 =cut
1051
1052 sub refund_to_unapply {
1053   my $self = shift;
1054   return () if $self->closed;
1055   qsearch({
1056     'table'   => 'cust_credit_refund',
1057     'hashref' => { 'crednum' => $self->crednum },
1058     'addl_from' => 'LEFT JOIN cust_refund USING (refundnum)',
1059     'extra_sql' => "AND cust_refund.closed IS NULL AND cust_refund.source_paynum IS NULL",
1060   });
1061 }
1062
1063 =item unapply_refund
1064
1065 Deletes all objects returned by L</refund_to_unapply>.
1066
1067 =cut
1068
1069 sub unapply_refund {
1070   my $self = shift;
1071
1072   local $SIG{HUP} = 'IGNORE';
1073   local $SIG{INT} = 'IGNORE';
1074   local $SIG{QUIT} = 'IGNORE';
1075   local $SIG{TERM} = 'IGNORE';
1076   local $SIG{TSTP} = 'IGNORE';
1077   local $SIG{PIPE} = 'IGNORE';
1078
1079   my $oldAutoCommit = $FS::UID::AutoCommit;
1080   local $FS::UID::AutoCommit = 0;
1081
1082   foreach my $cust_credit_refund ($self->refund_to_unapply) {
1083     my $error = $cust_credit_refund->delete;
1084     if ($error) {
1085       dbh->rollback if $oldAutoCommit;
1086       return $error;
1087     }
1088   }
1089
1090   dbh->commit or die dbh->errstr if $oldAutoCommit;
1091   return '';
1092 }
1093
1094 =back
1095
1096 =head1 SUBROUTINES
1097
1098 =over 4
1099
1100 =item process_batch_import
1101
1102 =cut
1103
1104 use List::Util qw( min );
1105 use FS::cust_bill;
1106 use FS::cust_credit_bill;
1107 sub process_batch_import {
1108   my $job = shift;
1109
1110   # some false laziness with FS::cust_pay::process_batch_import
1111   my $hashcb = sub {
1112     my %hash = @_;
1113     my $custnum = $hash{'custnum'};
1114     my $agent_custid = $hash{'agent_custid'};
1115     # translate agent_custid into regular custnum
1116     if ($custnum && $agent_custid) {
1117       die "can't specify both custnum and agent_custid\n";
1118     } elsif ($agent_custid) {
1119       # here is the agent virtualization
1120       my $extra_sql = ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql;
1121       my %search;
1122       $search{'agent_custid'} = $agent_custid
1123         if $agent_custid;
1124       $search{'custnum'} = $custnum
1125         if $custnum;
1126       my $cust_main = qsearchs({
1127         'table'     => 'cust_main',
1128         'hashref'   => \%search,
1129         'extra_sql' => $extra_sql,
1130       });
1131       die "can't find customer with" .
1132         ($custnum  ? " custnum $custnum" : '') .
1133         ($agent_custid ? " agent_custid $agent_custid" : '') . "\n"
1134         unless $cust_main;
1135       die "mismatched customer number\n"
1136         if $custnum && ($custnum ne $cust_main->custnum);
1137       $custnum = $cust_main->custnum;
1138     }
1139     $hash{'custnum'} = $custnum;
1140     delete($hash{'agent_custid'});
1141     return %hash;
1142   };
1143
1144   my $opt = { 'table'   => 'cust_credit',
1145               'params'  => [ '_date', 'credbatch' ],
1146               'formats' => { 'simple' =>
1147                                [ 'custnum', 'amount', 'reasonnum', 'invnum', 'agent_custid' ],
1148                            },
1149               'default_csv' => 1,
1150               'format_hash_callbacks' => { 'simple' => $hashcb },
1151               'postinsert_callback' => sub {
1152                 my $cust_credit = shift; #my ($cust_credit, $param ) = @_;
1153
1154                 if ( $cust_credit->invnum ) {
1155
1156                   my $cust_bill = qsearchs('cust_bill', { invnum=>$cust_credit->invnum } );
1157                   my $amount = min( $cust_credit->credited, $cust_bill->owed );
1158     
1159                   my $cust_credit_bill = new FS::cust_credit_bill ( {
1160                     'crednum' => $cust_credit->crednum,
1161                     'invnum'  => $cust_bill->invnum,
1162                     'amount'  => $amount,
1163                   } );
1164                   my $error = $cust_credit_bill->insert;
1165                   return '' unless $error;
1166
1167                 }
1168
1169                 #apply_payments_and_credits ?
1170                 $cust_credit->cust_main->apply_credits;
1171
1172                 return '';
1173
1174               },
1175             };
1176
1177   FS::Record::process_batch_import( $job, $opt, @_ );
1178
1179 }
1180
1181 =back
1182
1183 =head1 BUGS
1184
1185 The delete method.  The replace method.
1186
1187 B<credited> and B<credited_sql> are now called B<unapplied> and
1188 B<unapplied_sql>.  The old method names should start to give warnings.
1189
1190 =head1 SEE ALSO
1191
1192 L<FS::Record>, L<FS::cust_credit_refund>, L<FS::cust_refund>,
1193 L<FS::cust_credit_bill> L<FS::cust_bill>, schema.html from the base
1194 documentation.
1195
1196 =cut
1197
1198 1;
1199