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