RADIUS usage with svc_broadband export, RT#25378
[freeside.git] / FS / FS / cust_pkg.pm
1 package FS::cust_pkg;
2 use base qw( FS::otaker_Mixin FS::cust_main_Mixin FS::Sales_Mixin
3              FS::contact_Mixin FS::location_Mixin
4              FS::m2m_Common FS::option_Common );
5
6 use strict;
7 use vars qw( $disable_agentcheck $DEBUG $me $upgrade );
8 use Carp qw(cluck);
9 use Scalar::Util qw( blessed );
10 use List::Util qw(min max);
11 use Tie::IxHash;
12 use Time::Local qw( timelocal timelocal_nocheck );
13 use MIME::Entity;
14 use FS::UID qw( getotaker dbh driver_name );
15 use FS::Misc qw( send_email );
16 use FS::Record qw( qsearch qsearchs fields );
17 use FS::CurrentUser;
18 use FS::cust_svc;
19 use FS::part_pkg;
20 use FS::cust_main;
21 use FS::contact;
22 use FS::cust_location;
23 use FS::pkg_svc;
24 use FS::cust_bill_pkg;
25 use FS::cust_pkg_detail;
26 use FS::cust_pkg_usage;
27 use FS::cdr_cust_pkg_usage;
28 use FS::cust_event;
29 use FS::h_cust_svc;
30 use FS::reg_code;
31 use FS::part_svc;
32 use FS::cust_pkg_reason;
33 use FS::reason;
34 use FS::cust_pkg_discount;
35 use FS::discount;
36 use FS::UI::Web;
37 use FS::sales;
38 # for modify_charge
39 use FS::cust_credit;
40
41 # need to 'use' these instead of 'require' in sub { cancel, suspend, unsuspend,
42 # setup }
43 # because they load configuration by setting FS::UID::callback (see TODO)
44 use FS::svc_acct;
45 use FS::svc_domain;
46 use FS::svc_www;
47 use FS::svc_forward;
48
49 # for sending cancel emails in sub cancel
50 use FS::Conf;
51
52 $DEBUG = 0;
53 $me = '[FS::cust_pkg]';
54
55 $disable_agentcheck = 0;
56
57 $upgrade = 0; #go away after setup+start dates cleaned up for old customers
58
59 sub _cache {
60   my $self = shift;
61   my ( $hashref, $cache ) = @_;
62   #if ( $hashref->{'pkgpart'} ) {
63   if ( $hashref->{'pkg'} ) {
64     # #@{ $self->{'_pkgnum'} } = ();
65     # my $subcache = $cache->subcache('pkgpart', 'part_pkg');
66     # $self->{'_pkgpart'} = $subcache;
67     # #push @{ $self->{'_pkgnum'} },
68     #   FS::part_pkg->new_or_cached($hashref, $subcache);
69     $self->{'_pkgpart'} = FS::part_pkg->new($hashref);
70   }
71   if ( exists $hashref->{'svcnum'} ) {
72     #@{ $self->{'_pkgnum'} } = ();
73     my $subcache = $cache->subcache('svcnum', 'cust_svc', $hashref->{pkgnum});
74     $self->{'_svcnum'} = $subcache;
75     #push @{ $self->{'_pkgnum'} },
76     FS::cust_svc->new_or_cached($hashref, $subcache) if $hashref->{svcnum};
77   }
78 }
79
80 =head1 NAME
81
82 FS::cust_pkg - Object methods for cust_pkg objects
83
84 =head1 SYNOPSIS
85
86   use FS::cust_pkg;
87
88   $record = new FS::cust_pkg \%hash;
89   $record = new FS::cust_pkg { 'column' => 'value' };
90
91   $error = $record->insert;
92
93   $error = $new_record->replace($old_record);
94
95   $error = $record->delete;
96
97   $error = $record->check;
98
99   $error = $record->cancel;
100
101   $error = $record->suspend;
102
103   $error = $record->unsuspend;
104
105   $part_pkg = $record->part_pkg;
106
107   @labels = $record->labels;
108
109   $seconds = $record->seconds_since($timestamp);
110
111   $error = FS::cust_pkg::order( $custnum, \@pkgparts );
112   $error = FS::cust_pkg::order( $custnum, \@pkgparts, \@remove_pkgnums ] );
113
114 =head1 DESCRIPTION
115
116 An FS::cust_pkg object represents a customer billing item.  FS::cust_pkg
117 inherits from FS::Record.  The following fields are currently supported:
118
119 =over 4
120
121 =item pkgnum
122
123 Primary key (assigned automatically for new billing items)
124
125 =item custnum
126
127 Customer (see L<FS::cust_main>)
128
129 =item pkgpart
130
131 Billing item definition (see L<FS::part_pkg>)
132
133 =item locationnum
134
135 Optional link to package location (see L<FS::location>)
136
137 =item order_date
138
139 date package was ordered (also remains same on changes)
140
141 =item start_date
142
143 date
144
145 =item setup
146
147 date
148
149 =item bill
150
151 date (next bill date)
152
153 =item last_bill
154
155 last bill date
156
157 =item adjourn
158
159 date
160
161 =item susp
162
163 date
164
165 =item expire
166
167 date
168
169 =item contract_end
170
171 date
172
173 =item cancel
174
175 date
176
177 =item usernum
178
179 order taker (see L<FS::access_user>)
180
181 =item manual_flag
182
183 If this field is set to 1, disables the automatic
184 unsuspension of this package when using the B<unsuspendauto> config option.
185
186 =item quantity
187
188 If not set, defaults to 1
189
190 =item change_date
191
192 Date of change from previous package
193
194 =item change_pkgnum
195
196 Previous pkgnum
197
198 =item change_pkgpart
199
200 Previous pkgpart
201
202 =item change_locationnum
203
204 Previous locationnum
205
206 =item waive_setup
207
208 =item main_pkgnum
209
210 The pkgnum of the package that this package is supplemental to, if any.
211
212 =item pkglinknum
213
214 The package link (L<FS::part_pkg_link>) that defines this supplemental
215 package, if it is one.
216
217 =item change_to_pkgnum
218
219 The pkgnum of the package this one will be "changed to" in the future
220 (on its expiration date).
221
222 =back
223
224 Note: setup, last_bill, bill, adjourn, susp, expire, cancel and change_date
225 are specified as UNIX timestamps; see L<perlfunc/"time">.  Also see
226 L<Time::Local> and L<Date::Parse> for conversion functions.
227
228 =head1 METHODS
229
230 =over 4
231
232 =item new HASHREF
233
234 Create a new billing item.  To add the item to the database, see L<"insert">.
235
236 =cut
237
238 sub table { 'cust_pkg'; }
239 sub cust_linked { $_[0]->cust_main_custnum || $_[0]->custnum } 
240 sub cust_unlinked_msg {
241   my $self = shift;
242   "WARNING: can't find cust_main.custnum ". $self->custnum.
243   ' (cust_pkg.pkgnum '. $self->pkgnum. ')';
244 }
245
246 =item insert [ OPTION => VALUE ... ]
247
248 Adds this billing item to the database ("Orders" the item).  If there is an
249 error, returns the error, otherwise returns false.
250
251 If the additional field I<promo_code> is defined instead of I<pkgpart>, it
252 will be used to look up the package definition and agent restrictions will be
253 ignored.
254
255 If the additional field I<refnum> is defined, an FS::pkg_referral record will
256 be created and inserted.  Multiple FS::pkg_referral records can be created by
257 setting I<refnum> to an array reference of refnums or a hash reference with
258 refnums as keys.  If no I<refnum> is defined, a default FS::pkg_referral
259 record will be created corresponding to cust_main.refnum.
260
261 The following options are available:
262
263 =over 4
264
265 =item change
266
267 If set true, supresses actions that should only be taken for new package
268 orders.  (Currently this includes: intro periods when delay_setup is on.)
269
270 =item options
271
272 cust_pkg_option records will be created
273
274 =item ticket_subject
275
276 a ticket will be added to this customer with this subject
277
278 =item ticket_queue
279
280 an optional queue name for ticket additions
281
282 =item allow_pkgpart
283
284 Don't check the legality of the package definition.  This should be used
285 when performing a package change that doesn't change the pkgpart (i.e. 
286 a location change).
287
288 =back
289
290 =cut
291
292 sub insert {
293   my( $self, %options ) = @_;
294
295   my $error;
296   $error = $self->check_pkgpart unless $options{'allow_pkgpart'};
297   return $error if $error;
298
299   my $part_pkg = $self->part_pkg;
300
301   # if the package def says to start only on the first of the month:
302   if ( $part_pkg->option('start_1st', 1) && !$self->start_date ) {
303     my ($sec,$min,$hour,$mday,$mon,$year) = (localtime(time) )[0,1,2,3,4,5];
304     $mon += 1 unless $mday == 1;
305     until ( $mon < 12 ) { $mon -= 12; $year++; }
306     $self->start_date( timelocal_nocheck(0,0,0,1,$mon,$year) );
307   }
308
309   # set up any automatic expire/adjourn/contract_end timers
310   # based on the start date
311   foreach my $action ( qw(expire adjourn contract_end) ) {
312     my $months = $part_pkg->option("${action}_months",1);
313     if($months and !$self->$action) {
314       my $start = $self->start_date || $self->setup || time;
315       $self->$action( $part_pkg->add_freq($start, $months) );
316     }
317   }
318
319   # if this package has "free days" and delayed setup fee, tehn 
320   # set start date that many days in the future.
321   # (this should have been set in the UI, but enforce it here)
322   if (    ! $options{'change'}
323        && ( my $free_days = $part_pkg->option('free_days',1) )
324        && $part_pkg->option('delay_setup',1)
325        #&& ! $self->start_date
326      )
327   {
328     $self->start_date( $part_pkg->default_start_date );
329   }
330
331   $self->order_date(time);
332
333   local $SIG{HUP} = 'IGNORE';
334   local $SIG{INT} = 'IGNORE';
335   local $SIG{QUIT} = 'IGNORE';
336   local $SIG{TERM} = 'IGNORE';
337   local $SIG{TSTP} = 'IGNORE';
338   local $SIG{PIPE} = 'IGNORE';
339
340   my $oldAutoCommit = $FS::UID::AutoCommit;
341   local $FS::UID::AutoCommit = 0;
342   my $dbh = dbh;
343
344   $error = $self->SUPER::insert($options{options} ? %{$options{options}} : ());
345   if ( $error ) {
346     $dbh->rollback if $oldAutoCommit;
347     return $error;
348   }
349
350   $self->refnum($self->cust_main->refnum) unless $self->refnum;
351   $self->refnum( [ $self->refnum ] ) unless ref($self->refnum);
352   $self->process_m2m( 'link_table'   => 'pkg_referral',
353                       'target_table' => 'part_referral',
354                       'params'       => $self->refnum,
355                     );
356
357   if ( $self->discountnum ) {
358     my $error = $self->insert_discount();
359     if ( $error ) {
360       $dbh->rollback if $oldAutoCommit;
361       return $error;
362     }
363   }
364
365   my $conf = new FS::Conf;
366
367   if ( $conf->config('ticket_system') && $options{ticket_subject} ) {
368
369     #this init stuff is still inefficient, but at least its limited to 
370     # the small number (any?) folks using ticket emailing on pkg order
371
372     #eval '
373     #  use lib ( "/opt/rt3/local/lib", "/opt/rt3/lib" );
374     #  use RT;
375     #';
376     #die $@ if $@;
377     #
378     #RT::LoadConfig();
379     #RT::Init();
380     use FS::TicketSystem;
381     FS::TicketSystem->init();
382
383     my $q = new RT::Queue($RT::SystemUser);
384     $q->Load($options{ticket_queue}) if $options{ticket_queue};
385     my $t = new RT::Ticket($RT::SystemUser);
386     my $mime = new MIME::Entity;
387     $mime->build( Type => 'text/plain', Data => $options{ticket_subject} );
388     $t->Create( $options{ticket_queue} ? (Queue => $q) : (),
389                 Subject => $options{ticket_subject},
390                 MIMEObj => $mime,
391               );
392     $t->AddLink( Type   => 'MemberOf',
393                  Target => 'freeside://freeside/cust_main/'. $self->custnum,
394                );
395   }
396
397   if ($conf->config('welcome_letter') && $self->cust_main->num_pkgs == 1) {
398     my $queue = new FS::queue {
399       'job'     => 'FS::cust_main::queueable_print',
400     };
401     $error = $queue->insert(
402       'custnum'  => $self->custnum,
403       'template' => 'welcome_letter',
404     );
405
406     if ($error) {
407       warn "can't send welcome letter: $error";
408     }
409
410   }
411
412   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
413   '';
414
415 }
416
417 =item delete
418
419 This method now works but you probably shouldn't use it.
420
421 You don't want to delete packages, because there would then be no record
422 the customer ever purchased the package.  Instead, see the cancel method and
423 hide cancelled packages.
424
425 =cut
426
427 sub delete {
428   my $self = shift;
429
430   local $SIG{HUP} = 'IGNORE';
431   local $SIG{INT} = 'IGNORE';
432   local $SIG{QUIT} = 'IGNORE';
433   local $SIG{TERM} = 'IGNORE';
434   local $SIG{TSTP} = 'IGNORE';
435   local $SIG{PIPE} = 'IGNORE';
436
437   my $oldAutoCommit = $FS::UID::AutoCommit;
438   local $FS::UID::AutoCommit = 0;
439   my $dbh = dbh;
440
441   foreach my $cust_pkg_discount ($self->cust_pkg_discount) {
442     my $error = $cust_pkg_discount->delete;
443     if ( $error ) {
444       $dbh->rollback if $oldAutoCommit;
445       return $error;
446     }
447   }
448   #cust_bill_pkg_discount?
449
450   foreach my $cust_pkg_detail ($self->cust_pkg_detail) {
451     my $error = $cust_pkg_detail->delete;
452     if ( $error ) {
453       $dbh->rollback if $oldAutoCommit;
454       return $error;
455     }
456   }
457
458   foreach my $cust_pkg_reason (
459     qsearchs( {
460                 'table' => 'cust_pkg_reason',
461                 'hashref' => { 'pkgnum' => $self->pkgnum },
462               }
463             )
464   ) {
465     my $error = $cust_pkg_reason->delete;
466     if ( $error ) {
467       $dbh->rollback if $oldAutoCommit;
468       return $error;
469     }
470   }
471
472   #pkg_referral?
473
474   my $error = $self->SUPER::delete(@_);
475   if ( $error ) {
476     $dbh->rollback if $oldAutoCommit;
477     return $error;
478   }
479
480   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
481
482   '';
483
484 }
485
486 =item replace [ OLD_RECORD ] [ HASHREF | OPTION => VALUE ... ]
487
488 Replaces the OLD_RECORD with this one in the database.  If there is an error,
489 returns the error, otherwise returns false.
490
491 Currently, custnum, setup, bill, adjourn, susp, expire, and cancel may be changed.
492
493 Changing pkgpart may have disasterous effects.  See the order subroutine.
494
495 setup and bill are normally updated by calling the bill method of a customer
496 object (see L<FS::cust_main>).
497
498 suspend is normally updated by the suspend and unsuspend methods.
499
500 cancel is normally updated by the cancel method (and also the order subroutine
501 in some cases).
502
503 Available options are:
504
505 =over 4
506
507 =item reason
508
509 can be set to a cancellation reason (see L<FS:reason>), either a reasonnum of an existing reason, or passing a hashref will create a new reason.  The hashref should have the following keys: typenum - Reason type (see L<FS::reason_type>, reason - Text of the new reason.
510
511 =item reason_otaker
512
513 the access_user (see L<FS::access_user>) providing the reason
514
515 =item options
516
517 hashref of keys and values - cust_pkg_option records will be created, updated or removed as appopriate
518
519 =back
520
521 =cut
522
523 sub replace {
524   my $new = shift;
525
526   my $old = ( blessed($_[0]) && $_[0]->isa('FS::Record') )
527               ? shift
528               : $new->replace_old;
529
530   my $options = 
531     ( ref($_[0]) eq 'HASH' )
532       ? shift
533       : { @_ };
534
535   #return "Can't (yet?) change pkgpart!" if $old->pkgpart != $new->pkgpart;
536   #return "Can't change otaker!" if $old->otaker ne $new->otaker;
537
538   #allow this *sigh*
539   #return "Can't change setup once it exists!"
540   #  if $old->getfield('setup') &&
541   #     $old->getfield('setup') != $new->getfield('setup');
542
543   #some logic for bill, susp, cancel?
544
545   local($disable_agentcheck) = 1 if $old->pkgpart == $new->pkgpart;
546
547   local $SIG{HUP} = 'IGNORE';
548   local $SIG{INT} = 'IGNORE';
549   local $SIG{QUIT} = 'IGNORE';
550   local $SIG{TERM} = 'IGNORE';
551   local $SIG{TSTP} = 'IGNORE';
552   local $SIG{PIPE} = 'IGNORE';
553
554   my $oldAutoCommit = $FS::UID::AutoCommit;
555   local $FS::UID::AutoCommit = 0;
556   my $dbh = dbh;
557
558   foreach my $method ( qw(adjourn expire) ) {  # How many reasons?
559     if ($options->{'reason'} && $new->$method && $old->$method ne $new->$method) {
560       my $error = $new->insert_reason(
561         'reason'        => $options->{'reason'},
562         'date'          => $new->$method,
563         'action'        => $method,
564         'reason_otaker' => $options->{'reason_otaker'},
565       );
566       if ( $error ) {
567         dbh->rollback if $oldAutoCommit;
568         return "Error inserting cust_pkg_reason: $error";
569       }
570     }
571   }
572
573   #save off and freeze RADIUS attributes for any associated svc_acct records
574   my @svc_acct = ();
575   if ( $old->part_pkg->is_prepaid || $new->part_pkg->is_prepaid ) {
576
577                 #also check for specific exports?
578                 # to avoid spurious modify export events
579     @svc_acct = map  { $_->svc_x }
580                 grep { $_->part_svc->svcdb eq 'svc_acct' }
581                      $old->cust_svc;
582
583     $_->snapshot foreach @svc_acct;
584
585   }
586
587   my $error =  $new->export_pkg_change($old)
588             || $new->SUPER::replace( $old,
589                                      $options->{options}
590                                        ? $options->{options}
591                                        : ()
592                                    );
593   if ( $error ) {
594     $dbh->rollback if $oldAutoCommit;
595     return $error;
596   }
597
598   #for prepaid packages,
599   #trigger export of new RADIUS Expiration attribute when cust_pkg.bill changes
600   foreach my $old_svc_acct ( @svc_acct ) {
601     my $new_svc_acct = new FS::svc_acct { $old_svc_acct->hash };
602     my $s_error =
603       $new_svc_acct->replace( $old_svc_acct,
604                               'depend_jobnum' => $options->{depend_jobnum},
605                             );
606     if ( $s_error ) {
607       $dbh->rollback if $oldAutoCommit;
608       return $s_error;
609     }
610   }
611
612   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
613   '';
614
615 }
616
617 =item check
618
619 Checks all fields to make sure this is a valid billing item.  If there is an
620 error, returns the error, otherwise returns false.  Called by the insert and
621 replace methods.
622
623 =cut
624
625 sub check {
626   my $self = shift;
627
628   if ( !$self->locationnum or $self->locationnum == -1 ) {
629     $self->set('locationnum', $self->cust_main->ship_locationnum);
630   }
631
632   my $error = 
633     $self->ut_numbern('pkgnum')
634     || $self->ut_foreign_key('custnum', 'cust_main', 'custnum')
635     || $self->ut_numbern('pkgpart')
636     || $self->ut_foreign_keyn('contactnum',  'contact',       'contactnum' )
637     || $self->ut_foreign_keyn('locationnum', 'cust_location', 'locationnum')
638     || $self->ut_foreign_keyn('salesnum', 'sales', 'salesnum')
639     || $self->ut_numbern('quantity')
640     || $self->ut_numbern('start_date')
641     || $self->ut_numbern('setup')
642     || $self->ut_numbern('bill')
643     || $self->ut_numbern('susp')
644     || $self->ut_numbern('cancel')
645     || $self->ut_numbern('adjourn')
646     || $self->ut_numbern('resume')
647     || $self->ut_numbern('expire')
648     || $self->ut_numbern('dundate')
649     || $self->ut_enum('no_auto', [ '', 'Y' ])
650     || $self->ut_enum('waive_setup', [ '', 'Y' ])
651     || $self->ut_numbern('agent_pkgid')
652     || $self->ut_enum('recur_show_zero', [ '', 'Y', 'N', ])
653     || $self->ut_enum('setup_show_zero', [ '', 'Y', 'N', ])
654     || $self->ut_foreign_keyn('main_pkgnum', 'cust_pkg', 'pkgnum')
655     || $self->ut_foreign_keyn('pkglinknum', 'part_pkg_link', 'pkglinknum')
656     || $self->ut_foreign_keyn('change_to_pkgnum', 'cust_pkg', 'pkgnum')
657   ;
658   return $error if $error;
659
660   return "A package with both start date (future start) and setup date (already started) will never bill"
661     if $self->start_date && $self->setup && ! $upgrade;
662
663   return "A future unsuspend date can only be set for a package with a suspend date"
664     if $self->resume and !$self->susp and !$self->adjourn;
665
666   $self->usernum($FS::CurrentUser::CurrentUser->usernum) unless $self->usernum;
667
668   if ( $self->dbdef_table->column('manual_flag') ) {
669     $self->manual_flag('') if $self->manual_flag eq ' ';
670     $self->manual_flag =~ /^([01]?)$/
671       or return "Illegal manual_flag ". $self->manual_flag;
672     $self->manual_flag($1);
673   }
674
675   $self->SUPER::check;
676 }
677
678 =item check_pkgpart
679
680 Check the pkgpart to make sure it's allowed with the reg_code and/or
681 promo_code of the package (if present) and with the customer's agent.
682 Called from C<insert>, unless we are doing a package change that doesn't
683 affect pkgpart.
684
685 =cut
686
687 sub check_pkgpart {
688   my $self = shift;
689
690   # my $error = $self->ut_numbern('pkgpart'); # already done
691
692   my $error;
693   if ( $self->reg_code ) {
694
695     unless ( grep { $self->pkgpart == $_->pkgpart }
696              map  { $_->reg_code_pkg }
697              qsearchs( 'reg_code', { 'code'     => $self->reg_code,
698                                      'agentnum' => $self->cust_main->agentnum })
699            ) {
700       return "Unknown registration code";
701     }
702
703   } elsif ( $self->promo_code ) {
704
705     my $promo_part_pkg =
706       qsearchs('part_pkg', {
707         'pkgpart'    => $self->pkgpart,
708         'promo_code' => { op=>'ILIKE', value=>$self->promo_code },
709       } );
710     return 'Unknown promotional code' unless $promo_part_pkg;
711
712   } else { 
713
714     unless ( $disable_agentcheck ) {
715       my $agent =
716         qsearchs( 'agent', { 'agentnum' => $self->cust_main->agentnum } );
717       return "agent ". $agent->agentnum. ':'. $agent->agent.
718              " can't purchase pkgpart ". $self->pkgpart
719         unless $agent->pkgpart_hashref->{ $self->pkgpart }
720             || $agent->agentnum == $self->part_pkg->agentnum;
721     }
722
723     $error = $self->ut_foreign_key('pkgpart', 'part_pkg', 'pkgpart' );
724     return $error if $error;
725
726   }
727
728   '';
729
730 }
731
732 =item cancel [ OPTION => VALUE ... ]
733
734 Cancels and removes all services (see L<FS::cust_svc> and L<FS::part_svc>)
735 in this package, then cancels the package itself (sets the cancel field to
736 now).
737
738 Available options are:
739
740 =over 4
741
742 =item quiet - can be set true to supress email cancellation notices.
743
744 =item time -  can be set to cancel the package based on a specific future or 
745 historical date.  Using time ensures that the remaining amount is calculated 
746 correctly.  Note however that this is an immediate cancel and just changes 
747 the date.  You are PROBABLY looking to expire the account instead of using 
748 this.
749
750 =item reason - can be set to a cancellation reason (see L<FS:reason>), 
751 either a reasonnum of an existing reason, or passing a hashref will create 
752 a new reason.  The hashref should have the following keys: typenum - Reason 
753 type (see L<FS::reason_type>, reason - Text of the new reason.
754
755 =item date - can be set to a unix style timestamp to specify when to 
756 cancel (expire)
757
758 =item nobill - can be set true to skip billing if it might otherwise be done.
759
760 =item unused_credit - can be set to 1 to credit the remaining time, or 0 to 
761 not credit it.  This must be set (by change()) when changing the package 
762 to a different pkgpart or location, and probably shouldn't be in any other 
763 case.  If it's not set, the 'unused_credit_cancel' part_pkg option will 
764 be used.
765
766 =back
767
768 If there is an error, returns the error, otherwise returns false.
769
770 =cut
771
772 sub cancel {
773   my( $self, %options ) = @_;
774   my $error;
775
776   # pass all suspend/cancel actions to the main package
777   if ( $self->main_pkgnum and !$options{'from_main'} ) {
778     return $self->main_pkg->cancel(%options);
779   }
780
781   my $conf = new FS::Conf;
782
783   warn "cust_pkg::cancel called with options".
784        join(', ', map { "$_: $options{$_}" } keys %options ). "\n"
785     if $DEBUG;
786
787   local $SIG{HUP} = 'IGNORE';
788   local $SIG{INT} = 'IGNORE';
789   local $SIG{QUIT} = 'IGNORE'; 
790   local $SIG{TERM} = 'IGNORE';
791   local $SIG{TSTP} = 'IGNORE';
792   local $SIG{PIPE} = 'IGNORE';
793
794   my $oldAutoCommit = $FS::UID::AutoCommit;
795   local $FS::UID::AutoCommit = 0;
796   my $dbh = dbh;
797   
798   my $old = $self->select_for_update;
799
800   if ( $old->get('cancel') || $self->get('cancel') ) {
801     dbh->rollback if $oldAutoCommit;
802     return "";  # no error
803   }
804
805   # XXX possibly set cancel_time to the expire date?
806   my $cancel_time = $options{'time'} || time;
807   my $date = $options{'date'} if $options{'date'}; # expire/cancel later
808   $date = '' if ($date && $date <= $cancel_time);      # complain instead?
809
810   #race condition: usage could be ongoing until unprovisioned
811   #resolved by performing a change package instead (which unprovisions) and
812   #later cancelling
813   if ( !$options{nobill} && !$date ) {
814     # && $conf->exists('bill_usage_on_cancel') ) { #calc_cancel checks this
815       my $copy = $self->new({$self->hash});
816       my $error =
817         $copy->cust_main->bill( 'pkg_list' => [ $copy ], 
818                                 'cancel'   => 1,
819                                 'time'     => $cancel_time );
820       warn "Error billing during cancel, custnum ".
821         #$self->cust_main->custnum. ": $error"
822         ": $error"
823         if $error;
824   }
825
826   if ( $options{'reason'} ) {
827     $error = $self->insert_reason( 'reason' => $options{'reason'},
828                                    'action' => $date ? 'expire' : 'cancel',
829                                    'date'   => $date ? $date : $cancel_time,
830                                    'reason_otaker' => $options{'reason_otaker'},
831                                  );
832     if ( $error ) {
833       dbh->rollback if $oldAutoCommit;
834       return "Error inserting cust_pkg_reason: $error";
835     }
836   }
837
838   my %svc_cancel_opt = ();
839   $svc_cancel_opt{'date'} = $date if $date;
840   foreach my $cust_svc (
841     #schwartz
842     map  { $_->[0] }
843     sort { $a->[1] <=> $b->[1] }
844     map  { [ $_, $_->svc_x ? $_->svc_x->table_info->{'cancel_weight'} : -1 ]; }
845     qsearch( 'cust_svc', { 'pkgnum' => $self->pkgnum } )
846   ) {
847     my $part_svc = $cust_svc->part_svc;
848     next if ( defined($part_svc) and $part_svc->preserve );
849     my $error = $cust_svc->cancel( %svc_cancel_opt );
850
851     if ( $error ) {
852       $dbh->rollback if $oldAutoCommit;
853       return 'Error '. ($svc_cancel_opt{'date'} ? 'expiring' : 'canceling' ).
854              " cust_svc: $error";
855     }
856   }
857
858   unless ($date) {
859     # credit remaining time if appropriate
860     my $do_credit;
861     if ( exists($options{'unused_credit'}) ) {
862       $do_credit = $options{'unused_credit'};
863     }
864     else {
865       $do_credit = $self->part_pkg->option('unused_credit_cancel', 1);
866     }
867     if ( $do_credit ) {
868       my $error = $self->credit_remaining('cancel', $cancel_time);
869       if ($error) {
870         $dbh->rollback if $oldAutoCommit;
871         return $error;
872       }
873     }
874
875   } #unless $date
876
877   my %hash = $self->hash;
878   if ( $date ) {
879     $hash{'expire'} = $date;
880   } else {
881     $hash{'cancel'} = $cancel_time;
882   }
883   $hash{'change_custnum'} = $options{'change_custnum'};
884
885   my $new = new FS::cust_pkg ( \%hash );
886   $error = $new->replace( $self, options => { $self->options } );
887   if ( $self->change_to_pkgnum ) {
888     my $change_to = FS::cust_pkg->by_key($self->change_to_pkgnum);
889     $error ||= $change_to->cancel || $change_to->delete;
890   }
891   if ( $error ) {
892     $dbh->rollback if $oldAutoCommit;
893     return $error;
894   }
895
896   foreach my $supp_pkg ( $self->supplemental_pkgs ) {
897     $error = $supp_pkg->cancel(%options, 'from_main' => 1);
898     if ( $error ) {
899       $dbh->rollback if $oldAutoCommit;
900       return "canceling supplemental pkg#".$supp_pkg->pkgnum.": $error";
901     }
902   }
903
904   foreach my $usage ( $self->cust_pkg_usage ) {
905     $error = $usage->delete;
906     if ( $error ) {
907       $dbh->rollback if $oldAutoCommit;
908       return "deleting usage pools: $error";
909     }
910   }
911
912   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
913   return '' if $date; #no errors
914
915   my @invoicing_list = grep { $_ !~ /^(POST|FAX)$/ } $self->cust_main->invoicing_list;
916   if ( !$options{'quiet'} && 
917         $conf->exists('emailcancel', $self->cust_main->agentnum) && 
918         @invoicing_list ) {
919     my $msgnum = $conf->config('cancel_msgnum', $self->cust_main->agentnum);
920     my $error = '';
921     if ( $msgnum ) {
922       my $msg_template = qsearchs('msg_template', { msgnum => $msgnum });
923       $error = $msg_template->send( 'cust_main' => $self->cust_main,
924                                     'object'    => $self );
925     }
926     else {
927       $error = send_email(
928         'from'    => $conf->config('invoice_from', $self->cust_main->agentnum),
929         'to'      => \@invoicing_list,
930         'subject' => ( $conf->config('cancelsubject') || 'Cancellation Notice' ),
931         'body'    => [ map "$_\n", $conf->config('cancelmessage') ],
932       );
933     }
934     #should this do something on errors?
935   }
936
937   ''; #no errors
938
939 }
940
941 =item cancel_if_expired [ NOW_TIMESTAMP ]
942
943 Cancels this package if its expire date has been reached.
944
945 =cut
946
947 sub cancel_if_expired {
948   my $self = shift;
949   my $time = shift || time;
950   return '' unless $self->expire && $self->expire <= $time;
951   my $error = $self->cancel;
952   if ( $error ) {
953     return "Error cancelling expired pkg ". $self->pkgnum. " for custnum ".
954            $self->custnum. ": $error";
955   }
956   '';
957 }
958
959 =item uncancel
960
961 "Un-cancels" this package: Orders a new package with the same custnum, pkgpart,
962 locationnum, (other fields?).  Attempts to re-provision cancelled services
963 using history information (errors at this stage are not fatal).
964
965 cust_pkg: pass a scalar reference, will be filled in with the new cust_pkg object
966
967 svc_fatal: service provisioning errors are fatal
968
969 svc_errors: pass an array reference, will be filled in with any provisioning errors
970
971 main_pkgnum: link the package as a supplemental package of this one.  For 
972 internal use only.
973
974 =cut
975
976 sub uncancel {
977   my( $self, %options ) = @_;
978
979   #in case you try do do $uncancel-date = $cust_pkg->uncacel 
980   return '' unless $self->get('cancel');
981
982   if ( $self->main_pkgnum and !$options{'main_pkgnum'} ) {
983     return $self->main_pkg->uncancel(%options);
984   }
985
986   ##
987   # Transaction-alize
988   ##
989
990   local $SIG{HUP} = 'IGNORE';
991   local $SIG{INT} = 'IGNORE'; 
992   local $SIG{QUIT} = 'IGNORE';
993   local $SIG{TERM} = 'IGNORE';
994   local $SIG{TSTP} = 'IGNORE'; 
995   local $SIG{PIPE} = 'IGNORE'; 
996
997   my $oldAutoCommit = $FS::UID::AutoCommit;
998   local $FS::UID::AutoCommit = 0;
999   my $dbh = dbh;
1000
1001   ##
1002   # insert the new package
1003   ##
1004
1005   my $cust_pkg = new FS::cust_pkg {
1006     last_bill       => ( $options{'last_bill'} || $self->get('last_bill') ),
1007     bill            => ( $options{'bill'}      || $self->get('bill')      ),
1008     uncancel        => time,
1009     uncancel_pkgnum => $self->pkgnum,
1010     main_pkgnum     => ($options{'main_pkgnum'} || ''),
1011     map { $_ => $self->get($_) } qw(
1012       custnum pkgpart locationnum
1013       setup
1014       susp adjourn resume expire start_date contract_end dundate
1015       change_date change_pkgpart change_locationnum
1016       manual_flag no_auto quantity agent_pkgid recur_show_zero setup_show_zero
1017     ),
1018   };
1019
1020   my $error = $cust_pkg->insert(
1021     'change' => 1, #supresses any referral credit to a referring customer
1022     'allow_pkgpart' => 1, # allow this even if the package def is disabled
1023   );
1024   if ($error) {
1025     $dbh->rollback if $oldAutoCommit;
1026     return $error;
1027   }
1028
1029   ##
1030   # insert services
1031   ##
1032
1033   #find historical services within this timeframe before the package cancel
1034   # (incompatible with "time" option to cust_pkg->cancel?)
1035   my $fuzz = 2 * 60; #2 minutes?  too much?   (might catch separate unprovision)
1036                      #            too little? (unprovisioing export delay?)
1037   my($end, $start) = ( $self->get('cancel'), $self->get('cancel') - $fuzz );
1038   my @h_cust_svc = $self->h_cust_svc( $end, $start );
1039
1040   my @svc_errors;
1041   foreach my $h_cust_svc (@h_cust_svc) {
1042     my $h_svc_x = $h_cust_svc->h_svc_x( $end, $start );
1043     #next unless $h_svc_x; #should this happen?
1044     (my $table = $h_svc_x->table) =~ s/^h_//;
1045     require "FS/$table.pm";
1046     my $class = "FS::$table";
1047     my $svc_x = $class->new( {
1048       'pkgnum'  => $cust_pkg->pkgnum,
1049       'svcpart' => $h_cust_svc->svcpart,
1050       map { $_ => $h_svc_x->get($_) } fields($table)
1051     } );
1052
1053     # radius_usergroup
1054     if ( $h_svc_x->isa('FS::h_svc_Radius_Mixin') ) {
1055       $svc_x->usergroup( [ $h_svc_x->h_usergroup($end, $start) ] );
1056     }
1057
1058     my $svc_error = $svc_x->insert;
1059     if ( $svc_error ) {
1060       if ( $options{svc_fatal} ) {
1061         $dbh->rollback if $oldAutoCommit;
1062         return $svc_error;
1063       } else {
1064         # if we've failed to insert the svc_x object, svc_Common->insert 
1065         # will have removed the cust_svc already.  if not, then both records
1066         # were inserted but we failed for some other reason (export, most 
1067         # likely).  in that case, report the error and delete the records.
1068         push @svc_errors, $svc_error;
1069         my $cust_svc = qsearchs('cust_svc', { 'svcnum' => $svc_x->svcnum });
1070         if ( $cust_svc ) {
1071           # except if export_insert failed, export_delete probably won't be
1072           # much better
1073           local $FS::svc_Common::noexport_hack = 1;
1074           my $cleanup_error = $svc_x->delete; # also deletes cust_svc
1075           if ( $cleanup_error ) { # and if THAT fails, then run away
1076             $dbh->rollback if $oldAutoCommit;
1077             return $cleanup_error;
1078           }
1079         }
1080       } # svc_fatal
1081     } # svc_error
1082   } #foreach $h_cust_svc
1083
1084   #these are pretty rare, but should handle them
1085   # - dsl_device (mac addresses)
1086   # - phone_device (mac addresses)
1087   # - dsl_note (ikano notes)
1088   # - domain_record (i.e. restore DNS information w/domains)
1089   # - inventory_item(?) (inventory w/un-cancelling service?)
1090   # - nas (svc_broaband nas stuff)
1091   #this stuff is unused in the wild afaik
1092   # - mailinglistmember
1093   # - router.svcnum?
1094   # - svc_domain.parent_svcnum?
1095   # - acct_snarf (ancient mail fetching config)
1096   # - cgp_rule (communigate)
1097   # - cust_svc_option (used by our Tron stuff)
1098   # - acct_rt_transaction (used by our time worked stuff)
1099
1100   ##
1101   # also move over any services that didn't unprovision at cancellation
1102   ## 
1103
1104   foreach my $cust_svc ( qsearch('cust_svc', { pkgnum => $self->pkgnum } ) ) {
1105     $cust_svc->pkgnum( $cust_pkg->pkgnum );
1106     my $error = $cust_svc->replace;
1107     if ( $error ) {
1108       $dbh->rollback if $oldAutoCommit;
1109       return $error;
1110     }
1111   }
1112
1113   ##
1114   # Uncancel any supplemental packages, and make them supplemental to the 
1115   # new one.
1116   ##
1117
1118   foreach my $supp_pkg ( $self->supplemental_pkgs ) {
1119     my $new_pkg;
1120     $error = $supp_pkg->uncancel(%options, 'main_pkgnum' => $cust_pkg->pkgnum);
1121     if ( $error ) {
1122       $dbh->rollback if $oldAutoCommit;
1123       return "canceling supplemental pkg#".$supp_pkg->pkgnum.": $error";
1124     }
1125   }
1126
1127   ##
1128   # Finish
1129   ##
1130
1131   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1132
1133   ${ $options{cust_pkg} }   = $cust_pkg   if ref($options{cust_pkg});
1134   @{ $options{svc_errors} } = @svc_errors if ref($options{svc_errors});
1135
1136   '';
1137 }
1138
1139 =item unexpire
1140
1141 Cancels any pending expiration (sets the expire field to null).
1142
1143 If there is an error, returns the error, otherwise returns false.
1144
1145 =cut
1146
1147 sub unexpire {
1148   my( $self, %options ) = @_;
1149   my $error;
1150
1151   local $SIG{HUP} = 'IGNORE';
1152   local $SIG{INT} = 'IGNORE';
1153   local $SIG{QUIT} = 'IGNORE';
1154   local $SIG{TERM} = 'IGNORE';
1155   local $SIG{TSTP} = 'IGNORE';
1156   local $SIG{PIPE} = 'IGNORE';
1157
1158   my $oldAutoCommit = $FS::UID::AutoCommit;
1159   local $FS::UID::AutoCommit = 0;
1160   my $dbh = dbh;
1161
1162   my $old = $self->select_for_update;
1163
1164   my $pkgnum = $old->pkgnum;
1165   if ( $old->get('cancel') || $self->get('cancel') ) {
1166     dbh->rollback if $oldAutoCommit;
1167     return "Can't unexpire cancelled package $pkgnum";
1168     # or at least it's pointless
1169   }
1170
1171   unless ( $old->get('expire') && $self->get('expire') ) {
1172     dbh->rollback if $oldAutoCommit;
1173     return "";  # no error
1174   }
1175
1176   my %hash = $self->hash;
1177   $hash{'expire'} = '';
1178   my $new = new FS::cust_pkg ( \%hash );
1179   $error = $new->replace( $self, options => { $self->options } );
1180   if ( $error ) {
1181     $dbh->rollback if $oldAutoCommit;
1182     return $error;
1183   }
1184
1185   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1186
1187   ''; #no errors
1188
1189 }
1190
1191 =item suspend [ OPTION => VALUE ... ]
1192
1193 Suspends all services (see L<FS::cust_svc> and L<FS::part_svc>) in this
1194 package, then suspends the package itself (sets the susp field to now).
1195
1196 Available options are:
1197
1198 =over 4
1199
1200 =item reason - can be set to a cancellation reason (see L<FS:reason>), 
1201 either a reasonnum of an existing reason, or passing a hashref will create 
1202 a new reason.  The hashref should have the following keys: 
1203 - typenum - Reason type (see L<FS::reason_type>
1204 - reason - Text of the new reason.
1205
1206 =item date - can be set to a unix style timestamp to specify when to 
1207 suspend (adjourn)
1208
1209 =item time - can be set to override the current time, for calculation 
1210 of final invoices or unused-time credits
1211
1212 =item resume_date - can be set to a time when the package should be 
1213 unsuspended.  This may be more convenient than calling C<unsuspend()>
1214 separately.
1215
1216 =item from_main - allows a supplemental package to be suspended, rather
1217 than redirecting the method call to its main package.  For internal use.
1218
1219 =back
1220
1221 If there is an error, returns the error, otherwise returns false.
1222
1223 =cut
1224
1225 sub suspend {
1226   my( $self, %options ) = @_;
1227   my $error;
1228
1229   # pass all suspend/cancel actions to the main package
1230   if ( $self->main_pkgnum and !$options{'from_main'} ) {
1231     return $self->main_pkg->suspend(%options);
1232   }
1233
1234   local $SIG{HUP} = 'IGNORE';
1235   local $SIG{INT} = 'IGNORE';
1236   local $SIG{QUIT} = 'IGNORE'; 
1237   local $SIG{TERM} = 'IGNORE';
1238   local $SIG{TSTP} = 'IGNORE';
1239   local $SIG{PIPE} = 'IGNORE';
1240
1241   my $oldAutoCommit = $FS::UID::AutoCommit;
1242   local $FS::UID::AutoCommit = 0;
1243   my $dbh = dbh;
1244
1245   my $old = $self->select_for_update;
1246
1247   my $pkgnum = $old->pkgnum;
1248   if ( $old->get('cancel') || $self->get('cancel') ) {
1249     dbh->rollback if $oldAutoCommit;
1250     return "Can't suspend cancelled package $pkgnum";
1251   }
1252
1253   if ( $old->get('susp') || $self->get('susp') ) {
1254     dbh->rollback if $oldAutoCommit;
1255     return "";  # no error                     # complain on adjourn?
1256   }
1257
1258   my $suspend_time = $options{'time'} || time;
1259   my $date = $options{date} if $options{date}; # adjourn/suspend later
1260   $date = '' if ($date && $date <= $suspend_time); # complain instead?
1261
1262   if ( $date && $old->get('expire') && $old->get('expire') < $date ) {
1263     dbh->rollback if $oldAutoCommit;
1264     return "Package $pkgnum expires before it would be suspended.";
1265   }
1266
1267   # some false laziness with sub cancel
1268   if ( !$options{nobill} && !$date &&
1269        $self->part_pkg->option('bill_suspend_as_cancel',1) ) {
1270     # kind of a kludge--'bill_suspend_as_cancel' to avoid having to 
1271     # make the entire cust_main->bill path recognize 'suspend' and 
1272     # 'cancel' separately.
1273     warn "Billing $pkgnum on suspension (at $suspend_time)\n" if $DEBUG;
1274     my $copy = $self->new({$self->hash});
1275     my $error =
1276       $copy->cust_main->bill( 'pkg_list' => [ $copy ], 
1277                               'cancel'   => 1,
1278                               'time'     => $suspend_time );
1279     warn "Error billing during suspend, custnum ".
1280       #$self->cust_main->custnum. ": $error"
1281       ": $error"
1282       if $error;
1283   }
1284
1285   if ( $options{'reason'} ) {
1286     $error = $self->insert_reason( 'reason' => $options{'reason'},
1287                                    'action' => $date ? 'adjourn' : 'suspend',
1288                                    'date'   => $date ? $date : $suspend_time,
1289                                    'reason_otaker' => $options{'reason_otaker'},
1290                                  );
1291     if ( $error ) {
1292       dbh->rollback if $oldAutoCommit;
1293       return "Error inserting cust_pkg_reason: $error";
1294     }
1295   }
1296
1297   my %hash = $self->hash;
1298   if ( $date ) {
1299     $hash{'adjourn'} = $date;
1300   } else {
1301     $hash{'susp'} = $suspend_time;
1302   }
1303
1304   my $resume_date = $options{'resume_date'} || 0;
1305   if ( $resume_date > ($date || $suspend_time) ) {
1306     $hash{'resume'} = $resume_date;
1307   }
1308
1309   $options{options} ||= {};
1310
1311   my $new = new FS::cust_pkg ( \%hash );
1312   $error = $new->replace( $self, options => { $self->options,
1313                                               %{ $options{options} },
1314                                             }
1315                         );
1316   if ( $error ) {
1317     $dbh->rollback if $oldAutoCommit;
1318     return $error;
1319   }
1320
1321   unless ( $date ) {
1322     # credit remaining time if appropriate
1323     if ( $self->part_pkg->option('unused_credit_suspend', 1) ) {
1324       my $error = $self->credit_remaining('suspend', $suspend_time);
1325       if ($error) {
1326         $dbh->rollback if $oldAutoCommit;
1327         return $error;
1328       }
1329     }
1330
1331     my @labels = ();
1332
1333     foreach my $cust_svc (
1334       qsearch( 'cust_svc', { 'pkgnum' => $self->pkgnum } )
1335     ) {
1336       my $part_svc = qsearchs( 'part_svc', { 'svcpart' => $cust_svc->svcpart } );
1337
1338       $part_svc->svcdb =~ /^([\w\-]+)$/ or do {
1339         $dbh->rollback if $oldAutoCommit;
1340         return "Illegal svcdb value in part_svc!";
1341       };
1342       my $svcdb = $1;
1343       require "FS/$svcdb.pm";
1344
1345       my $svc = qsearchs( $svcdb, { 'svcnum' => $cust_svc->svcnum } );
1346       if ($svc) {
1347         $error = $svc->suspend;
1348         if ( $error ) {
1349           $dbh->rollback if $oldAutoCommit;
1350           return $error;
1351         }
1352         my( $label, $value ) = $cust_svc->label;
1353         push @labels, "$label: $value";
1354       }
1355     }
1356
1357     my $conf = new FS::Conf;
1358     if ( $conf->config('suspend_email_admin') ) {
1359  
1360       my $error = send_email(
1361         'from'    => $conf->config('invoice_from', $self->cust_main->agentnum),
1362                                    #invoice_from ??? well as good as any
1363         'to'      => $conf->config('suspend_email_admin'),
1364         'subject' => 'FREESIDE NOTIFICATION: Customer package suspended',
1365         'body'    => [
1366           "This is an automatic message from your Freeside installation\n",
1367           "informing you that the following customer package has been suspended:\n",
1368           "\n",
1369           'Customer: #'. $self->custnum. ' '. $self->cust_main->name. "\n",
1370           'Package : #'. $self->pkgnum. " (". $self->part_pkg->pkg_comment. ")\n",
1371           ( map { "Service : $_\n" } @labels ),
1372         ],
1373       );
1374
1375       if ( $error ) {
1376         warn "WARNING: can't send suspension admin email (suspending anyway): ".
1377              "$error\n";
1378       }
1379
1380     }
1381
1382   }
1383
1384   foreach my $supp_pkg ( $self->supplemental_pkgs ) {
1385     $error = $supp_pkg->suspend(%options, 'from_main' => 1);
1386     if ( $error ) {
1387       $dbh->rollback if $oldAutoCommit;
1388       return "suspending supplemental pkg#".$supp_pkg->pkgnum.": $error";
1389     }
1390   }
1391
1392   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1393
1394   ''; #no errors
1395 }
1396
1397 =item credit_remaining MODE TIME
1398
1399 Generate a credit for this package for the time remaining in the current 
1400 billing period.  MODE is either "suspend" or "cancel" (determines the 
1401 credit type).  TIME is the time of suspension/cancellation.  Both arguments
1402 are mandatory.
1403
1404 =cut
1405
1406 sub credit_remaining {
1407   # Add a credit for remaining service
1408   my ($self, $mode, $time) = @_;
1409   die 'credit_remaining requires suspend or cancel' 
1410     unless $mode eq 'suspend' or $mode eq 'cancel';
1411   die 'no suspend/cancel time' unless $time > 0;
1412
1413   my $conf = FS::Conf->new;
1414   my $reason_type = $conf->config($mode.'_credit_type');
1415
1416   my $last_bill = $self->getfield('last_bill') || 0;
1417   my $next_bill = $self->getfield('bill') || 0;
1418   if ( $last_bill > 0         # the package has been billed
1419       and $next_bill > 0      # the package has a next bill date
1420       and $next_bill >= $time # which is in the future
1421   ) {
1422     my $remaining_value = $self->calc_remain('time' => $time);
1423     if ( $remaining_value > 0 ) {
1424       warn "Crediting for $remaining_value on package ".$self->pkgnum."\n"
1425         if $DEBUG;
1426       my $error = $self->cust_main->credit(
1427         $remaining_value,
1428         'Credit for unused time on '. $self->part_pkg->pkg,
1429         'reason_type' => $reason_type,
1430       );
1431       return "Error crediting customer \$$remaining_value for unused time".
1432         " on ". $self->part_pkg->pkg. ": $error"
1433         if $error;
1434     } #if $remaining_value
1435   } #if $last_bill, etc.
1436   '';
1437 }
1438
1439 =item unsuspend [ OPTION => VALUE ... ]
1440
1441 Unsuspends all services (see L<FS::cust_svc> and L<FS::part_svc>) in this
1442 package, then unsuspends the package itself (clears the susp field and the
1443 adjourn field if it is in the past).  If the suspend reason includes an 
1444 unsuspension package, that package will be ordered.
1445
1446 Available options are:
1447
1448 =over 4
1449
1450 =item date
1451
1452 Can be set to a date to unsuspend the package in the future (the 'resume' 
1453 field).
1454
1455 =item adjust_next_bill
1456
1457 Can be set true to adjust the next bill date forward by
1458 the amount of time the account was inactive.  This was set true by default
1459 in the past (from 1.4.2 and 1.5.0pre6 through 1.7.0), but now needs to be
1460 explicitly requested with this option or in the price plan.
1461
1462 =back
1463
1464 If there is an error, returns the error, otherwise returns false.
1465
1466 =cut
1467
1468 sub unsuspend {
1469   my( $self, %opt ) = @_;
1470   my $error;
1471
1472   # pass all suspend/cancel actions to the main package
1473   if ( $self->main_pkgnum and !$opt{'from_main'} ) {
1474     return $self->main_pkg->unsuspend(%opt);
1475   }
1476
1477   local $SIG{HUP} = 'IGNORE';
1478   local $SIG{INT} = 'IGNORE';
1479   local $SIG{QUIT} = 'IGNORE'; 
1480   local $SIG{TERM} = 'IGNORE';
1481   local $SIG{TSTP} = 'IGNORE';
1482   local $SIG{PIPE} = 'IGNORE';
1483
1484   my $oldAutoCommit = $FS::UID::AutoCommit;
1485   local $FS::UID::AutoCommit = 0;
1486   my $dbh = dbh;
1487
1488   my $old = $self->select_for_update;
1489
1490   my $pkgnum = $old->pkgnum;
1491   if ( $old->get('cancel') || $self->get('cancel') ) {
1492     $dbh->rollback if $oldAutoCommit;
1493     return "Can't unsuspend cancelled package $pkgnum";
1494   }
1495
1496   unless ( $old->get('susp') && $self->get('susp') ) {
1497     $dbh->rollback if $oldAutoCommit;
1498     return "";  # no error                     # complain instead?
1499   }
1500
1501   my $date = $opt{'date'};
1502   if ( $date and $date > time ) { # return an error if $date <= time?
1503
1504     if ( $old->get('expire') && $old->get('expire') < $date ) {
1505       $dbh->rollback if $oldAutoCommit;
1506       return "Package $pkgnum expires before it would be unsuspended.";
1507     }
1508
1509     my $new = new FS::cust_pkg { $self->hash };
1510     $new->set('resume', $date);
1511     $error = $new->replace($self, options => $self->options);
1512
1513     if ( $error ) {
1514       $dbh->rollback if $oldAutoCommit;
1515       return $error;
1516     }
1517     else {
1518       $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1519       return '';
1520     }
1521   
1522   } #if $date 
1523
1524   my @labels = ();
1525
1526   foreach my $cust_svc (
1527     qsearch('cust_svc',{'pkgnum'=> $self->pkgnum } )
1528   ) {
1529     my $part_svc = qsearchs( 'part_svc', { 'svcpart' => $cust_svc->svcpart } );
1530
1531     $part_svc->svcdb =~ /^([\w\-]+)$/ or do {
1532       $dbh->rollback if $oldAutoCommit;
1533       return "Illegal svcdb value in part_svc!";
1534     };
1535     my $svcdb = $1;
1536     require "FS/$svcdb.pm";
1537
1538     my $svc = qsearchs( $svcdb, { 'svcnum' => $cust_svc->svcnum } );
1539     if ($svc) {
1540       $error = $svc->unsuspend;
1541       if ( $error ) {
1542         $dbh->rollback if $oldAutoCommit;
1543         return $error;
1544       }
1545       my( $label, $value ) = $cust_svc->label;
1546       push @labels, "$label: $value";
1547     }
1548
1549   }
1550
1551   my $cust_pkg_reason = $self->last_cust_pkg_reason('susp');
1552   my $reason = $cust_pkg_reason ? $cust_pkg_reason->reason : '';
1553
1554   my %hash = $self->hash;
1555   my $inactive = time - $hash{'susp'};
1556
1557   my $conf = new FS::Conf;
1558
1559   if ( $inactive > 0 && 
1560        ( $hash{'bill'} || $hash{'setup'} ) &&
1561        ( $opt{'adjust_next_bill'} ||
1562          $conf->exists('unsuspend-always_adjust_next_bill_date') ||
1563          $self->part_pkg->option('unsuspend_adjust_bill', 1) )
1564      ) {
1565
1566     $hash{'bill'} = ( $hash{'bill'} || $hash{'setup'} ) + $inactive;
1567   
1568   }
1569
1570   $hash{'susp'} = '';
1571   $hash{'adjourn'} = '' if $hash{'adjourn'} and $hash{'adjourn'} < time;
1572   $hash{'resume'} = '' if !$hash{'adjourn'};
1573   my $new = new FS::cust_pkg ( \%hash );
1574   $error = $new->replace( $self, options => { $self->options } );
1575   if ( $error ) {
1576     $dbh->rollback if $oldAutoCommit;
1577     return $error;
1578   }
1579
1580   my $unsusp_pkg;
1581
1582   if ( $reason && $reason->unsuspend_pkgpart ) {
1583     my $part_pkg = FS::part_pkg->by_key($reason->unsuspend_pkgpart)
1584       or $error = "Unsuspend package definition ".$reason->unsuspend_pkgpart.
1585                   " not found.";
1586     my $start_date = $self->cust_main->next_bill_date 
1587       if $reason->unsuspend_hold;
1588
1589     if ( $part_pkg ) {
1590       $unsusp_pkg = FS::cust_pkg->new({
1591           'custnum'     => $self->custnum,
1592           'pkgpart'     => $reason->unsuspend_pkgpart,
1593           'start_date'  => $start_date,
1594           'locationnum' => $self->locationnum,
1595           # discount? probably not...
1596       });
1597       
1598       $error ||= $self->cust_main->order_pkg( 'cust_pkg' => $unsusp_pkg );
1599     }
1600
1601     if ( $error ) {
1602       $dbh->rollback if $oldAutoCommit;
1603       return $error;
1604     }
1605   }
1606
1607   if ( $conf->config('unsuspend_email_admin') ) {
1608  
1609     my $error = send_email(
1610       'from'    => $conf->config('invoice_from', $self->cust_main->agentnum),
1611                                  #invoice_from ??? well as good as any
1612       'to'      => $conf->config('unsuspend_email_admin'),
1613       'subject' => 'FREESIDE NOTIFICATION: Customer package unsuspended',       'body'    => [
1614         "This is an automatic message from your Freeside installation\n",
1615         "informing you that the following customer package has been unsuspended:\n",
1616         "\n",
1617         'Customer: #'. $self->custnum. ' '. $self->cust_main->name. "\n",
1618         'Package : #'. $self->pkgnum. " (". $self->part_pkg->pkg_comment. ")\n",
1619         ( map { "Service : $_\n" } @labels ),
1620         ($unsusp_pkg ?
1621           "An unsuspension fee was charged: ".
1622             $unsusp_pkg->part_pkg->pkg_comment."\n"
1623           : ''
1624         ),
1625       ],
1626     );
1627
1628     if ( $error ) {
1629       warn "WARNING: can't send unsuspension admin email (unsuspending anyway): ".
1630            "$error\n";
1631     }
1632
1633   }
1634
1635   foreach my $supp_pkg ( $self->supplemental_pkgs ) {
1636     $error = $supp_pkg->unsuspend(%opt, 'from_main' => 1);
1637     if ( $error ) {
1638       $dbh->rollback if $oldAutoCommit;
1639       return "unsuspending supplemental pkg#".$supp_pkg->pkgnum.": $error";
1640     }
1641   }
1642
1643   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1644
1645   ''; #no errors
1646 }
1647
1648 =item unadjourn
1649
1650 Cancels any pending suspension (sets the adjourn field to null).
1651
1652 If there is an error, returns the error, otherwise returns false.
1653
1654 =cut
1655
1656 sub unadjourn {
1657   my( $self, %options ) = @_;
1658   my $error;
1659
1660   local $SIG{HUP} = 'IGNORE';
1661   local $SIG{INT} = 'IGNORE';
1662   local $SIG{QUIT} = 'IGNORE'; 
1663   local $SIG{TERM} = 'IGNORE';
1664   local $SIG{TSTP} = 'IGNORE';
1665   local $SIG{PIPE} = 'IGNORE';
1666
1667   my $oldAutoCommit = $FS::UID::AutoCommit;
1668   local $FS::UID::AutoCommit = 0;
1669   my $dbh = dbh;
1670
1671   my $old = $self->select_for_update;
1672
1673   my $pkgnum = $old->pkgnum;
1674   if ( $old->get('cancel') || $self->get('cancel') ) {
1675     dbh->rollback if $oldAutoCommit;
1676     return "Can't unadjourn cancelled package $pkgnum";
1677     # or at least it's pointless
1678   }
1679
1680   if ( $old->get('susp') || $self->get('susp') ) {
1681     dbh->rollback if $oldAutoCommit;
1682     return "Can't unadjourn suspended package $pkgnum";
1683     # perhaps this is arbitrary
1684   }
1685
1686   unless ( $old->get('adjourn') && $self->get('adjourn') ) {
1687     dbh->rollback if $oldAutoCommit;
1688     return "";  # no error
1689   }
1690
1691   my %hash = $self->hash;
1692   $hash{'adjourn'} = '';
1693   $hash{'resume'}  = '';
1694   my $new = new FS::cust_pkg ( \%hash );
1695   $error = $new->replace( $self, options => { $self->options } );
1696   if ( $error ) {
1697     $dbh->rollback if $oldAutoCommit;
1698     return $error;
1699   }
1700
1701   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1702
1703   ''; #no errors
1704
1705 }
1706
1707
1708 =item change HASHREF | OPTION => VALUE ... 
1709
1710 Changes this package: cancels it and creates a new one, with a different
1711 pkgpart or locationnum or both.  All services are transferred to the new
1712 package (no change will be made if this is not possible).
1713
1714 Options may be passed as a list of key/value pairs or as a hash reference.
1715 Options are:
1716
1717 =over 4
1718
1719 =item locationnum
1720
1721 New locationnum, to change the location for this package.
1722
1723 =item cust_location
1724
1725 New FS::cust_location object, to create a new location and assign it
1726 to this package.
1727
1728 =item cust_main
1729
1730 New FS::cust_main object, to create a new customer and assign the new package
1731 to it.
1732
1733 =item pkgpart
1734
1735 New pkgpart (see L<FS::part_pkg>).
1736
1737 =item refnum
1738
1739 New refnum (see L<FS::part_referral>).
1740
1741 =item quantity
1742
1743 New quantity; if unspecified, the new package will have the same quantity
1744 as the old.
1745
1746 =item cust_pkg
1747
1748 "New" (existing) FS::cust_pkg object.  The package's services and other 
1749 attributes will be transferred to this package.
1750
1751 =item keep_dates
1752
1753 Set to true to transfer billing dates (start_date, setup, last_bill, bill, 
1754 susp, adjourn, cancel, expire, and contract_end) to the new package.
1755
1756 =item unprotect_svcs
1757
1758 Normally, change() will rollback and return an error if some services 
1759 can't be transferred (also see the I<cust_pkg-change_svcpart> config option).
1760 If unprotect_svcs is true, this method will transfer as many services as 
1761 it can and then unconditionally cancel the old package.
1762
1763 =back
1764
1765 At least one of locationnum, cust_location, pkgpart, refnum, cust_main, or
1766 cust_pkg must be specified (otherwise, what's the point?)
1767
1768 Returns either the new FS::cust_pkg object or a scalar error.
1769
1770 For example:
1771
1772   my $err_or_new_cust_pkg = $old_cust_pkg->change
1773
1774 =cut
1775
1776 #some false laziness w/order
1777 sub change {
1778   my $self = shift;
1779   my $opt = ref($_[0]) ? shift : { @_ };
1780
1781   my $conf = new FS::Conf;
1782
1783   # Transactionize this whole mess
1784   local $SIG{HUP} = 'IGNORE';
1785   local $SIG{INT} = 'IGNORE'; 
1786   local $SIG{QUIT} = 'IGNORE';
1787   local $SIG{TERM} = 'IGNORE';
1788   local $SIG{TSTP} = 'IGNORE'; 
1789   local $SIG{PIPE} = 'IGNORE'; 
1790
1791   my $oldAutoCommit = $FS::UID::AutoCommit;
1792   local $FS::UID::AutoCommit = 0;
1793   my $dbh = dbh;
1794
1795   my $error;
1796
1797   my %hash = (); 
1798
1799   my $time = time;
1800
1801   $hash{'setup'} = $time if $self->setup;
1802
1803   $hash{'change_date'} = $time;
1804   $hash{"change_$_"}  = $self->$_()
1805     foreach qw( pkgnum pkgpart locationnum );
1806
1807   if ( $opt->{'cust_location'} ) {
1808     $error = $opt->{'cust_location'}->find_or_insert;
1809     if ( $error ) {
1810       $dbh->rollback if $oldAutoCommit;
1811       return "inserting cust_location (transaction rolled back): $error";
1812     }
1813     $opt->{'locationnum'} = $opt->{'cust_location'}->locationnum;
1814   }
1815
1816   if ( $opt->{'cust_pkg'} ) {
1817     # treat changing to a package with a different pkgpart as a 
1818     # pkgpart change (because it is)
1819     $opt->{'pkgpart'} = $opt->{'cust_pkg'}->pkgpart;
1820   }
1821
1822   # whether to override pkgpart checking on the new package
1823   my $same_pkgpart = 1;
1824   if ( $opt->{'pkgpart'} and ( $opt->{'pkgpart'} != $self->pkgpart ) ) {
1825     $same_pkgpart = 0;
1826   }
1827
1828   my $unused_credit = 0;
1829   my $keep_dates = $opt->{'keep_dates'};
1830   # Special case.  If the pkgpart is changing, and the customer is
1831   # going to be credited for remaining time, don't keep setup, bill, 
1832   # or last_bill dates, and DO pass the flag to cancel() to credit 
1833   # the customer.
1834   if ( $opt->{'pkgpart'} 
1835        and $opt->{'pkgpart'} != $self->pkgpart
1836        and $self->part_pkg->option('unused_credit_change', 1) ) {
1837     $unused_credit = 1;
1838     $keep_dates = 0;
1839     $hash{$_} = '' foreach qw(setup bill last_bill);
1840   }
1841
1842   if ( $keep_dates ) {
1843     foreach my $date ( qw(setup bill last_bill susp adjourn cancel expire 
1844                           resume start_date contract_end ) ) {
1845       $hash{$date} = $self->getfield($date);
1846     }
1847   }
1848
1849   # allow $opt->{'locationnum'} = '' to specifically set it to null
1850   # (i.e. customer default location)
1851   $opt->{'locationnum'} = $self->locationnum if !exists($opt->{'locationnum'});
1852
1853   # usually this doesn't matter.  the two cases where it does are:
1854   # 1. unused_credit_change + pkgpart change + setup fee on the new package
1855   # and
1856   # 2. (more importantly) changing a package before it's billed
1857   $hash{'waive_setup'} = $self->waive_setup;
1858
1859   my $custnum = $self->custnum;
1860   if ( $opt->{cust_main} ) {
1861     my $cust_main = $opt->{cust_main};
1862     unless ( $cust_main->custnum ) { 
1863       my $error = $cust_main->insert;
1864       if ( $error ) {
1865         $dbh->rollback if $oldAutoCommit;
1866         return "inserting cust_main (transaction rolled back): $error";
1867       }
1868     }
1869     $custnum = $cust_main->custnum;
1870   }
1871
1872   $hash{'contactnum'} = $opt->{'contactnum'} if $opt->{'contactnum'};
1873
1874   my $cust_pkg;
1875   if ( $opt->{'cust_pkg'} ) {
1876     # The target package already exists; update it to show that it was 
1877     # changed from this package.
1878     $cust_pkg = $opt->{'cust_pkg'};
1879
1880     foreach ( qw( pkgnum pkgpart locationnum ) ) {
1881       $cust_pkg->set("change_$_", $self->get($_));
1882     }
1883     $cust_pkg->set('change_date', $time);
1884     $error = $cust_pkg->replace;
1885
1886   } else {
1887     # Create the new package.
1888     $cust_pkg = new FS::cust_pkg {
1889       custnum     => $custnum,
1890       locationnum => $opt->{'locationnum'},
1891       ( map {  $_ => ( $opt->{$_} || $self->$_() )  }
1892           qw( pkgpart quantity refnum salesnum )
1893       ),
1894       %hash,
1895     };
1896     $error = $cust_pkg->insert( 'change' => 1,
1897                                 'allow_pkgpart' => $same_pkgpart );
1898   }
1899   if ($error) {
1900     $dbh->rollback if $oldAutoCommit;
1901     return $error;
1902   }
1903
1904   # Transfer services and cancel old package.
1905
1906   $error = $self->transfer($cust_pkg);
1907   if ($error and $error == 0) {
1908     # $old_pkg->transfer failed.
1909     $dbh->rollback if $oldAutoCommit;
1910     return $error;
1911   }
1912
1913   if ( $error > 0 && $conf->exists('cust_pkg-change_svcpart') ) {
1914     warn "trying transfer again with change_svcpart option\n" if $DEBUG;
1915     $error = $self->transfer($cust_pkg, 'change_svcpart'=>1 );
1916     if ($error and $error == 0) {
1917       # $old_pkg->transfer failed.
1918       $dbh->rollback if $oldAutoCommit;
1919       return $error;
1920     }
1921   }
1922
1923   # We set unprotect_svcs when executing a "future package change".  It's 
1924   # not a user-interactive operation, so returning an error means the 
1925   # package change will just fail.  Rather than have that happen, we'll 
1926   # let leftover services be deleted.
1927   if ($error > 0 and !$opt->{'unprotect_svcs'}) {
1928     # Transfers were successful, but we still had services left on the old
1929     # package.  We can't change the package under this circumstances, so abort.
1930     $dbh->rollback if $oldAutoCommit;
1931     return "Unable to transfer all services from package ". $self->pkgnum;
1932   }
1933
1934   #reset usage if changing pkgpart
1935   # AND usage rollover is off (otherwise adds twice, now and at package bill)
1936   if ($self->pkgpart != $cust_pkg->pkgpart) {
1937     my $part_pkg = $cust_pkg->part_pkg;
1938     $error = $part_pkg->reset_usage($cust_pkg, $part_pkg->is_prepaid
1939                                                  ? ()
1940                                                  : ( 'null' => 1 )
1941                                    )
1942       if $part_pkg->can('reset_usage') && ! $part_pkg->option('usage_rollover',1);
1943
1944     if ($error) {
1945       $dbh->rollback if $oldAutoCommit;
1946       return "Error setting usage values: $error";
1947     }
1948   } else {
1949     # if NOT changing pkgpart, transfer any usage pools over
1950     foreach my $usage ($self->cust_pkg_usage) {
1951       $usage->set('pkgnum', $cust_pkg->pkgnum);
1952       $error = $usage->replace;
1953       if ( $error ) {
1954         $dbh->rollback if $oldAutoCommit;
1955         return "Error transferring usage pools: $error";
1956       }
1957     }
1958   }
1959
1960   # transfer discounts, if we're not changing pkgpart
1961   if ( $same_pkgpart ) {
1962     foreach my $old_discount ($self->cust_pkg_discount_active) {
1963       # don't remove the old discount, we may still need to bill that package.
1964       my $new_discount = new FS::cust_pkg_discount {
1965         'pkgnum'      => $cust_pkg->pkgnum,
1966         'discountnum' => $old_discount->discountnum,
1967         'months_used' => $old_discount->months_used,
1968       };
1969       $error = $new_discount->insert;
1970       if ( $error ) {
1971         $dbh->rollback if $oldAutoCommit;
1972         return "Error transferring discounts: $error";
1973       }
1974     }
1975   }
1976
1977   # transfer (copy) invoice details
1978   foreach my $detail ($self->cust_pkg_detail) {
1979     my $new_detail = FS::cust_pkg_detail->new({ $detail->hash });
1980     $new_detail->set('pkgdetailnum', '');
1981     $new_detail->set('pkgnum', $cust_pkg->pkgnum);
1982     $error = $new_detail->insert;
1983     if ( $error ) {
1984       $dbh->rollback if $oldAutoCommit;
1985       return "Error transferring package notes: $error";
1986     }
1987   }
1988   
1989   my @new_supp_pkgs;
1990
1991   if ( !$opt->{'cust_pkg'} ) {
1992     # Order any supplemental packages.
1993     my $part_pkg = $cust_pkg->part_pkg;
1994     my @old_supp_pkgs = $self->supplemental_pkgs;
1995     foreach my $link ($part_pkg->supp_part_pkg_link) {
1996       my $old;
1997       foreach (@old_supp_pkgs) {
1998         if ($_->pkgpart == $link->dst_pkgpart) {
1999           $old = $_;
2000           $_->pkgpart(0); # so that it can't match more than once
2001         }
2002         last if $old;
2003       }
2004       # false laziness with FS::cust_main::Packages::order_pkg
2005       my $new = FS::cust_pkg->new({
2006           pkgpart       => $link->dst_pkgpart,
2007           pkglinknum    => $link->pkglinknum,
2008           custnum       => $custnum,
2009           main_pkgnum   => $cust_pkg->pkgnum,
2010           locationnum   => $cust_pkg->locationnum,
2011           start_date    => $cust_pkg->start_date,
2012           order_date    => $cust_pkg->order_date,
2013           expire        => $cust_pkg->expire,
2014           adjourn       => $cust_pkg->adjourn,
2015           contract_end  => $cust_pkg->contract_end,
2016           refnum        => $cust_pkg->refnum,
2017           discountnum   => $cust_pkg->discountnum,
2018           waive_setup   => $cust_pkg->waive_setup,
2019       });
2020       if ( $old and $opt->{'keep_dates'} ) {
2021         foreach (qw(setup bill last_bill)) {
2022           $new->set($_, $old->get($_));
2023         }
2024       }
2025       $error = $new->insert( allow_pkgpart => $same_pkgpart );
2026       # transfer services
2027       if ( $old ) {
2028         $error ||= $old->transfer($new);
2029       }
2030       if ( $error and $error > 0 ) {
2031         # no reason why this should ever fail, but still...
2032         $error = "Unable to transfer all services from supplemental package ".
2033           $old->pkgnum;
2034       }
2035       if ( $error ) {
2036         $dbh->rollback if $oldAutoCommit;
2037         return $error;
2038       }
2039       push @new_supp_pkgs, $new;
2040     }
2041   } # if !$opt->{'cust_pkg'}
2042     # because if there is one, then supplemental packages would already
2043     # have been created for it.
2044
2045   #Good to go, cancel old package.  Notify 'cancel' of whether to credit 
2046   #remaining time.
2047   #Don't allow billing the package (preceding period packages and/or 
2048   #outstanding usage) if we are keeping dates (i.e. location changing), 
2049   #because the new package will be billed for the same date range.
2050   #Supplemental packages are also canceled here.
2051
2052   # during scheduled changes, avoid canceling the package we just
2053   # changed to (duh)
2054   $self->set('change_to_pkgnum' => '');
2055
2056   $error = $self->cancel(
2057     quiet          => 1, 
2058     unused_credit  => $unused_credit,
2059     nobill         => $keep_dates,
2060     change_custnum => ( $self->custnum != $custnum ? $custnum : '' ),
2061   );
2062   if ($error) {
2063     $dbh->rollback if $oldAutoCommit;
2064     return $error;
2065   }
2066
2067   if ( $conf->exists('cust_pkg-change_pkgpart-bill_now') ) {
2068     #$self->cust_main
2069     my $error = $cust_pkg->cust_main->bill( 
2070       'pkg_list' => [ $cust_pkg, @new_supp_pkgs ]
2071     );
2072     if ( $error ) {
2073       $dbh->rollback if $oldAutoCommit;
2074       return $error;
2075     }
2076   }
2077
2078   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
2079
2080   $cust_pkg;
2081
2082 }
2083
2084 =item change_later OPTION => VALUE...
2085
2086 Schedule a package change for a later date.  This actually orders the new
2087 package immediately, but sets its start date for a future date, and sets
2088 the current package to expire on the same date.
2089
2090 If the package is already scheduled for a change, this can be called with 
2091 'start_date' to change the scheduled date, or with pkgpart and/or 
2092 locationnum to modify the package change.  To cancel the scheduled change 
2093 entirely, see C<abort_change>.
2094
2095 Options include:
2096
2097 =over 4
2098
2099 =item start_date
2100
2101 The date for the package change.  Required, and must be in the future.
2102
2103 =item pkgpart
2104
2105 =item locationnum
2106
2107 =item quantity
2108
2109 The pkgpart. locationnum, and quantity of the new package, with the same 
2110 meaning as in C<change>.
2111
2112 =back
2113
2114 =cut
2115
2116 sub change_later {
2117   my $self = shift;
2118   my $opt = ref($_[0]) ? shift : { @_ };
2119
2120   my $oldAutoCommit = $FS::UID::AutoCommit;
2121   local $FS::UID::AutoCommit = 0;
2122   my $dbh = dbh;
2123
2124   my $cust_main = $self->cust_main;
2125
2126   my $date = delete $opt->{'start_date'} or return 'start_date required';
2127  
2128   if ( $date <= time ) {
2129     $dbh->rollback if $oldAutoCommit;
2130     return "start_date $date is in the past";
2131   }
2132
2133   my $error;
2134
2135   if ( $self->change_to_pkgnum ) {
2136     my $change_to = FS::cust_pkg->by_key($self->change_to_pkgnum);
2137     my $new_pkgpart = $opt->{'pkgpart'}
2138         if $opt->{'pkgpart'} and $opt->{'pkgpart'} != $change_to->pkgpart;
2139     my $new_locationnum = $opt->{'locationnum'}
2140         if $opt->{'locationnum'} and $opt->{'locationnum'} != $change_to->locationnum;
2141     my $new_quantity = $opt->{'quantity'}
2142         if $opt->{'quantity'} and $opt->{'quantity'} != $change_to->quantity;
2143     if ( $new_pkgpart or $new_locationnum or $new_quantity ) {
2144       # it hasn't been billed yet, so in principle we could just edit
2145       # it in place (w/o a package change), but that's bad form.
2146       # So change the package according to the new options...
2147       my $err_or_pkg = $change_to->change(%$opt);
2148       if ( ref $err_or_pkg ) {
2149         # Then set that package up for a future start.
2150         $self->set('change_to_pkgnum', $err_or_pkg->pkgnum);
2151         $self->set('expire', $date); # in case it's different
2152         $err_or_pkg->set('start_date', $date);
2153         $err_or_pkg->set('change_date', '');
2154         $err_or_pkg->set('change_pkgnum', '');
2155
2156         $error = $self->replace       ||
2157                  $err_or_pkg->replace ||
2158                  $change_to->cancel   ||
2159                  $change_to->delete;
2160       } else {
2161         $error = $err_or_pkg;
2162       }
2163     } else { # change the start date only.
2164       $self->set('expire', $date);
2165       $change_to->set('start_date', $date);
2166       $error = $self->replace || $change_to->replace;
2167     }
2168     if ( $error ) {
2169       $dbh->rollback if $oldAutoCommit;
2170       return $error;
2171     } else {
2172       $dbh->commit if $oldAutoCommit;
2173       return '';
2174     }
2175   } # if $self->change_to_pkgnum
2176
2177   my $new_pkgpart = $opt->{'pkgpart'}
2178       if $opt->{'pkgpart'} and $opt->{'pkgpart'} != $self->pkgpart;
2179   my $new_locationnum = $opt->{'locationnum'}
2180       if $opt->{'locationnum'} and $opt->{'locationnum'} != $self->locationnum;
2181   my $new_quantity = $opt->{'quantity'}
2182       if $opt->{'quantity'} and $opt->{'quantity'} != $self->quantity;
2183
2184   return '' unless $new_pkgpart or $new_locationnum or $new_quantity; # wouldn't do anything
2185
2186   # allow $opt->{'locationnum'} = '' to specifically set it to null
2187   # (i.e. customer default location)
2188   $opt->{'locationnum'} = $self->locationnum if !exists($opt->{'locationnum'});
2189
2190   my $new = FS::cust_pkg->new( {
2191     custnum     => $self->custnum,
2192     locationnum => $opt->{'locationnum'},
2193     start_date  => $date,
2194     map   {  $_ => ( $opt->{$_} || $self->$_() )  }
2195       qw( pkgpart quantity refnum salesnum )
2196   } );
2197   $error = $new->insert('change' => 1, 
2198                         'allow_pkgpart' => ($new_pkgpart ? 0 : 1));
2199   if ( !$error ) {
2200     $self->set('change_to_pkgnum', $new->pkgnum);
2201     $self->set('expire', $date);
2202     $error = $self->replace;
2203   }
2204   if ( $error ) {
2205     $dbh->rollback if $oldAutoCommit;
2206   } else {
2207     $dbh->commit if $oldAutoCommit;
2208   }
2209
2210   $error;
2211 }
2212
2213 =item abort_change
2214
2215 Cancels a future package change scheduled by C<change_later>.
2216
2217 =cut
2218
2219 sub abort_change {
2220   my $self = shift;
2221   my $pkgnum = $self->change_to_pkgnum;
2222   my $change_to = FS::cust_pkg->by_key($pkgnum) if $pkgnum;
2223   my $error;
2224   if ( $change_to ) {
2225     $error = $change_to->cancel || $change_to->delete;
2226     return $error if $error;
2227   }
2228   $self->set('change_to_pkgnum', '');
2229   $self->set('expire', '');
2230   $self->replace;
2231 }
2232
2233 =item set_quantity QUANTITY
2234
2235 Change the package's quantity field.  This is one of the few package properties
2236 that can safely be changed without canceling and reordering the package
2237 (because it doesn't affect tax eligibility).  Returns an error or an 
2238 empty string.
2239
2240 =cut
2241
2242 sub set_quantity {
2243   my $self = shift;
2244   $self = $self->replace_old; # just to make sure
2245   $self->quantity(shift);
2246   $self->replace;
2247 }
2248
2249 =item set_salesnum SALESNUM
2250
2251 Change the package's salesnum (sales person) field.  This is one of the few
2252 package properties that can safely be changed without canceling and reordering
2253 the package (because it doesn't affect tax eligibility).  Returns an error or
2254 an empty string.
2255
2256 =cut
2257
2258 sub set_salesnum {
2259   my $self = shift;
2260   $self = $self->replace_old; # just to make sure
2261   $self->salesnum(shift);
2262   $self->replace;
2263   # XXX this should probably reassign any credit that's already been given
2264 }
2265
2266 =item modify_charge OPTIONS
2267
2268 Change the properties of a one-time charge.  Currently the only properties
2269 that can be changed this way are those that have no impact on billing 
2270 calculations:
2271 - pkg: the package description
2272 - classnum: the package class
2273 - additional: arrayref of additional invoice details to add to this package
2274
2275 If you pass 'adjust_commission' => 1, and the classnum changes, and there are
2276 commission credits linked to this charge, they will be recalculated.
2277
2278 =cut
2279
2280 sub modify_charge {
2281   my $self = shift;
2282   my %opt = @_;
2283   my $part_pkg = $self->part_pkg;
2284   my $pkgnum = $self->pkgnum;
2285
2286   my $dbh = dbh;
2287   my $oldAutoCommit = $FS::UID::AutoCommit;
2288   local $FS::UID::AutoCommit = 0;
2289
2290   return "Can't use modify_charge except on one-time charges"
2291     unless $part_pkg->freq eq '0';
2292
2293   if ( length($opt{'pkg'}) and $part_pkg->pkg ne $opt{'pkg'} ) {
2294     $part_pkg->set('pkg', $opt{'pkg'});
2295   }
2296
2297   my %pkg_opt = $part_pkg->options;
2298   if ( ref($opt{'additional'}) ) {
2299     delete $pkg_opt{$_} foreach grep /^additional/, keys %pkg_opt;
2300     my $i;
2301     for ( $i = 0; exists($opt{'additional'}->[$i]); $i++ ) {
2302       $pkg_opt{ "additional_info$i" } = $opt{'additional'}->[$i];
2303     }
2304     $pkg_opt{'additional_count'} = $i if $i > 0;
2305   }
2306
2307   my $old_classnum;
2308   if ( exists($opt{'classnum'}) and $part_pkg->classnum ne $opt{'classnum'} ) {
2309     # remember it
2310     $old_classnum = $part_pkg->classnum;
2311     $part_pkg->set('classnum', $opt{'classnum'});
2312   }
2313
2314   my $error = $part_pkg->replace( options => \%pkg_opt );
2315   return $error if $error;
2316
2317   if (defined $old_classnum) {
2318     # fix invoice grouping records
2319     my $old_catname = $old_classnum
2320                       ? FS::pkg_class->by_key($old_classnum)->categoryname
2321                       : '';
2322     my $new_catname = $opt{'classnum'}
2323                       ? $part_pkg->pkg_class->categoryname
2324                       : '';
2325     if ( $old_catname ne $new_catname ) {
2326       foreach my $cust_bill_pkg ($self->cust_bill_pkg) {
2327         # (there should only be one...)
2328         my @display = qsearch( 'cust_bill_pkg_display', {
2329             'billpkgnum'  => $cust_bill_pkg->billpkgnum,
2330             'section'     => $old_catname,
2331         });
2332         foreach (@display) {
2333           $_->set('section', $new_catname);
2334           $error = $_->replace;
2335           if ( $error ) {
2336             $dbh->rollback if $oldAutoCommit;
2337             return $error;
2338           }
2339         }
2340       } # foreach $cust_bill_pkg
2341     }
2342
2343     if ( $opt{'adjust_commission'} ) {
2344       # fix commission credits...tricky.
2345       foreach my $cust_event ($self->cust_event) {
2346         my $part_event = $cust_event->part_event;
2347         foreach my $table (qw(sales agent)) {
2348           my $class =
2349             "FS::part_event::Action::Mixin::credit_${table}_pkg_class";
2350           my $credit = qsearchs('cust_credit', {
2351               'eventnum' => $cust_event->eventnum,
2352           });
2353           if ( $part_event->isa($class) ) {
2354             # Yes, this results in current commission rates being applied 
2355             # retroactively to a one-time charge.  For accounting purposes 
2356             # there ought to be some kind of time limit on doing this.
2357             my $amount = $part_event->_calc_credit($self);
2358             if ( $credit and $credit->amount ne $amount ) {
2359               # Void the old credit.
2360               $error = $credit->void('Package class changed');
2361               if ( $error ) {
2362                 $dbh->rollback if $oldAutoCommit;
2363                 return "$error (adjusting commission credit)";
2364               }
2365             }
2366             # redo the event action to recreate the credit.
2367             local $@ = '';
2368             eval { $part_event->do_action( $self, $cust_event ) };
2369             if ( $@ ) {
2370               $dbh->rollback if $oldAutoCommit;
2371               return $@;
2372             }
2373           } # if $part_event->isa($class)
2374         } # foreach $table
2375       } # foreach $cust_event
2376     } # if $opt{'adjust_commission'}
2377   } # if defined $old_classnum
2378
2379   $dbh->commit if $oldAutoCommit;
2380   '';
2381 }
2382
2383
2384
2385 use Storable 'thaw';
2386 use MIME::Base64;
2387 use Data::Dumper;
2388 sub process_bulk_cust_pkg {
2389   my $job = shift;
2390   my $param = thaw(decode_base64(shift));
2391   warn Dumper($param) if $DEBUG;
2392
2393   my $old_part_pkg = qsearchs('part_pkg', 
2394                               { pkgpart => $param->{'old_pkgpart'} });
2395   my $new_part_pkg = qsearchs('part_pkg',
2396                               { pkgpart => $param->{'new_pkgpart'} });
2397   die "Must select a new package type\n" unless $new_part_pkg;
2398   #my $keep_dates = $param->{'keep_dates'} || 0;
2399   my $keep_dates = 1; # there is no good reason to turn this off
2400
2401   local $SIG{HUP} = 'IGNORE';
2402   local $SIG{INT} = 'IGNORE';
2403   local $SIG{QUIT} = 'IGNORE';
2404   local $SIG{TERM} = 'IGNORE';
2405   local $SIG{TSTP} = 'IGNORE';
2406   local $SIG{PIPE} = 'IGNORE';
2407
2408   my $oldAutoCommit = $FS::UID::AutoCommit;
2409   local $FS::UID::AutoCommit = 0;
2410   my $dbh = dbh;
2411
2412   my @cust_pkgs = qsearch('cust_pkg', { 'pkgpart' => $param->{'old_pkgpart'} } );
2413
2414   my $i = 0;
2415   foreach my $old_cust_pkg ( @cust_pkgs ) {
2416     $i++;
2417     $job->update_statustext(int(100*$i/(scalar @cust_pkgs)));
2418     if ( $old_cust_pkg->getfield('cancel') ) {
2419       warn '[process_bulk_cust_pkg ] skipping canceled pkgnum '.
2420         $old_cust_pkg->pkgnum."\n"
2421         if $DEBUG;
2422       next;
2423     }
2424     warn '[process_bulk_cust_pkg] changing pkgnum '.$old_cust_pkg->pkgnum."\n"
2425       if $DEBUG;
2426     my $error = $old_cust_pkg->change(
2427       'pkgpart'     => $param->{'new_pkgpart'},
2428       'keep_dates'  => $keep_dates
2429     );
2430     if ( !ref($error) ) { # change returns the cust_pkg on success
2431       $dbh->rollback;
2432       die "Error changing pkgnum ".$old_cust_pkg->pkgnum.": '$error'\n";
2433     }
2434   }
2435   $dbh->commit if $oldAutoCommit;
2436   return;
2437 }
2438
2439 =item last_bill
2440
2441 Returns the last bill date, or if there is no last bill date, the setup date.
2442 Useful for billing metered services.
2443
2444 =cut
2445
2446 sub last_bill {
2447   my $self = shift;
2448   return $self->setfield('last_bill', $_[0]) if @_;
2449   return $self->getfield('last_bill') if $self->getfield('last_bill');
2450   my $cust_bill_pkg = qsearchs('cust_bill_pkg', { 'pkgnum' => $self->pkgnum,
2451                                                   'edate'  => $self->bill,  } );
2452   $cust_bill_pkg ? $cust_bill_pkg->sdate : $self->setup || 0;
2453 }
2454
2455 =item last_cust_pkg_reason ACTION
2456
2457 Returns the most recent ACTION FS::cust_pkg_reason associated with the package.
2458 Returns false if there is no reason or the package is not currenly ACTION'd
2459 ACTION is one of adjourn, susp, cancel, or expire.
2460
2461 =cut
2462
2463 sub last_cust_pkg_reason {
2464   my ( $self, $action ) = ( shift, shift );
2465   my $date = $self->get($action);
2466   qsearchs( {
2467               'table' => 'cust_pkg_reason',
2468               'hashref' => { 'pkgnum' => $self->pkgnum,
2469                              'action' => substr(uc($action), 0, 1),
2470                              'date'   => $date,
2471                            },
2472               'order_by' => 'ORDER BY num DESC LIMIT 1',
2473            } );
2474 }
2475
2476 =item last_reason ACTION
2477
2478 Returns the most recent ACTION FS::reason associated with the package.
2479 Returns false if there is no reason or the package is not currenly ACTION'd
2480 ACTION is one of adjourn, susp, cancel, or expire.
2481
2482 =cut
2483
2484 sub last_reason {
2485   my $cust_pkg_reason = shift->last_cust_pkg_reason(@_);
2486   $cust_pkg_reason->reason
2487     if $cust_pkg_reason;
2488 }
2489
2490 =item part_pkg
2491
2492 Returns the definition for this billing item, as an FS::part_pkg object (see
2493 L<FS::part_pkg>).
2494
2495 =cut
2496
2497 sub part_pkg {
2498   my $self = shift;
2499   return $self->{'_pkgpart'} if $self->{'_pkgpart'};
2500   cluck "cust_pkg->part_pkg called" if $DEBUG > 1;
2501   qsearchs( 'part_pkg', { 'pkgpart' => $self->pkgpart } );
2502 }
2503
2504 =item old_cust_pkg
2505
2506 Returns the cancelled package this package was changed from, if any.
2507
2508 =cut
2509
2510 sub old_cust_pkg {
2511   my $self = shift;
2512   return '' unless $self->change_pkgnum;
2513   qsearchs('cust_pkg', { 'pkgnum' => $self->change_pkgnum } );
2514 }
2515
2516 =item change_cust_main
2517
2518 Returns the customter this package was detached to, if any.
2519
2520 =cut
2521
2522 sub change_cust_main {
2523   my $self = shift;
2524   return '' unless $self->change_custnum;
2525   qsearchs('cust_main', { 'custnum' => $self->change_custnum } );
2526 }
2527
2528 =item calc_setup
2529
2530 Calls the I<calc_setup> of the FS::part_pkg object associated with this billing
2531 item.
2532
2533 =cut
2534
2535 sub calc_setup {
2536   my $self = shift;
2537   $self->part_pkg->calc_setup($self, @_);
2538 }
2539
2540 =item calc_recur
2541
2542 Calls the I<calc_recur> of the FS::part_pkg object associated with this billing
2543 item.
2544
2545 =cut
2546
2547 sub calc_recur {
2548   my $self = shift;
2549   $self->part_pkg->calc_recur($self, @_);
2550 }
2551
2552 =item base_recur
2553
2554 Calls the I<base_recur> of the FS::part_pkg object associated with this billing
2555 item.
2556
2557 =cut
2558
2559 sub base_recur {
2560   my $self = shift;
2561   $self->part_pkg->base_recur($self, @_);
2562 }
2563
2564 =item calc_remain
2565
2566 Calls the I<calc_remain> of the FS::part_pkg object associated with this
2567 billing item.
2568
2569 =cut
2570
2571 sub calc_remain {
2572   my $self = shift;
2573   $self->part_pkg->calc_remain($self, @_);
2574 }
2575
2576 =item calc_cancel
2577
2578 Calls the I<calc_cancel> of the FS::part_pkg object associated with this
2579 billing item.
2580
2581 =cut
2582
2583 sub calc_cancel {
2584   my $self = shift;
2585   $self->part_pkg->calc_cancel($self, @_);
2586 }
2587
2588 =item cust_bill_pkg
2589
2590 Returns any invoice line items for this package (see L<FS::cust_bill_pkg>).
2591
2592 =cut
2593
2594 sub cust_bill_pkg {
2595   my $self = shift;
2596   qsearch( 'cust_bill_pkg', { 'pkgnum' => $self->pkgnum } );
2597 }
2598
2599 =item cust_pkg_detail [ DETAILTYPE ]
2600
2601 Returns any customer package details for this package (see
2602 L<FS::cust_pkg_detail>).
2603
2604 DETAILTYPE can be set to "I" for invoice details or "C" for comments.
2605
2606 =cut
2607
2608 sub cust_pkg_detail {
2609   my $self = shift;
2610   my %hash = ( 'pkgnum' => $self->pkgnum );
2611   $hash{detailtype} = shift if @_;
2612   qsearch({
2613     'table'    => 'cust_pkg_detail',
2614     'hashref'  => \%hash,
2615     'order_by' => 'ORDER BY weight, pkgdetailnum',
2616   });
2617 }
2618
2619 =item set_cust_pkg_detail DETAILTYPE [ DETAIL, DETAIL, ... ]
2620
2621 Sets customer package details for this package (see L<FS::cust_pkg_detail>).
2622
2623 DETAILTYPE can be set to "I" for invoice details or "C" for comments.
2624
2625 If there is an error, returns the error, otherwise returns false.
2626
2627 =cut
2628
2629 sub set_cust_pkg_detail {
2630   my( $self, $detailtype, @details ) = @_;
2631
2632   local $SIG{HUP} = 'IGNORE';
2633   local $SIG{INT} = 'IGNORE';
2634   local $SIG{QUIT} = 'IGNORE';
2635   local $SIG{TERM} = 'IGNORE';
2636   local $SIG{TSTP} = 'IGNORE';
2637   local $SIG{PIPE} = 'IGNORE';
2638
2639   my $oldAutoCommit = $FS::UID::AutoCommit;
2640   local $FS::UID::AutoCommit = 0;
2641   my $dbh = dbh;
2642
2643   foreach my $current ( $self->cust_pkg_detail($detailtype) ) {
2644     my $error = $current->delete;
2645     if ( $error ) {
2646       $dbh->rollback if $oldAutoCommit;
2647       return "error removing old detail: $error";
2648     }
2649   }
2650
2651   foreach my $detail ( @details ) {
2652     my $cust_pkg_detail = new FS::cust_pkg_detail {
2653       'pkgnum'     => $self->pkgnum,
2654       'detailtype' => $detailtype,
2655       'detail'     => $detail,
2656     };
2657     my $error = $cust_pkg_detail->insert;
2658     if ( $error ) {
2659       $dbh->rollback if $oldAutoCommit;
2660       return "error adding new detail: $error";
2661     }
2662
2663   }
2664
2665   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
2666   '';
2667
2668 }
2669
2670 =item cust_event
2671
2672 Returns the new-style customer billing events (see L<FS::cust_event>) for this invoice.
2673
2674 =cut
2675
2676 #false laziness w/cust_bill.pm
2677 sub cust_event {
2678   my $self = shift;
2679   qsearch({
2680     'table'     => 'cust_event',
2681     'addl_from' => 'JOIN part_event USING ( eventpart )',
2682     'hashref'   => { 'tablenum' => $self->pkgnum },
2683     'extra_sql' => " AND eventtable = 'cust_pkg' ",
2684   });
2685 }
2686
2687 =item num_cust_event
2688
2689 Returns the number of new-style customer billing events (see L<FS::cust_event>) for this invoice.
2690
2691 =cut
2692
2693 #false laziness w/cust_bill.pm
2694 sub num_cust_event {
2695   my $self = shift;
2696   my $sql =
2697     "SELECT COUNT(*) FROM cust_event JOIN part_event USING ( eventpart ) ".
2698     "  WHERE tablenum = ? AND eventtable = 'cust_pkg'";
2699   my $sth = dbh->prepare($sql) or die  dbh->errstr. " preparing $sql"; 
2700   $sth->execute($self->pkgnum) or die $sth->errstr. " executing $sql";
2701   $sth->fetchrow_arrayref->[0];
2702 }
2703
2704 =item cust_svc [ SVCPART ] (old, deprecated usage)
2705
2706 =item cust_svc [ OPTION => VALUE ... ] (current usage)
2707
2708 Returns the services for this package, as FS::cust_svc objects (see
2709 L<FS::cust_svc>).  Available options are svcpart and svcdb.  If either is
2710 spcififed, returns only the matching services.
2711
2712 =cut
2713
2714 sub cust_svc {
2715   my $self = shift;
2716
2717   return () unless $self->num_cust_svc(@_);
2718
2719   my %opt = ();
2720   if ( @_ && $_[0] =~ /^\d+/ ) {
2721     $opt{svcpart} = shift;
2722   } elsif ( @_ && ref($_[0]) eq 'HASH' ) {
2723     %opt = %{ $_[0] };
2724   } elsif ( @_ ) {
2725     %opt = @_;
2726   }
2727
2728   my %search = (
2729     'table'   => 'cust_svc',
2730     'hashref' => { 'pkgnum' => $self->pkgnum },
2731   );
2732   if ( $opt{svcpart} ) {
2733     $search{hashref}->{svcpart} = $opt{'svcpart'};
2734   }
2735   if ( $opt{'svcdb'} ) {
2736     $search{addl_from} = ' LEFT JOIN part_svc USING ( svcpart ) ';
2737     $search{extra_sql} = ' AND svcdb = '. dbh->quote( $opt{'svcdb'} );
2738   }
2739
2740   cluck "cust_pkg->cust_svc called" if $DEBUG > 2;
2741
2742   #if ( $self->{'_svcnum'} ) {
2743   #  values %{ $self->{'_svcnum'}->cache };
2744   #} else {
2745     $self->_sort_cust_svc( [ qsearch(\%search) ] );
2746   #}
2747
2748 }
2749
2750 =item overlimit [ SVCPART ]
2751
2752 Returns the services for this package which have exceeded their
2753 usage limit as FS::cust_svc objects (see L<FS::cust_svc>).  If a svcpart
2754 is specified, return only the matching services.
2755
2756 =cut
2757
2758 sub overlimit {
2759   my $self = shift;
2760   return () unless $self->num_cust_svc(@_);
2761   grep { $_->overlimit } $self->cust_svc(@_);
2762 }
2763
2764 =item h_cust_svc END_TIMESTAMP [ START_TIMESTAMP ] [ MODE ]
2765
2766 Returns historical services for this package created before END TIMESTAMP and
2767 (optionally) not cancelled before START_TIMESTAMP, as FS::h_cust_svc objects
2768 (see L<FS::h_cust_svc>).  If MODE is 'I' (for 'invoice'), services with the 
2769 I<pkg_svc.hidden> flag will be omitted.
2770
2771 =cut
2772
2773 sub h_cust_svc {
2774   my $self = shift;
2775   warn "$me _h_cust_svc called on $self\n"
2776     if $DEBUG;
2777
2778   my ($end, $start, $mode) = @_;
2779   my @cust_svc = $self->_sort_cust_svc(
2780     [ qsearch( 'h_cust_svc',
2781       { 'pkgnum' => $self->pkgnum, },  
2782       FS::h_cust_svc->sql_h_search(@_),  
2783     ) ]
2784   );
2785   if ( defined($mode) && $mode eq 'I' ) {
2786     my %hidden_svcpart = map { $_->svcpart => $_->hidden } $self->part_svc;
2787     return grep { !$hidden_svcpart{$_->svcpart} } @cust_svc;
2788   } else {
2789     return @cust_svc;
2790   }
2791 }
2792
2793 sub _sort_cust_svc {
2794   my( $self, $arrayref ) = @_;
2795
2796   my $sort =
2797     sub ($$) { my ($a, $b) = @_; $b->[1] cmp $a->[1]  or  $a->[2] <=> $b->[2] };
2798
2799   my %pkg_svc = map { $_->svcpart => $_ }
2800                 qsearch( 'pkg_svc', { 'pkgpart' => $self->pkgpart } );
2801
2802   map  { $_->[0] }
2803   sort $sort
2804   map {
2805         my $pkg_svc = $pkg_svc{ $_->svcpart } || '';
2806         [ $_,
2807           $pkg_svc ? $pkg_svc->primary_svc : '',
2808           $pkg_svc ? $pkg_svc->quantity : 0,
2809         ];
2810       }
2811   @$arrayref;
2812
2813 }
2814
2815 =item num_cust_svc [ SVCPART ] (old, deprecated usage)
2816
2817 =item num_cust_svc [ OPTION => VALUE ... ] (current usage)
2818
2819 Returns the number of services for this package.  Available options are svcpart
2820 and svcdb.  If either is spcififed, returns only the matching services.
2821
2822 =cut
2823
2824 sub num_cust_svc {
2825   my $self = shift;
2826
2827   return $self->{'_num_cust_svc'}
2828     if !scalar(@_)
2829        && exists($self->{'_num_cust_svc'})
2830        && $self->{'_num_cust_svc'} =~ /\d/;
2831
2832   cluck "cust_pkg->num_cust_svc called, _num_cust_svc:".$self->{'_num_cust_svc'}
2833     if $DEBUG > 2;
2834
2835   my %opt = ();
2836   if ( @_ && $_[0] =~ /^\d+/ ) {
2837     $opt{svcpart} = shift;
2838   } elsif ( @_ && ref($_[0]) eq 'HASH' ) {
2839     %opt = %{ $_[0] };
2840   } elsif ( @_ ) {
2841     %opt = @_;
2842   }
2843
2844   my $select = 'SELECT COUNT(*) FROM cust_svc ';
2845   my $where = ' WHERE pkgnum = ? ';
2846   my @param = ($self->pkgnum);
2847
2848   if ( $opt{'svcpart'} ) {
2849     $where .= ' AND svcpart = ? ';
2850     push @param, $opt{'svcpart'};
2851   }
2852   if ( $opt{'svcdb'} ) {
2853     $select .= ' LEFT JOIN part_svc USING ( svcpart ) ';
2854     $where .= ' AND svcdb = ? ';
2855     push @param, $opt{'svcdb'};
2856   }
2857
2858   my $sth = dbh->prepare("$select $where") or die  dbh->errstr;
2859   $sth->execute(@param) or die $sth->errstr;
2860   $sth->fetchrow_arrayref->[0];
2861 }
2862
2863 =item available_part_svc 
2864
2865 Returns a list of FS::part_svc objects representing services included in this
2866 package but not yet provisioned.  Each FS::part_svc object also has an extra
2867 field, I<num_avail>, which specifies the number of available services.
2868
2869 =cut
2870
2871 sub available_part_svc {
2872   my $self = shift;
2873
2874   my $pkg_quantity = $self->quantity || 1;
2875
2876   grep { $_->num_avail > 0 }
2877     map {
2878           my $part_svc = $_->part_svc;
2879           $part_svc->{'Hash'}{'num_avail'} = #evil encapsulation-breaking
2880             $pkg_quantity * $_->quantity - $self->num_cust_svc($_->svcpart);
2881
2882           # more evil encapsulation breakage
2883           if($part_svc->{'Hash'}{'num_avail'} > 0) {
2884             my @exports = $part_svc->part_export_did;
2885             $part_svc->{'Hash'}{'can_get_dids'} = scalar(@exports);
2886           }
2887
2888           $part_svc;
2889         }
2890       $self->part_pkg->pkg_svc;
2891 }
2892
2893 =item part_svc [ OPTION => VALUE ... ]
2894
2895 Returns a list of FS::part_svc objects representing provisioned and available
2896 services included in this package.  Each FS::part_svc object also has the
2897 following extra fields:
2898
2899 =over 4
2900
2901 =item num_cust_svc  (count)
2902
2903 =item num_avail     (quantity - count)
2904
2905 =item cust_pkg_svc (services) - array reference containing the provisioned services, as cust_svc objects
2906
2907 =back
2908
2909 Accepts one option: summarize_size.  If specified and non-zero, will omit the
2910 extra cust_pkg_svc option for objects where num_cust_svc is this size or
2911 greater.
2912
2913 =cut
2914
2915 #svcnum
2916 #label -> ($cust_svc->label)[1]
2917
2918 sub part_svc {
2919   my $self = shift;
2920   my %opt = @_;
2921
2922   my $pkg_quantity = $self->quantity || 1;
2923
2924   #XXX some sort of sort order besides numeric by svcpart...
2925   my @part_svc = sort { $a->svcpart <=> $b->svcpart } map {
2926     my $pkg_svc = $_;
2927     my $part_svc = $pkg_svc->part_svc;
2928     my $num_cust_svc = $self->num_cust_svc($part_svc->svcpart);
2929     $part_svc->{'Hash'}{'num_cust_svc'} = $num_cust_svc; #more evil
2930     $part_svc->{'Hash'}{'num_avail'}    =
2931       max( 0, $pkg_quantity * $pkg_svc->quantity - $num_cust_svc );
2932     $part_svc->{'Hash'}{'cust_pkg_svc'} =
2933         $num_cust_svc ? [ $self->cust_svc($part_svc->svcpart) ] : []
2934       unless exists($opt{summarize_size}) && $opt{summarize_size} > 0
2935           && $num_cust_svc >= $opt{summarize_size};
2936     $part_svc->{'Hash'}{'hidden'} = $pkg_svc->hidden;
2937     $part_svc;
2938   } $self->part_pkg->pkg_svc;
2939
2940   #extras
2941   push @part_svc, map {
2942     my $part_svc = $_;
2943     my $num_cust_svc = $self->num_cust_svc($part_svc->svcpart);
2944     $part_svc->{'Hash'}{'num_cust_svc'} = $num_cust_svc; #speak no evail
2945     $part_svc->{'Hash'}{'num_avail'}    = 0; #0-$num_cust_svc ?
2946     $part_svc->{'Hash'}{'cust_pkg_svc'} =
2947       $num_cust_svc ? [ $self->cust_svc($part_svc->svcpart) ] : [];
2948     $part_svc;
2949   } $self->extra_part_svc;
2950
2951   @part_svc;
2952
2953 }
2954
2955 =item extra_part_svc
2956
2957 Returns a list of FS::part_svc objects corresponding to services in this
2958 package which are still provisioned but not (any longer) available in the
2959 package definition.
2960
2961 =cut
2962
2963 sub extra_part_svc {
2964   my $self = shift;
2965
2966   my $pkgnum  = $self->pkgnum;
2967   #my $pkgpart = $self->pkgpart;
2968
2969 #  qsearch( {
2970 #    'table'     => 'part_svc',
2971 #    'hashref'   => {},
2972 #    'extra_sql' =>
2973 #      "WHERE 0 = ( SELECT COUNT(*) FROM pkg_svc 
2974 #                     WHERE pkg_svc.svcpart = part_svc.svcpart 
2975 #                       AND pkg_svc.pkgpart = ?
2976 #                       AND quantity > 0 
2977 #                 )
2978 #        AND 0 < ( SELECT COUNT(*) FROM cust_svc
2979 #                       LEFT JOIN cust_pkg USING ( pkgnum )
2980 #                     WHERE cust_svc.svcpart = part_svc.svcpart
2981 #                       AND pkgnum = ?
2982 #                 )",
2983 #    'extra_param' => [ [$self->pkgpart=>'int'], [$self->pkgnum=>'int'] ],
2984 #  } );
2985
2986 #seems to benchmark slightly faster... (or did?)
2987
2988   my @pkgparts = map $_->pkgpart, $self->part_pkg->self_and_svc_linked;
2989   my $pkgparts = join(',', @pkgparts);
2990
2991   qsearch( {
2992     #'select'      => 'DISTINCT ON (svcpart) part_svc.*',
2993     #MySQL doesn't grok DISINCT ON
2994     'select'      => 'DISTINCT part_svc.*',
2995     'table'       => 'part_svc',
2996     'addl_from'   =>
2997       "LEFT JOIN pkg_svc  ON (     pkg_svc.svcpart   = part_svc.svcpart 
2998                                AND pkg_svc.pkgpart IN ($pkgparts)
2999                                AND quantity > 0
3000                              )
3001        LEFT JOIN cust_svc ON (     cust_svc.svcpart = part_svc.svcpart )
3002        LEFT JOIN cust_pkg USING ( pkgnum )
3003       ",
3004     'hashref'     => {},
3005     'extra_sql'   => "WHERE pkgsvcnum IS NULL AND cust_pkg.pkgnum = ? ",
3006     'extra_param' => [ [$self->pkgnum=>'int'] ],
3007   } );
3008 }
3009
3010 =item status
3011
3012 Returns a short status string for this package, currently:
3013
3014 =over 4
3015
3016 =item not yet billed
3017
3018 =item one-time charge
3019
3020 =item active
3021
3022 =item suspended
3023
3024 =item cancelled
3025
3026 =back
3027
3028 =cut
3029
3030 sub status {
3031   my $self = shift;
3032
3033   my $freq = length($self->freq) ? $self->freq : $self->part_pkg->freq;
3034
3035   return 'cancelled' if $self->get('cancel');
3036   return 'suspended' if $self->susp;
3037   return 'not yet billed' unless $self->setup;
3038   return 'one-time charge' if $freq =~ /^(0|$)/;
3039   return 'active';
3040 }
3041
3042 =item ucfirst_status
3043
3044 Returns the status with the first character capitalized.
3045
3046 =cut
3047
3048 sub ucfirst_status {
3049   ucfirst(shift->status);
3050 }
3051
3052 =item statuses
3053
3054 Class method that returns the list of possible status strings for packages
3055 (see L<the status method|/status>).  For example:
3056
3057   @statuses = FS::cust_pkg->statuses();
3058
3059 =cut
3060
3061 tie my %statuscolor, 'Tie::IxHash', 
3062   'not yet billed'  => '009999', #teal? cyan?
3063   'one-time charge' => '000000',
3064   'active'          => '00CC00',
3065   'suspended'       => 'FF9900',
3066   'cancelled'       => 'FF0000',
3067 ;
3068
3069 sub statuses {
3070   my $self = shift; #could be class...
3071   #grep { $_ !~ /^(not yet billed)$/ } #this is a dumb status anyway
3072   #                                    # mayble split btw one-time vs. recur
3073     keys %statuscolor;
3074 }
3075
3076 =item statuscolor
3077
3078 Returns a hex triplet color string for this package's status.
3079
3080 =cut
3081
3082 sub statuscolor {
3083   my $self = shift;
3084   $statuscolor{$self->status};
3085 }
3086
3087 =item pkg_label
3088
3089 Returns a label for this package.  (Currently "pkgnum: pkg - comment" or
3090 "pkg - comment" depending on user preference).
3091
3092 =cut
3093
3094 sub pkg_label {
3095   my $self = shift;
3096   my $label = $self->part_pkg->pkg_comment( 'nopkgpart' => 1 );
3097   $label = $self->pkgnum. ": $label"
3098     if $FS::CurrentUser::CurrentUser->option('show_pkgnum');
3099   $label;
3100 }
3101
3102 =item pkg_label_long
3103
3104 Returns a long label for this package, adding the primary service's label to
3105 pkg_label.
3106
3107 =cut
3108
3109 sub pkg_label_long {
3110   my $self = shift;
3111   my $label = $self->pkg_label;
3112   my $cust_svc = $self->primary_cust_svc;
3113   $label .= ' ('. ($cust_svc->label)[1]. ')' if $cust_svc;
3114   $label;
3115 }
3116
3117 =item pkg_locale
3118
3119 Returns a customer-localized label for this package.
3120
3121 =cut
3122
3123 sub pkg_locale {
3124   my $self = shift;
3125   $self->part_pkg->pkg_locale( $self->cust_main->locale );
3126 }
3127
3128 =item primary_cust_svc
3129
3130 Returns a primary service (as FS::cust_svc object) if one can be identified.
3131
3132 =cut
3133
3134 #for labeling purposes - might not 100% match up with part_pkg->svcpart's idea
3135
3136 sub primary_cust_svc {
3137   my $self = shift;
3138
3139   my @cust_svc = $self->cust_svc;
3140
3141   return '' unless @cust_svc; #no serivces - irrelevant then
3142   
3143   return $cust_svc[0] if scalar(@cust_svc) == 1; #always return a single service
3144
3145   # primary service as specified in the package definition
3146   # or exactly one service definition with quantity one
3147   my $svcpart = $self->part_pkg->svcpart;
3148   @cust_svc = grep { $_->svcpart == $svcpart } @cust_svc;
3149   return $cust_svc[0] if scalar(@cust_svc) == 1;
3150
3151   #couldn't identify one thing..
3152   return '';
3153 }
3154
3155 =item labels
3156
3157 Returns a list of lists, calling the label method for all services
3158 (see L<FS::cust_svc>) of this billing item.
3159
3160 =cut
3161
3162 sub labels {
3163   my $self = shift;
3164   map { [ $_->label ] } $self->cust_svc;
3165 }
3166
3167 =item h_labels END_TIMESTAMP [ START_TIMESTAMP ] [ MODE ]
3168
3169 Like the labels method, but returns historical information on services that
3170 were active as of END_TIMESTAMP and (optionally) not cancelled before
3171 START_TIMESTAMP.  If MODE is 'I' (for 'invoice'), services with the 
3172 I<pkg_svc.hidden> flag will be omitted.
3173
3174 Returns a list of lists, calling the label method for all (historical) services
3175 (see L<FS::h_cust_svc>) of this billing item.
3176
3177 =cut
3178
3179 sub h_labels {
3180   my $self = shift;
3181   warn "$me _h_labels called on $self\n"
3182     if $DEBUG;
3183   map { [ $_->label(@_) ] } $self->h_cust_svc(@_);
3184 }
3185
3186 =item labels_short
3187
3188 Like labels, except returns a simple flat list, and shortens long
3189 (currently >5 or the cust_bill-max_same_services configuration value) lists of
3190 identical services to one line that lists the service label and the number of
3191 individual services rather than individual items.
3192
3193 =cut
3194
3195 sub labels_short {
3196   shift->_labels_short( 'labels', @_ );
3197 }
3198
3199 =item h_labels_short END_TIMESTAMP [ START_TIMESTAMP ]
3200
3201 Like h_labels, except returns a simple flat list, and shortens long
3202 (currently >5 or the cust_bill-max_same_services configuration value) lists of
3203 identical services to one line that lists the service label and the number of
3204 individual services rather than individual items.
3205
3206 =cut
3207
3208 sub h_labels_short {
3209   shift->_labels_short( 'h_labels', @_ );
3210 }
3211
3212 sub _labels_short {
3213   my( $self, $method ) = ( shift, shift );
3214
3215   warn "$me _labels_short called on $self with $method method\n"
3216     if $DEBUG;
3217
3218   my $conf = new FS::Conf;
3219   my $max_same_services = $conf->config('cust_bill-max_same_services') || 5;
3220
3221   warn "$me _labels_short populating \%labels\n"
3222     if $DEBUG;
3223
3224   my %labels;
3225   #tie %labels, 'Tie::IxHash';
3226   push @{ $labels{$_->[0]} }, $_->[1]
3227     foreach $self->$method(@_);
3228
3229   warn "$me _labels_short populating \@labels\n"
3230     if $DEBUG;
3231
3232   my @labels;
3233   foreach my $label ( keys %labels ) {
3234     my %seen = ();
3235     my @values = grep { ! $seen{$_}++ } @{ $labels{$label} };
3236     my $num = scalar(@values);
3237     warn "$me _labels_short $num items for $label\n"
3238       if $DEBUG;
3239
3240     if ( $num > $max_same_services ) {
3241       warn "$me _labels_short   more than $max_same_services, so summarizing\n"
3242         if $DEBUG;
3243       push @labels, "$label ($num)";
3244     } else {
3245       if ( $conf->exists('cust_bill-consolidate_services') ) {
3246         warn "$me _labels_short   consolidating services\n"
3247           if $DEBUG;
3248         # push @labels, "$label: ". join(', ', @values);
3249         while ( @values ) {
3250           my $detail = "$label: ";
3251           $detail .= shift(@values). ', '
3252             while @values
3253                && ( length($detail.$values[0]) < 78 || $detail eq "$label: " );
3254           $detail =~ s/, $//;
3255           push @labels, $detail;
3256         }
3257         warn "$me _labels_short   done consolidating services\n"
3258           if $DEBUG;
3259       } else {
3260         warn "$me _labels_short   adding service data\n"
3261           if $DEBUG;
3262         push @labels, map { "$label: $_" } @values;
3263       }
3264     }
3265   }
3266
3267  @labels;
3268
3269 }
3270
3271 =item cust_main
3272
3273 Returns the parent customer object (see L<FS::cust_main>).
3274
3275 =cut
3276
3277 sub cust_main {
3278   my $self = shift;
3279   qsearchs( 'cust_main', { 'custnum' => $self->custnum } );
3280 }
3281
3282 =item balance
3283
3284 Returns the balance for this specific package, when using
3285 experimental package balance.
3286
3287 =cut
3288
3289 sub balance {
3290   my $self = shift;
3291   $self->cust_main->balance_pkgnum( $self->pkgnum );
3292 }
3293
3294 #these subs are in location_Mixin.pm now... unfortunately the POD doesn't mixin
3295
3296 =item cust_location
3297
3298 Returns the location object, if any (see L<FS::cust_location>).
3299
3300 =item cust_location_or_main
3301
3302 If this package is associated with a location, returns the locaiton (see
3303 L<FS::cust_location>), otherwise returns the customer (see L<FS::cust_main>).
3304
3305 =item location_label [ OPTION => VALUE ... ]
3306
3307 Returns the label of the location object (see L<FS::cust_location>).
3308
3309 =cut
3310
3311 #end of subs in location_Mixin.pm now... unfortunately the POD doesn't mixin
3312
3313 =item tax_locationnum
3314
3315 Returns the foreign key to a L<FS::cust_location> object for calculating  
3316 tax on this package, as determined by the C<tax-pkg_address> and 
3317 C<tax-ship_address> configuration flags.
3318
3319 =cut
3320
3321 sub tax_locationnum {
3322   my $self = shift;
3323   my $conf = FS::Conf->new;
3324   if ( $conf->exists('tax-pkg_address') ) {
3325     return $self->locationnum;
3326   }
3327   elsif ( $conf->exists('tax-ship_address') ) {
3328     return $self->cust_main->ship_locationnum;
3329   }
3330   else {
3331     return $self->cust_main->bill_locationnum;
3332   }
3333 }
3334
3335 =item tax_location
3336
3337 Returns the L<FS::cust_location> object for tax_locationnum.
3338
3339 =cut
3340
3341 sub tax_location {
3342   my $self = shift;
3343   FS::cust_location->by_key( $self->tax_locationnum )
3344 }
3345
3346 =item seconds_since TIMESTAMP
3347
3348 Returns the number of seconds all accounts (see L<FS::svc_acct>) in this
3349 package have been online since TIMESTAMP, according to the session monitor.
3350
3351 TIMESTAMP is specified as a UNIX timestamp; see L<perlfunc/"time">.  Also see
3352 L<Time::Local> and L<Date::Parse> for conversion functions.
3353
3354 =cut
3355
3356 sub seconds_since {
3357   my($self, $since) = @_;
3358   my $seconds = 0;
3359
3360   foreach my $cust_svc (
3361     grep { $_->part_svc->svcdb eq 'svc_acct' } $self->cust_svc
3362   ) {
3363     $seconds += $cust_svc->seconds_since($since);
3364   }
3365
3366   $seconds;
3367
3368 }
3369
3370 =item seconds_since_sqlradacct TIMESTAMP_START TIMESTAMP_END
3371
3372 Returns the numbers of seconds all accounts (see L<FS::svc_acct>) in this
3373 package have been online between TIMESTAMP_START (inclusive) and TIMESTAMP_END
3374 (exclusive).
3375
3376 TIMESTAMP_START and TIMESTAMP_END are specified as UNIX timestamps; see
3377 L<perlfunc/"time">.  Also see L<Time::Local> and L<Date::Parse> for conversion
3378 functions.
3379
3380
3381 =cut
3382
3383 sub seconds_since_sqlradacct {
3384   my($self, $start, $end) = @_;
3385
3386   my $seconds = 0;
3387
3388   foreach my $cust_svc (
3389     grep {
3390       my $part_svc = $_->part_svc;
3391       $part_svc->svcdb eq 'svc_acct'
3392         && scalar($part_svc->part_export_usage);
3393     } $self->cust_svc
3394   ) {
3395     $seconds += $cust_svc->seconds_since_sqlradacct($start, $end);
3396   }
3397
3398   $seconds;
3399
3400 }
3401
3402 =item attribute_since_sqlradacct TIMESTAMP_START TIMESTAMP_END ATTRIBUTE
3403
3404 Returns the sum of the given attribute for all accounts (see L<FS::svc_acct>)
3405 in this package for sessions ending between TIMESTAMP_START (inclusive) and
3406 TIMESTAMP_END
3407 (exclusive).
3408
3409 TIMESTAMP_START and TIMESTAMP_END are specified as UNIX timestamps; see
3410 L<perlfunc/"time">.  Also see L<Time::Local> and L<Date::Parse> for conversion
3411 functions.
3412
3413 =cut
3414
3415 sub attribute_since_sqlradacct {
3416   my($self, $start, $end, $attrib) = @_;
3417
3418   my $sum = 0;
3419
3420   foreach my $cust_svc (
3421     grep {
3422       my $part_svc = $_->part_svc;
3423       scalar($part_svc->part_export_usage);
3424     } $self->cust_svc
3425   ) {
3426     $sum += $cust_svc->attribute_since_sqlradacct($start, $end, $attrib);
3427   }
3428
3429   $sum;
3430
3431 }
3432
3433 =item quantity
3434
3435 =cut
3436
3437 sub quantity {
3438   my( $self, $value ) = @_;
3439   if ( defined($value) ) {
3440     $self->setfield('quantity', $value);
3441   }
3442   $self->getfield('quantity') || 1;
3443 }
3444
3445 =item transfer DEST_PKGNUM | DEST_CUST_PKG, [ OPTION => VALUE ... ]
3446
3447 Transfers as many services as possible from this package to another package.
3448
3449 The destination package can be specified by pkgnum by passing an FS::cust_pkg
3450 object.  The destination package must already exist.
3451
3452 Services are moved only if the destination allows services with the correct
3453 I<svcpart> (not svcdb), unless the B<change_svcpart> option is set true.  Use
3454 this option with caution!  No provision is made for export differences
3455 between the old and new service definitions.  Probably only should be used
3456 when your exports for all service definitions of a given svcdb are identical.
3457 (attempt a transfer without it first, to move all possible svcpart-matching
3458 services)
3459
3460 Any services that can't be moved remain in the original package.
3461
3462 Returns an error, if there is one; otherwise, returns the number of services 
3463 that couldn't be moved.
3464
3465 =cut
3466
3467 sub transfer {
3468   my ($self, $dest_pkgnum, %opt) = @_;
3469
3470   my $remaining = 0;
3471   my $dest;
3472   my %target;
3473
3474   if (ref ($dest_pkgnum) eq 'FS::cust_pkg') {
3475     $dest = $dest_pkgnum;
3476     $dest_pkgnum = $dest->pkgnum;
3477   } else {
3478     $dest = qsearchs('cust_pkg', { pkgnum => $dest_pkgnum });
3479   }
3480
3481   return ('Package does not exist: '.$dest_pkgnum) unless $dest;
3482
3483   foreach my $pkg_svc ( $dest->part_pkg->pkg_svc ) {
3484     $target{$pkg_svc->svcpart} = $pkg_svc->quantity;
3485   }
3486
3487   foreach my $cust_svc ($dest->cust_svc) {
3488     $target{$cust_svc->svcpart}--;
3489   }
3490
3491   my %svcpart2svcparts = ();
3492   if ( exists $opt{'change_svcpart'} && $opt{'change_svcpart'} ) {
3493     warn "change_svcpart option received, creating alternates list\n" if $DEBUG;
3494     foreach my $svcpart ( map { $_->svcpart } $self->cust_svc ) {
3495       next if exists $svcpart2svcparts{$svcpart};
3496       my $part_svc = qsearchs('part_svc', { 'svcpart' => $svcpart } );
3497       $svcpart2svcparts{$svcpart} = [
3498         map  { $_->[0] }
3499         sort { $b->[1] cmp $a->[1]  or  $a->[2] <=> $b->[2] } 
3500         map {
3501               my $pkg_svc = qsearchs( 'pkg_svc', { 'pkgpart' => $dest->pkgpart,
3502                                                    'svcpart' => $_          } );
3503               [ $_,
3504                 $pkg_svc ? $pkg_svc->primary_svc : '',
3505                 $pkg_svc ? $pkg_svc->quantity : 0,
3506               ];
3507             }
3508
3509         grep { $_ != $svcpart }
3510         map  { $_->svcpart }
3511         qsearch('part_svc', { 'svcdb' => $part_svc->svcdb } )
3512       ];
3513       warn "alternates for svcpart $svcpart: ".
3514            join(', ', @{$svcpart2svcparts{$svcpart}}). "\n"
3515         if $DEBUG;
3516     }
3517   }
3518
3519   foreach my $cust_svc ($self->cust_svc) {
3520     if($target{$cust_svc->svcpart} > 0
3521        or $FS::cust_svc::ignore_quantity) { # maybe should be a 'force' option
3522       $target{$cust_svc->svcpart}--;
3523       my $new = new FS::cust_svc { $cust_svc->hash };
3524       $new->pkgnum($dest_pkgnum);
3525       my $error = $new->replace($cust_svc);
3526       return $error if $error;
3527     } elsif ( exists $opt{'change_svcpart'} && $opt{'change_svcpart'} ) {
3528       if ( $DEBUG ) {
3529         warn "looking for alternates for svcpart ". $cust_svc->svcpart. "\n";
3530         warn "alternates to consider: ".
3531              join(', ', @{$svcpart2svcparts{$cust_svc->svcpart}}). "\n";
3532       }
3533       my @alternate = grep {
3534                              warn "considering alternate svcpart $_: ".
3535                                   "$target{$_} available in new package\n"
3536                                if $DEBUG;
3537                              $target{$_} > 0;
3538                            } @{$svcpart2svcparts{$cust_svc->svcpart}};
3539       if ( @alternate ) {
3540         warn "alternate(s) found\n" if $DEBUG;
3541         my $change_svcpart = $alternate[0];
3542         $target{$change_svcpart}--;
3543         my $new = new FS::cust_svc { $cust_svc->hash };
3544         $new->svcpart($change_svcpart);
3545         $new->pkgnum($dest_pkgnum);
3546         my $error = $new->replace($cust_svc);
3547         return $error if $error;
3548       } else {
3549         $remaining++;
3550       }
3551     } else {
3552       $remaining++
3553     }
3554   }
3555   return $remaining;
3556 }
3557
3558 =item grab_svcnums SVCNUM, SVCNUM ...
3559
3560 Change the pkgnum for the provided services to this packages.  If there is an
3561 error, returns the error, otherwise returns false.
3562
3563 =cut
3564
3565 sub grab_svcnums {
3566   my $self = shift;
3567   my @svcnum = @_;
3568
3569   local $SIG{HUP} = 'IGNORE';
3570   local $SIG{INT} = 'IGNORE';
3571   local $SIG{QUIT} = 'IGNORE';
3572   local $SIG{TERM} = 'IGNORE';
3573   local $SIG{TSTP} = 'IGNORE';
3574   local $SIG{PIPE} = 'IGNORE';
3575
3576   my $oldAutoCommit = $FS::UID::AutoCommit;
3577   local $FS::UID::AutoCommit = 0;
3578   my $dbh = dbh;
3579
3580   foreach my $svcnum (@svcnum) {
3581     my $cust_svc = qsearchs('cust_svc', { svcnum=>$svcnum } ) or do {
3582       $dbh->rollback if $oldAutoCommit;
3583       return "unknown svcnum $svcnum";
3584     };
3585     $cust_svc->pkgnum( $self->pkgnum );
3586     my $error = $cust_svc->replace;
3587     if ( $error ) {
3588       $dbh->rollback if $oldAutoCommit;
3589       return $error;
3590     }
3591   }
3592
3593   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
3594   '';
3595
3596 }
3597
3598 =item reexport
3599
3600 This method is deprecated.  See the I<depend_jobnum> option to the insert and
3601 order_pkgs methods in FS::cust_main for a better way to defer provisioning.
3602
3603 =cut
3604
3605 sub reexport {
3606   my $self = shift;
3607
3608   local $SIG{HUP} = 'IGNORE';
3609   local $SIG{INT} = 'IGNORE';
3610   local $SIG{QUIT} = 'IGNORE';
3611   local $SIG{TERM} = 'IGNORE';
3612   local $SIG{TSTP} = 'IGNORE';
3613   local $SIG{PIPE} = 'IGNORE';
3614
3615   my $oldAutoCommit = $FS::UID::AutoCommit;
3616   local $FS::UID::AutoCommit = 0;
3617   my $dbh = dbh;
3618
3619   foreach my $cust_svc ( $self->cust_svc ) {
3620     #false laziness w/svc_Common::insert
3621     my $svc_x = $cust_svc->svc_x;
3622     foreach my $part_export ( $cust_svc->part_svc->part_export ) {
3623       my $error = $part_export->export_insert($svc_x);
3624       if ( $error ) {
3625         $dbh->rollback if $oldAutoCommit;
3626         return $error;
3627       }
3628     }
3629   }
3630
3631   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
3632   '';
3633
3634 }
3635
3636 =item export_pkg_change OLD_CUST_PKG
3637
3638 Calls the "pkg_change" export action for all services attached to this package.
3639
3640 =cut
3641
3642 sub export_pkg_change {
3643   my( $self, $old )  = ( shift, shift );
3644
3645   local $SIG{HUP} = 'IGNORE';
3646   local $SIG{INT} = 'IGNORE';
3647   local $SIG{QUIT} = 'IGNORE';
3648   local $SIG{TERM} = 'IGNORE';
3649   local $SIG{TSTP} = 'IGNORE';
3650   local $SIG{PIPE} = 'IGNORE';
3651
3652   my $oldAutoCommit = $FS::UID::AutoCommit;
3653   local $FS::UID::AutoCommit = 0;
3654   my $dbh = dbh;
3655
3656   foreach my $svc_x ( map $_->svc_x, $self->cust_svc ) {
3657     my $error = $svc_x->export('pkg_change', $self, $old);
3658     if ( $error ) {
3659       $dbh->rollback if $oldAutoCommit;
3660       return $error;
3661     }
3662   }
3663
3664   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
3665   '';
3666
3667 }
3668
3669 =item insert_reason
3670
3671 Associates this package with a (suspension or cancellation) reason (see
3672 L<FS::cust_pkg_reason>, possibly inserting a new reason on the fly (see
3673 L<FS::reason>).
3674
3675 Available options are:
3676
3677 =over 4
3678
3679 =item reason
3680
3681 can be set to a cancellation reason (see L<FS:reason>), either a reasonnum of an existing reason, or passing a hashref will create a new reason.  The hashref should have the following keys: typenum - Reason type (see L<FS::reason_type>, reason - Text of the new reason.
3682
3683 =item reason_otaker
3684
3685 the access_user (see L<FS::access_user>) providing the reason
3686
3687 =item date
3688
3689 a unix timestamp 
3690
3691 =item action
3692
3693 the action (cancel, susp, adjourn, expire) associated with the reason
3694
3695 =back
3696
3697 If there is an error, returns the error, otherwise returns false.
3698
3699 =cut
3700
3701 sub insert_reason {
3702   my ($self, %options) = @_;
3703
3704   my $otaker = $options{reason_otaker} ||
3705                $FS::CurrentUser::CurrentUser->username;
3706
3707   my $reasonnum;
3708   if ( $options{'reason'} =~ /^(\d+)$/ ) {
3709
3710     $reasonnum = $1;
3711
3712   } elsif ( ref($options{'reason'}) ) {
3713   
3714     return 'Enter a new reason (or select an existing one)'
3715       unless $options{'reason'}->{'reason'} !~ /^\s*$/;
3716
3717     my $reason = new FS::reason({
3718       'reason_type' => $options{'reason'}->{'typenum'},
3719       'reason'      => $options{'reason'}->{'reason'},
3720     });
3721     my $error = $reason->insert;
3722     return $error if $error;
3723
3724     $reasonnum = $reason->reasonnum;
3725
3726   } else {
3727     return "Unparsable reason: ". $options{'reason'};
3728   }
3729
3730   my $cust_pkg_reason =
3731     new FS::cust_pkg_reason({ 'pkgnum'    => $self->pkgnum,
3732                               'reasonnum' => $reasonnum, 
3733                               'otaker'    => $otaker,
3734                               'action'    => substr(uc($options{'action'}),0,1),
3735                               'date'      => $options{'date'}
3736                                                ? $options{'date'}
3737                                                : time,
3738                             });
3739
3740   $cust_pkg_reason->insert;
3741 }
3742
3743 =item insert_discount
3744
3745 Associates this package with a discount (see L<FS::cust_pkg_discount>, possibly
3746 inserting a new discount on the fly (see L<FS::discount>).
3747
3748 Available options are:
3749
3750 =over 4
3751
3752 =item discountnum
3753
3754 =back
3755
3756 If there is an error, returns the error, otherwise returns false.
3757
3758 =cut
3759
3760 sub insert_discount {
3761   #my ($self, %options) = @_;
3762   my $self = shift;
3763
3764   my $cust_pkg_discount = new FS::cust_pkg_discount {
3765     'pkgnum'      => $self->pkgnum,
3766     'discountnum' => $self->discountnum,
3767     'months_used' => 0,
3768     'end_date'    => '', #XXX
3769     #for the create a new discount case
3770     '_type'       => $self->discountnum__type,
3771     'amount'      => $self->discountnum_amount,
3772     'percent'     => $self->discountnum_percent,
3773     'months'      => $self->discountnum_months,
3774     'setup'      => $self->discountnum_setup,
3775     #'disabled'    => $self->discountnum_disabled,
3776   };
3777
3778   $cust_pkg_discount->insert;
3779 }
3780
3781 =item set_usage USAGE_VALUE_HASHREF 
3782
3783 USAGE_VALUE_HASHREF is a hashref of svc_acct usage columns and the amounts
3784 to which they should be set (see L<FS::svc_acct>).  Currently seconds,
3785 upbytes, downbytes, and totalbytes are appropriate keys.
3786
3787 All svc_accts which are part of this package have their values reset.
3788
3789 =cut
3790
3791 sub set_usage {
3792   my ($self, $valueref, %opt) = @_;
3793
3794   #only svc_acct can set_usage for now
3795   foreach my $cust_svc ( $self->cust_svc( 'svcdb'=>'svc_acct' ) ) {
3796     my $svc_x = $cust_svc->svc_x;
3797     $svc_x->set_usage($valueref, %opt)
3798       if $svc_x->can("set_usage");
3799   }
3800 }
3801
3802 =item recharge USAGE_VALUE_HASHREF 
3803
3804 USAGE_VALUE_HASHREF is a hashref of svc_acct usage columns and the amounts
3805 to which they should be set (see L<FS::svc_acct>).  Currently seconds,
3806 upbytes, downbytes, and totalbytes are appropriate keys.
3807
3808 All svc_accts which are part of this package have their values incremented.
3809
3810 =cut
3811
3812 sub recharge {
3813   my ($self, $valueref) = @_;
3814
3815   #only svc_acct can set_usage for now
3816   foreach my $cust_svc ( $self->cust_svc( 'svcdb'=>'svc_acct' ) ) {
3817     my $svc_x = $cust_svc->svc_x;
3818     $svc_x->recharge($valueref)
3819       if $svc_x->can("recharge");
3820   }
3821 }
3822
3823 =item cust_pkg_discount
3824
3825 =cut
3826
3827 sub cust_pkg_discount {
3828   my $self = shift;
3829   qsearch('cust_pkg_discount', { 'pkgnum' => $self->pkgnum } );
3830 }
3831
3832 =item cust_pkg_discount_active
3833
3834 =cut
3835
3836 sub cust_pkg_discount_active {
3837   my $self = shift;
3838   grep { $_->status eq 'active' } $self->cust_pkg_discount;
3839 }
3840
3841 =item cust_pkg_usage
3842
3843 Returns a list of all voice usage counters attached to this package.
3844
3845 =cut
3846
3847 sub cust_pkg_usage {
3848   my $self = shift;
3849   qsearch('cust_pkg_usage', { pkgnum => $self->pkgnum });
3850 }
3851
3852 =item apply_usage OPTIONS
3853
3854 Takes the following options:
3855 - cdr: a call detail record (L<FS::cdr>)
3856 - rate_detail: the rate determined for this call (L<FS::rate_detail>)
3857 - minutes: the maximum number of minutes to be charged
3858
3859 Finds available usage minutes for a call of this class, and subtracts
3860 up to that many minutes from the usage pool.  If the usage pool is empty,
3861 and the C<cdr-minutes_priority> global config option is set, minutes may
3862 be taken from other calls as well.  Either way, an allocation record will
3863 be created (L<FS::cdr_cust_pkg_usage>) and this method will return the 
3864 number of minutes of usage applied to the call.
3865
3866 =cut
3867
3868 sub apply_usage {
3869   my ($self, %opt) = @_;
3870   my $cdr = $opt{cdr};
3871   my $rate_detail = $opt{rate_detail};
3872   my $minutes = $opt{minutes};
3873   my $classnum = $rate_detail->classnum;
3874   my $pkgnum = $self->pkgnum;
3875   my $custnum = $self->custnum;
3876
3877   local $SIG{HUP} = 'IGNORE';
3878   local $SIG{INT} = 'IGNORE'; 
3879   local $SIG{QUIT} = 'IGNORE';
3880   local $SIG{TERM} = 'IGNORE';
3881   local $SIG{TSTP} = 'IGNORE'; 
3882   local $SIG{PIPE} = 'IGNORE'; 
3883
3884   my $oldAutoCommit = $FS::UID::AutoCommit;
3885   local $FS::UID::AutoCommit = 0;
3886   my $dbh = dbh;
3887   my $order = FS::Conf->new->config('cdr-minutes_priority');
3888
3889   my $is_classnum;
3890   if ( $classnum ) {
3891     $is_classnum = ' part_pkg_usage_class.classnum = '.$classnum;
3892   } else {
3893     $is_classnum = ' part_pkg_usage_class.classnum IS NULL';
3894   }
3895   my @usage_recs = qsearch({
3896       'table'     => 'cust_pkg_usage',
3897       'addl_from' => ' JOIN part_pkg_usage       USING (pkgusagepart)'.
3898                      ' JOIN cust_pkg             USING (pkgnum)'.
3899                      ' JOIN part_pkg_usage_class USING (pkgusagepart)',
3900       'select'    => 'cust_pkg_usage.*',
3901       'extra_sql' => " WHERE ( cust_pkg.pkgnum = $pkgnum OR ".
3902                      " ( cust_pkg.custnum = $custnum AND ".
3903                      " part_pkg_usage.shared IS NOT NULL ) ) AND ".
3904                      $is_classnum . ' AND '.
3905                      " cust_pkg_usage.minutes > 0",
3906       'order_by'  => " ORDER BY priority ASC",
3907   });
3908
3909   my $orig_minutes = $minutes;
3910   my $error;
3911   while (!$error and $minutes > 0 and @usage_recs) {
3912     my $cust_pkg_usage = shift @usage_recs;
3913     $cust_pkg_usage->select_for_update;
3914     my $cdr_cust_pkg_usage = FS::cdr_cust_pkg_usage->new({
3915         pkgusagenum => $cust_pkg_usage->pkgusagenum,
3916         acctid      => $cdr->acctid,
3917         minutes     => min($cust_pkg_usage->minutes, $minutes),
3918     });
3919     $cust_pkg_usage->set('minutes',
3920       sprintf('%.0f', $cust_pkg_usage->minutes - $cdr_cust_pkg_usage->minutes)
3921     );
3922     $error = $cust_pkg_usage->replace || $cdr_cust_pkg_usage->insert;
3923     $minutes -= $cdr_cust_pkg_usage->minutes;
3924   }
3925   if ( $order and $minutes > 0 and !$error ) {
3926     # then try to steal minutes from another call
3927     my %search = (
3928         'table'     => 'cdr_cust_pkg_usage',
3929         'addl_from' => ' JOIN cust_pkg_usage        USING (pkgusagenum)'.
3930                        ' JOIN part_pkg_usage        USING (pkgusagepart)'.
3931                        ' JOIN cust_pkg              USING (pkgnum)'.
3932                        ' JOIN part_pkg_usage_class  USING (pkgusagepart)'.
3933                        ' JOIN cdr                   USING (acctid)',
3934         'select'    => 'cdr_cust_pkg_usage.*',
3935         'extra_sql' => " WHERE cdr.freesidestatus = 'rated' AND ".
3936                        " ( cust_pkg.pkgnum = $pkgnum OR ".
3937                        " ( cust_pkg.custnum = $custnum AND ".
3938                        " part_pkg_usage.shared IS NOT NULL ) ) AND ".
3939                        " part_pkg_usage_class.classnum = $classnum",
3940         'order_by'  => ' ORDER BY part_pkg_usage.priority ASC',
3941     );
3942     if ( $order eq 'time' ) {
3943       # find CDRs that are using minutes, but have a later startdate
3944       # than this call
3945       my $startdate = $cdr->startdate;
3946       if ($startdate !~ /^\d+$/) {
3947         die "bad cdr startdate '$startdate'";
3948       }
3949       $search{'extra_sql'} .= " AND cdr.startdate > $startdate";
3950       # minimize needless reshuffling
3951       $search{'order_by'} .= ', cdr.startdate DESC';
3952     } else {
3953       # XXX may not work correctly with rate_time schedules.  Could 
3954       # fix this by storing ratedetailnum in cdr_cust_pkg_usage, I 
3955       # think...
3956       $search{'addl_from'} .=
3957         ' JOIN rate_detail'.
3958         ' ON (cdr.rated_ratedetailnum = rate_detail.ratedetailnum)';
3959       if ( $order eq 'rate_high' ) {
3960         $search{'extra_sql'} .= ' AND rate_detail.min_charge < '.
3961                                 $rate_detail->min_charge;
3962         $search{'order_by'} .= ', rate_detail.min_charge ASC';
3963       } elsif ( $order eq 'rate_low' ) {
3964         $search{'extra_sql'} .= ' AND rate_detail.min_charge > '.
3965                                 $rate_detail->min_charge;
3966         $search{'order_by'} .= ', rate_detail.min_charge DESC';
3967       } else {
3968         #  this should really never happen
3969         die "invalid cdr-minutes_priority value '$order'\n";
3970       }
3971     }
3972     my @cdr_usage_recs = qsearch(\%search);
3973     my %reproc_cdrs;
3974     while (!$error and @cdr_usage_recs and $minutes > 0) {
3975       my $cdr_cust_pkg_usage = shift @cdr_usage_recs;
3976       my $cust_pkg_usage = $cdr_cust_pkg_usage->cust_pkg_usage;
3977       my $old_cdr = $cdr_cust_pkg_usage->cdr;
3978       $reproc_cdrs{$old_cdr->acctid} = $old_cdr;
3979       $cdr_cust_pkg_usage->select_for_update;
3980       $old_cdr->select_for_update;
3981       $cust_pkg_usage->select_for_update;
3982       # in case someone else stole the usage from this CDR
3983       # while waiting for the lock...
3984       next if $old_cdr->acctid != $cdr_cust_pkg_usage->acctid;
3985       # steal the usage allocation and flag the old CDR for reprocessing
3986       $cdr_cust_pkg_usage->set('acctid', $cdr->acctid);
3987       # if the allocation is more minutes than we need, adjust it...
3988       my $delta = $cdr_cust_pkg_usage->minutes - $minutes;
3989       if ( $delta > 0 ) {
3990         $cdr_cust_pkg_usage->set('minutes', $minutes);
3991         $cust_pkg_usage->set('minutes', $cust_pkg_usage->minutes + $delta);
3992         $error = $cust_pkg_usage->replace;
3993       }
3994       #warn 'CDR '.$cdr->acctid . ' stealing allocation '.$cdr_cust_pkg_usage->cdrusagenum.' from CDR '.$old_cdr->acctid."\n";
3995       $error ||= $cdr_cust_pkg_usage->replace;
3996       # deduct the stolen minutes
3997       $minutes -= $cdr_cust_pkg_usage->minutes;
3998     }
3999     # after all minute-stealing is done, reset the affected CDRs
4000     foreach (values %reproc_cdrs) {
4001       $error ||= $_->set_status('');
4002       # XXX or should we just call $cdr->rate right here?
4003       # it's not like we can create a loop this way, since the min_charge
4004       # or call time has to go monotonically in one direction.
4005       # we COULD get some very deep recursions going, though...
4006     }
4007   } # if $order and $minutes
4008   if ( $error ) {
4009     $dbh->rollback;
4010     die "error applying included minutes\npkgnum ".$self->pkgnum.", class $classnum, acctid ".$cdr->acctid."\n$error\n"
4011   } else {
4012     $dbh->commit if $oldAutoCommit;
4013     return $orig_minutes - $minutes;
4014   }
4015 }
4016
4017 =item supplemental_pkgs
4018
4019 Returns a list of all packages supplemental to this one.
4020
4021 =cut
4022
4023 sub supplemental_pkgs {
4024   my $self = shift;
4025   qsearch('cust_pkg', { 'main_pkgnum' => $self->pkgnum });
4026 }
4027
4028 =item main_pkg
4029
4030 Returns the package that this one is supplemental to, if any.
4031
4032 =cut
4033
4034 sub main_pkg {
4035   my $self = shift;
4036   if ( $self->main_pkgnum ) {
4037     return FS::cust_pkg->by_key($self->main_pkgnum);
4038   }
4039   return;
4040 }
4041
4042 =back
4043
4044 =head1 CLASS METHODS
4045
4046 =over 4
4047
4048 =item recurring_sql
4049
4050 Returns an SQL expression identifying recurring packages.
4051
4052 =cut
4053
4054 sub recurring_sql { "
4055   '0' != ( select freq from part_pkg
4056              where cust_pkg.pkgpart = part_pkg.pkgpart )
4057 "; }
4058
4059 =item onetime_sql
4060
4061 Returns an SQL expression identifying one-time packages.
4062
4063 =cut
4064
4065 sub onetime_sql { "
4066   '0' = ( select freq from part_pkg
4067             where cust_pkg.pkgpart = part_pkg.pkgpart )
4068 "; }
4069
4070 =item ordered_sql
4071
4072 Returns an SQL expression identifying ordered packages (recurring packages not
4073 yet billed).
4074
4075 =cut
4076
4077 sub ordered_sql {
4078    $_[0]->recurring_sql. " AND ". $_[0]->not_yet_billed_sql;
4079 }
4080
4081 =item active_sql
4082
4083 Returns an SQL expression identifying active packages.
4084
4085 =cut
4086
4087 sub active_sql {
4088   $_[0]->recurring_sql. "
4089   AND cust_pkg.setup IS NOT NULL AND cust_pkg.setup != 0
4090   AND ( cust_pkg.cancel IS NULL OR cust_pkg.cancel = 0 )
4091   AND ( cust_pkg.susp   IS NULL OR cust_pkg.susp   = 0 )
4092 "; }
4093
4094 =item not_yet_billed_sql
4095
4096 Returns an SQL expression identifying packages which have not yet been billed.
4097
4098 =cut
4099
4100 sub not_yet_billed_sql { "
4101       ( cust_pkg.setup  IS NULL OR cust_pkg.setup  = 0 )
4102   AND ( cust_pkg.cancel IS NULL OR cust_pkg.cancel = 0 )
4103   AND ( cust_pkg.susp   IS NULL OR cust_pkg.susp   = 0 )
4104 "; }
4105
4106 =item inactive_sql
4107
4108 Returns an SQL expression identifying inactive packages (one-time packages
4109 that are otherwise unsuspended/uncancelled).
4110
4111 =cut
4112
4113 sub inactive_sql { "
4114   ". $_[0]->onetime_sql(). "
4115   AND cust_pkg.setup IS NOT NULL AND cust_pkg.setup != 0
4116   AND ( cust_pkg.cancel IS NULL OR cust_pkg.cancel = 0 )
4117   AND ( cust_pkg.susp   IS NULL OR cust_pkg.susp   = 0 )
4118 "; }
4119
4120 =item susp_sql
4121 =item suspended_sql
4122
4123 Returns an SQL expression identifying suspended packages.
4124
4125 =cut
4126
4127 sub suspended_sql { susp_sql(@_); }
4128 sub susp_sql {
4129   #$_[0]->recurring_sql(). ' AND '.
4130   "
4131         ( cust_pkg.cancel IS     NULL  OR cust_pkg.cancel = 0 )
4132     AND   cust_pkg.susp   IS NOT NULL AND cust_pkg.susp  != 0
4133   ";
4134 }
4135
4136 =item cancel_sql
4137 =item cancelled_sql
4138
4139 Returns an SQL exprression identifying cancelled packages.
4140
4141 =cut
4142
4143 sub cancelled_sql { cancel_sql(@_); }
4144 sub cancel_sql { 
4145   #$_[0]->recurring_sql(). ' AND '.
4146   "cust_pkg.cancel IS NOT NULL AND cust_pkg.cancel != 0";
4147 }
4148
4149 =item status_sql
4150
4151 Returns an SQL expression to give the package status as a string.
4152
4153 =cut
4154
4155 sub status_sql {
4156 "CASE
4157   WHEN cust_pkg.cancel IS NOT NULL THEN 'cancelled'
4158   WHEN cust_pkg.susp IS NOT NULL THEN 'suspended'
4159   WHEN cust_pkg.setup IS NULL THEN 'not yet billed'
4160   WHEN ".onetime_sql()." THEN 'one-time charge'
4161   ELSE 'active'
4162 END"
4163 }
4164
4165 =item search HASHREF
4166
4167 (Class method)
4168
4169 Returns a qsearch hash expression to search for parameters specified in HASHREF.
4170 Valid parameters are
4171
4172 =over 4
4173
4174 =item agentnum
4175
4176 =item magic
4177
4178 active, inactive, suspended, cancel (or cancelled)
4179
4180 =item status
4181
4182 active, inactive, suspended, one-time charge, inactive, cancel (or cancelled)
4183
4184 =item custom
4185
4186  boolean selects custom packages
4187
4188 =item classnum
4189
4190 =item pkgpart
4191
4192 pkgpart or arrayref or hashref of pkgparts
4193
4194 =item setup
4195
4196 arrayref of beginning and ending epoch date
4197
4198 =item last_bill
4199
4200 arrayref of beginning and ending epoch date
4201
4202 =item bill
4203
4204 arrayref of beginning and ending epoch date
4205
4206 =item adjourn
4207
4208 arrayref of beginning and ending epoch date
4209
4210 =item susp
4211
4212 arrayref of beginning and ending epoch date
4213
4214 =item expire
4215
4216 arrayref of beginning and ending epoch date
4217
4218 =item cancel
4219
4220 arrayref of beginning and ending epoch date
4221
4222 =item query
4223
4224 pkgnum or APKG_pkgnum
4225
4226 =item cust_fields
4227
4228 a value suited to passing to FS::UI::Web::cust_header
4229
4230 =item CurrentUser
4231
4232 specifies the user for agent virtualization
4233
4234 =item fcc_line
4235
4236 boolean; if true, returns only packages with more than 0 FCC phone lines.
4237
4238 =item state, country
4239
4240 Limit to packages with a service location in the specified state and country.
4241 For FCC 477 reporting, mostly.
4242
4243 =item location_cust
4244
4245 Limit to packages whose service locations are the same as the customer's 
4246 default service location.
4247
4248 =item location_nocust
4249
4250 Limit to packages whose service locations are not the customer's default 
4251 service location.
4252
4253 =item location_census
4254
4255 Limit to packages whose service locations have census tracts.
4256
4257 =item location_nocensus
4258
4259 Limit to packages whose service locations do not have a census tract.
4260
4261 =item location_geocode
4262
4263 Limit to packages whose locations have geocodes.
4264
4265 =item location_geocode
4266
4267 Limit to packages whose locations do not have geocodes.
4268
4269 =back
4270
4271 =cut
4272
4273 sub search {
4274   my ($class, $params) = @_;
4275   my @where = ();
4276
4277   ##
4278   # parse agent
4279   ##
4280
4281   if ( $params->{'agentnum'} =~ /^(\d+)$/ and $1 ) {
4282     push @where,
4283       "cust_main.agentnum = $1";
4284   }
4285
4286   ##
4287   # parse cust_status
4288   ##
4289
4290   if ( $params->{'cust_status'} =~ /^([a-z]+)$/ ) {
4291     push @where, FS::cust_main->cust_status_sql . " = '$1' ";
4292   }
4293
4294   ##
4295   # parse customer sales person
4296   ##
4297
4298   if ( $params->{'cust_main_salesnum'} =~ /^(\d+)$/ ) {
4299     push @where, ($1 > 0) ? "cust_main.salesnum = $1"
4300                           : 'cust_main.salesnum IS NULL';
4301   }
4302
4303
4304   ##
4305   # parse sales person
4306   ##
4307
4308   if ( $params->{'salesnum'} =~ /^(\d+)$/ ) {
4309     push @where, ($1 > 0) ? "cust_pkg.salesnum = $1"
4310                           : 'cust_pkg.salesnum IS NULL';
4311   }
4312
4313   ##
4314   # parse custnum
4315   ##
4316
4317   if ( $params->{'custnum'} =~ /^(\d+)$/ and $1 ) {
4318     push @where,
4319       "cust_pkg.custnum = $1";
4320   }
4321
4322   ##
4323   # custbatch
4324   ##
4325
4326   if ( $params->{'pkgbatch'} =~ /^([\w\/\-\:\.]+)$/ and $1 ) {
4327     push @where,
4328       "cust_pkg.pkgbatch = '$1'";
4329   }
4330
4331   ##
4332   # parse status
4333   ##
4334
4335   if (    $params->{'magic'}  eq 'active'
4336        || $params->{'status'} eq 'active' ) {
4337
4338     push @where, FS::cust_pkg->active_sql();
4339
4340   } elsif (    $params->{'magic'}  =~ /^not[ _]yet[ _]billed$/
4341             || $params->{'status'} =~ /^not[ _]yet[ _]billed$/ ) {
4342
4343     push @where, FS::cust_pkg->not_yet_billed_sql();
4344
4345   } elsif (    $params->{'magic'}  =~ /^(one-time charge|inactive)/
4346             || $params->{'status'} =~ /^(one-time charge|inactive)/ ) {
4347
4348     push @where, FS::cust_pkg->inactive_sql();
4349
4350   } elsif (    $params->{'magic'}  eq 'suspended'
4351             || $params->{'status'} eq 'suspended'  ) {
4352
4353     push @where, FS::cust_pkg->suspended_sql();
4354
4355   } elsif (    $params->{'magic'}  =~ /^cancell?ed$/
4356             || $params->{'status'} =~ /^cancell?ed$/ ) {
4357
4358     push @where, FS::cust_pkg->cancelled_sql();
4359
4360   }
4361
4362   ###
4363   # parse package class
4364   ###
4365
4366   if ( exists($params->{'classnum'}) ) {
4367
4368     my @classnum = ();
4369     if ( ref($params->{'classnum'}) ) {
4370
4371       if ( ref($params->{'classnum'}) eq 'HASH' ) {
4372         @classnum = grep $params->{'classnum'}{$_}, keys %{ $params->{'classnum'} };
4373       } elsif ( ref($params->{'classnum'}) eq 'ARRAY' ) {
4374         @classnum = @{ $params->{'classnum'} };
4375       } else {
4376         die 'unhandled classnum ref '. $params->{'classnum'};
4377       }
4378
4379
4380     } elsif ( $params->{'classnum'} =~ /^(\d*)$/ && $1 ne '0' ) {
4381       @classnum = ( $1 );
4382     }
4383
4384     if ( @classnum ) {
4385
4386       my @c_where = ();
4387       my @nums = grep $_, @classnum;
4388       push @c_where, 'part_pkg.classnum IN ('. join(',',@nums). ')' if @nums;
4389       my $null = scalar( grep { $_ eq '' } @classnum );
4390       push @c_where, 'part_pkg.classnum IS NULL' if $null;
4391
4392       if ( scalar(@c_where) == 1 ) {
4393         push @where, @c_where;
4394       } elsif ( @c_where ) {
4395         push @where, ' ( '. join(' OR ', @c_where). ' ) ';
4396       }
4397
4398     }
4399     
4400
4401   }
4402
4403   ###
4404   # parse package report options
4405   ###
4406
4407   my @report_option = ();
4408   if ( exists($params->{'report_option'}) ) {
4409     if ( ref($params->{'report_option'}) eq 'ARRAY' ) {
4410       @report_option = @{ $params->{'report_option'} };
4411     } elsif ( $params->{'report_option'} =~ /^([,\d]*)$/ ) {
4412       @report_option = split(',', $1);
4413     }
4414
4415   }
4416
4417   if (@report_option) {
4418     # this will result in the empty set for the dangling comma case as it should
4419     push @where, 
4420       map{ "0 < ( SELECT count(*) FROM part_pkg_option
4421                     WHERE part_pkg_option.pkgpart = part_pkg.pkgpart
4422                     AND optionname = 'report_option_$_'
4423                     AND optionvalue = '1' )"
4424          } @report_option;
4425   }
4426
4427   foreach my $any ( grep /^report_option_any/, keys %$params ) {
4428
4429     my @report_option_any = ();
4430     if ( ref($params->{$any}) eq 'ARRAY' ) {
4431       @report_option_any = @{ $params->{$any} };
4432     } elsif ( $params->{$any} =~ /^([,\d]*)$/ ) {
4433       @report_option_any = split(',', $1);
4434     }
4435
4436     if (@report_option_any) {
4437       # this will result in the empty set for the dangling comma case as it should
4438       push @where, ' ( '. join(' OR ',
4439         map{ "0 < ( SELECT count(*) FROM part_pkg_option
4440                       WHERE part_pkg_option.pkgpart = part_pkg.pkgpart
4441                       AND optionname = 'report_option_$_'
4442                       AND optionvalue = '1' )"
4443            } @report_option_any
4444       ). ' ) ';
4445     }
4446
4447   }
4448
4449   ###
4450   # parse custom
4451   ###
4452
4453   push @where,  "part_pkg.custom = 'Y'" if $params->{custom};
4454
4455   ###
4456   # parse fcc_line
4457   ###
4458
4459   push @where,  "(part_pkg.fcc_ds0s > 0 OR pkg_class.fcc_ds0s > 0)" 
4460                                                         if $params->{fcc_line};
4461
4462   ###
4463   # parse censustract
4464   ###
4465
4466   if ( exists($params->{'censustract'}) ) {
4467     $params->{'censustract'} =~ /^([.\d]*)$/;
4468     my $censustract = "cust_location.censustract = '$1'";
4469     $censustract .= ' OR cust_location.censustract is NULL' unless $1;
4470     push @where,  "( $censustract )";
4471   }
4472
4473   ###
4474   # parse censustract2
4475   ###
4476   if ( exists($params->{'censustract2'})
4477        && $params->{'censustract2'} =~ /^(\d*)$/
4478      )
4479   {
4480     if ($1) {
4481       push @where, "cust_location.censustract LIKE '$1%'";
4482     } else {
4483       push @where,
4484         "( cust_location.censustract = '' OR cust_location.censustract IS NULL )";
4485     }
4486   }
4487
4488   ###
4489   # parse country/state
4490   ###
4491   for (qw(state country)) { # parsing rules are the same for these
4492   if ( exists($params->{$_}) 
4493     && uc($params->{$_}) =~ /^([A-Z]{2})$/ )
4494     {
4495       # XXX post-2.3 only--before that, state/country may be in cust_main
4496       push @where, "cust_location.$_ = '$1'";
4497     }
4498   }
4499
4500   ###
4501   # location_* flags
4502   ###
4503   if ( $params->{location_cust} xor $params->{location_nocust} ) {
4504     my $op = $params->{location_cust} ? '=' : '!=';
4505     push @where, "cust_location.locationnum $op cust_main.ship_locationnum";
4506   }
4507   if ( $params->{location_census} xor $params->{location_nocensus} ) {
4508     my $op = $params->{location_census} ? "IS NOT NULL" : "IS NULL";
4509     push @where, "cust_location.censustract $op";
4510   }
4511   if ( $params->{location_geocode} xor $params->{location_nogeocode} ) {
4512     my $op = $params->{location_geocode} ? "IS NOT NULL" : "IS NULL";
4513     push @where, "cust_location.geocode $op";
4514   }
4515
4516   ###
4517   # parse part_pkg
4518   ###
4519
4520   if ( ref($params->{'pkgpart'}) ) {
4521
4522     my @pkgpart = ();
4523     if ( ref($params->{'pkgpart'}) eq 'HASH' ) {
4524       @pkgpart = grep $params->{'pkgpart'}{$_}, keys %{ $params->{'pkgpart'} };
4525     } elsif ( ref($params->{'pkgpart'}) eq 'ARRAY' ) {
4526       @pkgpart = @{ $params->{'pkgpart'} };
4527     } else {
4528       die 'unhandled pkgpart ref '. $params->{'pkgpart'};
4529     }
4530
4531     @pkgpart = grep /^(\d+)$/, @pkgpart;
4532
4533     push @where, 'pkgpart IN ('. join(',', @pkgpart). ')' if scalar(@pkgpart);
4534
4535   } elsif ( $params->{'pkgpart'} =~ /^(\d+)$/ ) {
4536     push @where, "pkgpart = $1";
4537   } 
4538
4539   ###
4540   # parse dates
4541   ###
4542
4543   my $orderby = '';
4544
4545   #false laziness w/report_cust_pkg.html
4546   my %disable = (
4547     'all'             => {},
4548     'one-time charge' => { 'last_bill'=>1, 'bill'=>1, 'adjourn'=>1, 'susp'=>1, 'expire'=>1, 'cancel'=>1, },
4549     'active'          => { 'susp'=>1, 'cancel'=>1 },
4550     'suspended'       => { 'cancel' => 1 },
4551     'cancelled'       => {},
4552     ''                => {},
4553   );
4554
4555   if( exists($params->{'active'} ) ) {
4556     # This overrides all the other date-related fields
4557     my($beginning, $ending) = @{$params->{'active'}};
4558     push @where,
4559       "cust_pkg.setup IS NOT NULL",
4560       "cust_pkg.setup <= $ending",
4561       "(cust_pkg.cancel IS NULL OR cust_pkg.cancel >= $beginning )",
4562       "NOT (".FS::cust_pkg->onetime_sql . ")";
4563   }
4564   else {
4565     foreach my $field (qw( setup last_bill bill adjourn susp expire contract_end change_date cancel )) {
4566
4567       next unless exists($params->{$field});
4568
4569       my($beginning, $ending) = @{$params->{$field}};
4570
4571       next if $beginning == 0 && $ending == 4294967295;
4572
4573       push @where,
4574         "cust_pkg.$field IS NOT NULL",
4575         "cust_pkg.$field >= $beginning",
4576         "cust_pkg.$field <= $ending";
4577
4578       $orderby ||= "ORDER BY cust_pkg.$field";
4579
4580     }
4581   }
4582
4583   $orderby ||= 'ORDER BY bill';
4584
4585   ###
4586   # parse magic, legacy, etc.
4587   ###
4588
4589   if ( $params->{'magic'} &&
4590        $params->{'magic'} =~ /^(active|inactive|suspended|cancell?ed)$/
4591   ) {
4592
4593     $orderby = 'ORDER BY pkgnum';
4594
4595     if ( $params->{'pkgpart'} =~ /^(\d+)$/ ) {
4596       push @where, "pkgpart = $1";
4597     }
4598
4599   } elsif ( $params->{'query'} eq 'pkgnum' ) {
4600
4601     $orderby = 'ORDER BY pkgnum';
4602
4603   } elsif ( $params->{'query'} eq 'APKG_pkgnum' ) {
4604
4605     $orderby = 'ORDER BY pkgnum';
4606
4607     push @where, '0 < (
4608       SELECT count(*) FROM pkg_svc
4609        WHERE pkg_svc.pkgpart =  cust_pkg.pkgpart
4610          AND pkg_svc.quantity > ( SELECT count(*) FROM cust_svc
4611                                    WHERE cust_svc.pkgnum  = cust_pkg.pkgnum
4612                                      AND cust_svc.svcpart = pkg_svc.svcpart
4613                                 )
4614     )';
4615   
4616   }
4617
4618   ##
4619   # setup queries, links, subs, etc. for the search
4620   ##
4621
4622   # here is the agent virtualization
4623   if ($params->{CurrentUser}) {
4624     my $access_user =
4625       qsearchs('access_user', { username => $params->{CurrentUser} });
4626
4627     if ($access_user) {
4628       push @where, $access_user->agentnums_sql('table'=>'cust_main');
4629     } else {
4630       push @where, "1=0";
4631     }
4632   } else {
4633     push @where, $FS::CurrentUser::CurrentUser->agentnums_sql('table'=>'cust_main');
4634   }
4635
4636   my $extra_sql = scalar(@where) ? ' WHERE '. join(' AND ', @where) : '';
4637
4638   my $addl_from = 'LEFT JOIN part_pkg  USING ( pkgpart  ) '.
4639                   'LEFT JOIN pkg_class ON ( part_pkg.classnum = pkg_class.classnum ) '.
4640                   'LEFT JOIN cust_location USING ( locationnum ) '.
4641                   FS::UI::Web::join_cust_main('cust_pkg', 'cust_pkg');
4642
4643   my $select;
4644   my $count_query;
4645   if ( $params->{'select_zip5'} ) {
4646     my $zip = 'cust_location.zip';
4647
4648     $select = "DISTINCT substr($zip,1,5) as zip";
4649     $orderby = "ORDER BY substr($zip,1,5)";
4650     $count_query = "SELECT COUNT( DISTINCT substr($zip,1,5) )";
4651   } else {
4652     $select = join(', ',
4653                          'cust_pkg.*',
4654                          ( map "part_pkg.$_", qw( pkg freq ) ),
4655                          'pkg_class.classname',
4656                          'cust_main.custnum AS cust_main_custnum',
4657                          FS::UI::Web::cust_sql_fields(
4658                            $params->{'cust_fields'}
4659                          ),
4660                   );
4661     $count_query = 'SELECT COUNT(*)';
4662   }
4663
4664   $count_query .= " FROM cust_pkg $addl_from $extra_sql";
4665
4666   my $sql_query = {
4667     'table'       => 'cust_pkg',
4668     'hashref'     => {},
4669     'select'      => $select,
4670     'extra_sql'   => $extra_sql,
4671     'order_by'    => $orderby,
4672     'addl_from'   => $addl_from,
4673     'count_query' => $count_query,
4674   };
4675
4676 }
4677
4678 =item fcc_477_count
4679
4680 Returns a list of two package counts.  The first is a count of packages
4681 based on the supplied criteria and the second is the count of residential
4682 packages with those same criteria.  Criteria are specified as in the search
4683 method.
4684
4685 =cut
4686
4687 sub fcc_477_count {
4688   my ($class, $params) = @_;
4689
4690   my $sql_query = $class->search( $params );
4691
4692   my $count_sql = delete($sql_query->{'count_query'});
4693   $count_sql =~ s/ FROM/,count(CASE WHEN cust_main.company IS NULL OR cust_main.company = '' THEN 1 END) FROM/
4694     or die "couldn't parse count_sql";
4695
4696   my $count_sth = dbh->prepare($count_sql)
4697     or die "Error preparing $count_sql: ". dbh->errstr;
4698   $count_sth->execute
4699     or die "Error executing $count_sql: ". $count_sth->errstr;
4700   my $count_arrayref = $count_sth->fetchrow_arrayref;
4701
4702   return ( @$count_arrayref );
4703
4704 }
4705
4706 =item tax_locationnum_sql
4707
4708 Returns an SQL expression for the tax location for a package, based
4709 on the settings of 'tax-pkg_address' and 'tax-ship_address'.
4710
4711 =cut
4712
4713 sub tax_locationnum_sql {
4714   my $conf = FS::Conf->new;
4715   if ( $conf->exists('tax-pkg_address') ) {
4716     'cust_pkg.locationnum';
4717   }
4718   elsif ( $conf->exists('tax-ship_address') ) {
4719     'cust_main.ship_locationnum';
4720   }
4721   else {
4722     'cust_main.bill_locationnum';
4723   }
4724 }
4725
4726 =item location_sql
4727
4728 Returns a list: the first item is an SQL fragment identifying matching 
4729 packages/customers via location (taking into account shipping and package
4730 address taxation, if enabled), and subsequent items are the parameters to
4731 substitute for the placeholders in that fragment.
4732
4733 =cut
4734
4735 sub location_sql {
4736   my($class, %opt) = @_;
4737   my $ornull = $opt{'ornull'};
4738
4739   my $conf = new FS::Conf;
4740
4741   # '?' placeholders in _location_sql_where
4742   my $x = $ornull ? 3 : 2;
4743   my @bill_param = ( 
4744     ('district')x3,
4745     ('city')x3, 
4746     ('county')x$x,
4747     ('state')x$x,
4748     'country'
4749   );
4750
4751   my $main_where;
4752   my @main_param;
4753   if ( $conf->exists('tax-ship_address') ) {
4754
4755     $main_where = "(
4756          (     ( ship_last IS NULL     OR  ship_last  = '' )
4757            AND ". _location_sql_where('cust_main', '', $ornull ). "
4758          )
4759       OR (       ship_last IS NOT NULL AND ship_last != ''
4760            AND ". _location_sql_where('cust_main', 'ship_', $ornull ). "
4761          )
4762     )";
4763     #    AND payby != 'COMP'
4764
4765     @main_param = ( @bill_param, @bill_param );
4766
4767   } else {
4768
4769     $main_where = _location_sql_where('cust_main'); # AND payby != 'COMP'
4770     @main_param = @bill_param;
4771
4772   }
4773
4774   my $where;
4775   my @param;
4776   if ( $conf->exists('tax-pkg_address') ) {
4777
4778     my $loc_where = _location_sql_where( 'cust_location', '', $ornull );
4779
4780     $where = " (
4781                     ( cust_pkg.locationnum IS     NULL AND $main_where )
4782                  OR ( cust_pkg.locationnum IS NOT NULL AND $loc_where  )
4783                )
4784              ";
4785     @param = ( @main_param, @bill_param );
4786   
4787   } else {
4788
4789     $where = $main_where;
4790     @param = @main_param;
4791
4792   }
4793
4794   ( $where, @param );
4795
4796 }
4797
4798 #subroutine, helper for location_sql
4799 sub _location_sql_where {
4800   my $table  = shift;
4801   my $prefix = @_ ? shift : '';
4802   my $ornull = @_ ? shift : '';
4803
4804 #  $ornull             = $ornull          ? " OR ( ? IS NULL AND $table.${prefix}county IS NULL ) " : '';
4805
4806   $ornull = $ornull ? ' OR ? IS NULL ' : '';
4807
4808   my $or_empty_city     = " OR ( ? = '' AND $table.${prefix}city     IS NULL )";
4809   my $or_empty_county   = " OR ( ? = '' AND $table.${prefix}county   IS NULL )";
4810   my $or_empty_state    = " OR ( ? = '' AND $table.${prefix}state    IS NULL )";
4811
4812   my $text = (driver_name =~ /^mysql/i) ? 'char' : 'text';
4813
4814 #        ( $table.${prefix}city    = ? $or_empty_city   $ornull )
4815   "
4816         ( $table.district = ? OR ? = '' OR CAST(? AS $text) IS NULL )
4817     AND ( $table.${prefix}city     = ? OR ? = '' OR CAST(? AS $text) IS NULL )
4818     AND ( $table.${prefix}county   = ? $or_empty_county $ornull )
4819     AND ( $table.${prefix}state    = ? $or_empty_state  $ornull )
4820     AND   $table.${prefix}country  = ?
4821   ";
4822 }
4823
4824 sub _X_show_zero {
4825   my( $self, $what ) = @_;
4826
4827   my $what_show_zero = $what. '_show_zero';
4828   length($self->$what_show_zero())
4829     ? ($self->$what_show_zero() eq 'Y')
4830     : $self->part_pkg->$what_show_zero();
4831 }
4832
4833 =head1 SUBROUTINES
4834
4835 =over 4
4836
4837 =item order CUSTNUM, PKGPARTS_ARYREF, [ REMOVE_PKGNUMS_ARYREF [ RETURN_CUST_PKG_ARRAYREF [ REFNUM ] ] ]
4838
4839 CUSTNUM is a customer (see L<FS::cust_main>)
4840
4841 PKGPARTS is a list of pkgparts specifying the the billing item definitions (see
4842 L<FS::part_pkg>) to order for this customer.  Duplicates are of course
4843 permitted.
4844
4845 REMOVE_PKGNUMS is an optional list of pkgnums specifying the billing items to
4846 remove for this customer.  The services (see L<FS::cust_svc>) are moved to the
4847 new billing items.  An error is returned if this is not possible (see
4848 L<FS::pkg_svc>).  An empty arrayref is equivalent to not specifying this
4849 parameter.
4850
4851 RETURN_CUST_PKG_ARRAYREF, if specified, will be filled in with the
4852 newly-created cust_pkg objects.
4853
4854 REFNUM, if specified, will specify the FS::pkg_referral record to be created
4855 and inserted.  Multiple FS::pkg_referral records can be created by
4856 setting I<refnum> to an array reference of refnums or a hash reference with
4857 refnums as keys.  If no I<refnum> is defined, a default FS::pkg_referral
4858 record will be created corresponding to cust_main.refnum.
4859
4860 =cut
4861
4862 sub order {
4863   my ($custnum, $pkgparts, $remove_pkgnum, $return_cust_pkg, $refnum) = @_;
4864
4865   my $conf = new FS::Conf;
4866
4867   # Transactionize this whole mess
4868   local $SIG{HUP} = 'IGNORE';
4869   local $SIG{INT} = 'IGNORE'; 
4870   local $SIG{QUIT} = 'IGNORE';
4871   local $SIG{TERM} = 'IGNORE';
4872   local $SIG{TSTP} = 'IGNORE'; 
4873   local $SIG{PIPE} = 'IGNORE'; 
4874
4875   my $oldAutoCommit = $FS::UID::AutoCommit;
4876   local $FS::UID::AutoCommit = 0;
4877   my $dbh = dbh;
4878
4879   my $error;
4880 #  my $cust_main = qsearchs('cust_main', { custnum => $custnum });
4881 #  return "Customer not found: $custnum" unless $cust_main;
4882
4883   warn "$me order: pkgnums to remove: ". join(',', @$remove_pkgnum). "\n"
4884     if $DEBUG;
4885
4886   my @old_cust_pkg = map { qsearchs('cust_pkg', { pkgnum => $_ }) }
4887                          @$remove_pkgnum;
4888
4889   my $change = scalar(@old_cust_pkg) != 0;
4890
4891   my %hash = (); 
4892   if ( scalar(@old_cust_pkg) == 1 && scalar(@$pkgparts) == 1 ) {
4893
4894     warn "$me order: changing pkgnum ". $old_cust_pkg[0]->pkgnum.
4895          " to pkgpart ". $pkgparts->[0]. "\n"
4896       if $DEBUG;
4897
4898     my $err_or_cust_pkg =
4899       $old_cust_pkg[0]->change( 'pkgpart' => $pkgparts->[0],
4900                                 'refnum'  => $refnum,
4901                               );
4902
4903     unless (ref($err_or_cust_pkg)) {
4904       $dbh->rollback if $oldAutoCommit;
4905       return $err_or_cust_pkg;
4906     }
4907
4908     push @$return_cust_pkg, $err_or_cust_pkg;
4909     $dbh->commit or die $dbh->errstr if $oldAutoCommit;
4910     return '';
4911
4912   }
4913
4914   # Create the new packages.
4915   foreach my $pkgpart (@$pkgparts) {
4916
4917     warn "$me order: inserting pkgpart $pkgpart\n" if $DEBUG;
4918
4919     my $cust_pkg = new FS::cust_pkg { custnum => $custnum,
4920                                       pkgpart => $pkgpart,
4921                                       refnum  => $refnum,
4922                                       %hash,
4923                                     };
4924     $error = $cust_pkg->insert( 'change' => $change );
4925     push @$return_cust_pkg, $cust_pkg;
4926
4927     foreach my $link ($cust_pkg->part_pkg->supp_part_pkg_link) {
4928       my $supp_pkg = FS::cust_pkg->new({
4929           custnum => $custnum,
4930           pkgpart => $link->dst_pkgpart,
4931           refnum  => $refnum,
4932           main_pkgnum => $cust_pkg->pkgnum,
4933           %hash,
4934       });
4935       $error ||= $supp_pkg->insert( 'change' => $change );
4936       push @$return_cust_pkg, $supp_pkg;
4937     }
4938
4939     if ($error) {
4940       $dbh->rollback if $oldAutoCommit;
4941       return $error;
4942     }
4943
4944   }
4945   # $return_cust_pkg now contains refs to all of the newly 
4946   # created packages.
4947
4948   # Transfer services and cancel old packages.
4949   foreach my $old_pkg (@old_cust_pkg) {
4950
4951     warn "$me order: transferring services from pkgnum ". $old_pkg->pkgnum. "\n"
4952       if $DEBUG;
4953
4954     foreach my $new_pkg (@$return_cust_pkg) {
4955       $error = $old_pkg->transfer($new_pkg);
4956       if ($error and $error == 0) {
4957         # $old_pkg->transfer failed.
4958         $dbh->rollback if $oldAutoCommit;
4959         return $error;
4960       }
4961     }
4962
4963     if ( $error > 0 && $conf->exists('cust_pkg-change_svcpart') ) {
4964       warn "trying transfer again with change_svcpart option\n" if $DEBUG;
4965       foreach my $new_pkg (@$return_cust_pkg) {
4966         $error = $old_pkg->transfer($new_pkg, 'change_svcpart'=>1 );
4967         if ($error and $error == 0) {
4968           # $old_pkg->transfer failed.
4969         $dbh->rollback if $oldAutoCommit;
4970         return $error;
4971         }
4972       }
4973     }
4974
4975     if ($error > 0) {
4976       # Transfers were successful, but we went through all of the 
4977       # new packages and still had services left on the old package.
4978       # We can't cancel the package under the circumstances, so abort.
4979       $dbh->rollback if $oldAutoCommit;
4980       return "Unable to transfer all services from package ".$old_pkg->pkgnum;
4981     }
4982     $error = $old_pkg->cancel( quiet=>1 );
4983     if ($error) {
4984       $dbh->rollback;
4985       return $error;
4986     }
4987   }
4988   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
4989   '';
4990 }
4991
4992 =item bulk_change PKGPARTS_ARYREF, REMOVE_PKGNUMS_ARYREF [ RETURN_CUST_PKG_ARRAYREF ]
4993
4994 A bulk change method to change packages for multiple customers.
4995
4996 PKGPARTS is a list of pkgparts specifying the the billing item definitions (see
4997 L<FS::part_pkg>) to order for each customer.  Duplicates are of course
4998 permitted.
4999
5000 REMOVE_PKGNUMS is an list of pkgnums specifying the billing items to
5001 replace.  The services (see L<FS::cust_svc>) are moved to the
5002 new billing items.  An error is returned if this is not possible (see
5003 L<FS::pkg_svc>).
5004
5005 RETURN_CUST_PKG_ARRAYREF, if specified, will be filled in with the
5006 newly-created cust_pkg objects.
5007
5008 =cut
5009
5010 sub bulk_change {
5011   my ($pkgparts, $remove_pkgnum, $return_cust_pkg) = @_;
5012
5013   # Transactionize this whole mess
5014   local $SIG{HUP} = 'IGNORE';
5015   local $SIG{INT} = 'IGNORE'; 
5016   local $SIG{QUIT} = 'IGNORE';
5017   local $SIG{TERM} = 'IGNORE';
5018   local $SIG{TSTP} = 'IGNORE'; 
5019   local $SIG{PIPE} = 'IGNORE'; 
5020
5021   my $oldAutoCommit = $FS::UID::AutoCommit;
5022   local $FS::UID::AutoCommit = 0;
5023   my $dbh = dbh;
5024
5025   my @errors;
5026   my @old_cust_pkg = map { qsearchs('cust_pkg', { pkgnum => $_ }) }
5027                          @$remove_pkgnum;
5028
5029   while(scalar(@old_cust_pkg)) {
5030     my @return = ();
5031     my $custnum = $old_cust_pkg[0]->custnum;
5032     my (@remove) = map { $_->pkgnum }
5033                    grep { $_->custnum == $custnum } @old_cust_pkg;
5034     @old_cust_pkg = grep { $_->custnum != $custnum } @old_cust_pkg;
5035
5036     my $error = order $custnum, $pkgparts, \@remove, \@return;
5037
5038     push @errors, $error
5039       if $error;
5040     push @$return_cust_pkg, @return;
5041   }
5042
5043   if (scalar(@errors)) {
5044     $dbh->rollback if $oldAutoCommit;
5045     return join(' / ', @errors);
5046   }
5047
5048   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
5049   '';
5050 }
5051
5052 # Used by FS::Upgrade to migrate to a new database.
5053 sub _upgrade_data {  # class method
5054   my ($class, %opts) = @_;
5055   $class->_upgrade_otaker(%opts);
5056   my @statements = (
5057     # RT#10139, bug resulting in contract_end being set when it shouldn't
5058   'UPDATE cust_pkg SET contract_end = NULL WHERE contract_end = -1',
5059     # RT#10830, bad calculation of prorate date near end of year
5060     # the date range for bill is December 2009, and we move it forward
5061     # one year if it's before the previous bill date (which it should 
5062     # never be)
5063   'UPDATE cust_pkg SET bill = bill + (365*24*60*60) WHERE bill < last_bill
5064   AND bill > 1259654400 AND bill < 1262332800 AND (SELECT plan FROM part_pkg 
5065   WHERE part_pkg.pkgpart = cust_pkg.pkgpart) = \'prorate\'',
5066     # RT6628, add order_date to cust_pkg
5067     'update cust_pkg set order_date = (select history_date from h_cust_pkg 
5068         where h_cust_pkg.pkgnum = cust_pkg.pkgnum and 
5069         history_action = \'insert\') where order_date is null',
5070   );
5071   foreach my $sql (@statements) {
5072     my $sth = dbh->prepare($sql);
5073     $sth->execute or die $sth->errstr;
5074   }
5075 }
5076
5077 =back
5078
5079 =head1 BUGS
5080
5081 sub order is not OO.  Perhaps it should be moved to FS::cust_main and made so?
5082
5083 In sub order, the @pkgparts array (passed by reference) is clobbered.
5084
5085 Also in sub order, no money is adjusted.  Once FS::part_pkg defines a standard
5086 method to pass dates to the recur_prog expression, it should do so.
5087
5088 FS::svc_acct, FS::svc_domain, FS::svc_www, FS::svc_ip and FS::svc_forward are
5089 loaded via 'use' at compile time, rather than via 'require' in sub { setup,
5090 suspend, unsuspend, cancel } because they use %FS::UID::callback to load
5091 configuration values.  Probably need a subroutine which decides what to do
5092 based on whether or not we've fetched the user yet, rather than a hash.  See
5093 FS::UID and the TODO.
5094
5095 Now that things are transactional should the check in the insert method be
5096 moved to check ?
5097
5098 =head1 SEE ALSO
5099
5100 L<FS::Record>, L<FS::cust_main>, L<FS::part_pkg>, L<FS::cust_svc>,
5101 L<FS::pkg_svc>, schema.html from the base documentation
5102
5103 =cut
5104
5105 1;
5106