service dependencies: part_pkg_restrict / part_pkg_restrict_soft, RT#33685
[freeside.git] / FS / FS / part_pkg.pm
1 package FS::part_pkg;
2 use base qw( FS::part_pkg::API
3              FS::m2m_Common FS::o2m_Common FS::option_Common
4            );
5
6 use strict;
7 use vars qw( %plans $DEBUG $setup_hack $skip_pkg_svc_hack );
8 use Carp qw(carp cluck confess);
9 use Scalar::Util qw( blessed );
10 use DateTime;
11 use Time::Local qw( timelocal timelocal_nocheck ); # eventually replace with DateTime
12 use Tie::IxHash;
13 use FS::Conf;
14 use FS::Record qw( qsearch qsearchs dbh dbdef );
15 use FS::Cursor; # for upgrade
16 use FS::pkg_svc;
17 use FS::part_svc;
18 use FS::cust_pkg;
19 use FS::agent_type;
20 use FS::type_pkgs;
21 use FS::part_pkg_option;
22 use FS::part_pkg_fcc_option;
23 use FS::pkg_class;
24 use FS::agent;
25 use FS::part_pkg_msgcat;
26 use FS::part_pkg_taxrate;
27 use FS::part_pkg_taxoverride;
28 use FS::part_pkg_taxproduct;
29 use FS::part_pkg_link;
30 use FS::part_pkg_discount;
31 use FS::part_pkg_vendor;
32 use FS::part_pkg_currency;
33
34 $DEBUG = 0;
35 $setup_hack = 0;
36 $skip_pkg_svc_hack = 0;
37
38 =head1 NAME
39
40 FS::part_pkg - Object methods for part_pkg objects
41
42 =head1 SYNOPSIS
43
44   use FS::part_pkg;
45
46   $record = new FS::part_pkg \%hash
47   $record = new FS::part_pkg { 'column' => 'value' };
48
49   $custom_record = $template_record->clone;
50
51   $error = $record->insert;
52
53   $error = $new_record->replace($old_record);
54
55   $error = $record->delete;
56
57   $error = $record->check;
58
59   @pkg_svc = $record->pkg_svc;
60
61   $svcnum = $record->svcpart;
62   $svcnum = $record->svcpart( 'svc_acct' );
63
64 =head1 DESCRIPTION
65
66 An FS::part_pkg object represents a package definition.  FS::part_pkg
67 inherits from FS::Record.  The following fields are currently supported:
68
69 =over 4
70
71 =item pkgpart - primary key (assigned automatically for new package definitions)
72
73 =item pkg - Text name of this package definition (customer-viewable)
74
75 =item comment - Text name of this package definition (non-customer-viewable)
76
77 =item classnum - Optional package class (see L<FS::pkg_class>)
78
79 =item promo_code - Promotional code
80
81 =item setup - Setup fee expression (deprecated)
82
83 =item freq - Frequency of recurring fee
84
85 =item recur - Recurring fee expression (deprecated)
86
87 =item setuptax - Setup fee tax exempt flag, empty or `Y'
88
89 =item recurtax - Recurring fee tax exempt flag, empty or `Y'
90
91 =item taxclass - Tax class 
92
93 =item plan - Price plan
94
95 =item plandata - Price plan data (deprecated - see L<FS::part_pkg_option> instead)
96
97 =item disabled - Disabled flag, empty or `Y'
98
99 =item custom - Custom flag, empty or `Y'
100
101 =item setup_cost - for cost tracking
102
103 =item recur_cost - for cost tracking
104
105 =item pay_weight - Weight (relative to credit_weight and other package definitions) that controls payment application to specific line items.
106
107 =item credit_weight - Weight (relative to other package definitions) that controls credit application to specific line items.
108
109 =item agentnum - Optional agentnum (see L<FS::agent>)
110
111 =item fcc_ds0s - Optional DS0 equivalency number for FCC form 477
112
113 =item fcc_voip_class - Which column of FCC form 477 part II.B this package 
114 belongs in.
115
116 =item successor - Foreign key for the part_pkg that replaced this record.
117 If this record is not obsolete, will be null.
118
119 =item family_pkgpart - Foreign key for the part_pkg that was the earliest
120 ancestor of this record.  If this record is not a successor to another 
121 part_pkg, will be equal to pkgpart.
122
123 =item delay_start - Number of days to delay package start, by default
124
125 =item start_on_hold - 'Y' to suspend this package immediately when it is 
126 ordered. The package will not start billing or have a setup fee charged 
127 until it is manually unsuspended.
128
129 =back
130
131 =head1 METHODS
132
133 =over 4 
134
135 =item new HASHREF
136
137 Creates a new package definition.  To add the package definition to
138 the database, see L<"insert">.
139
140 =cut
141
142 sub table { 'part_pkg'; }
143
144 =item clone
145
146 An alternate constructor.  Creates a new package definition by duplicating
147 an existing definition.  A new pkgpart is assigned and the custom flag is
148 set to Y.  To add the package definition to the database, see L<"insert">.
149
150 =cut
151
152 sub clone {
153   my $self = shift;
154   my $class = ref($self);
155   my %hash = $self->hash;
156   $hash{'pkgpart'} = '';
157   $hash{'custom'} = 'Y';
158   #new FS::part_pkg ( \%hash ); # ?
159   new $class ( \%hash ); # ?
160 }
161
162 =item insert [ , OPTION => VALUE ... ]
163
164 Adds this package definition to the database.  If there is an error,
165 returns the error, otherwise returns false.
166
167 Currently available options are: I<pkg_svc>, I<primary_svc>, I<cust_pkg>, 
168 I<custnum_ref> and I<options>.
169
170 If I<pkg_svc> is set to a hashref with svcparts as keys and quantities as
171 values, appropriate FS::pkg_svc records will be inserted.  I<hidden_svc> can 
172 be set to a hashref of svcparts and flag values ('Y' or '') to set the 
173 'hidden' field in these records.
174
175 If I<primary_svc> is set to the svcpart of the primary service, the appropriate
176 FS::pkg_svc record will be updated.
177
178 If I<cust_pkg> is set to a pkgnum of a FS::cust_pkg record (or the FS::cust_pkg
179 record itself), the object will be updated to point to this package definition.
180
181 In conjunction with I<cust_pkg>, if I<custnum_ref> is set to a scalar reference,
182 the scalar will be updated with the custnum value from the cust_pkg record.
183
184 If I<tax_overrides> is set to a hashref with usage classes as keys and comma
185 separated tax class numbers as values, appropriate FS::part_pkg_taxoverride
186 records will be inserted.
187
188 If I<options> is set to a hashref of options, appropriate FS::part_pkg_option
189 records will be inserted.
190
191 If I<part_pkg_currency> is set to a hashref of options (with the keys as
192 option_CURRENCY), appropriate FS::part_pkg::currency records will be inserted.
193
194 =cut
195
196 sub insert {
197   my $self = shift;
198   my %options = @_;
199   warn "FS::part_pkg::insert called on $self with options ".
200        join(', ', map "$_=>$options{$_}", keys %options)
201     if $DEBUG;
202
203   local $SIG{HUP} = 'IGNORE';
204   local $SIG{INT} = 'IGNORE';
205   local $SIG{QUIT} = 'IGNORE';
206   local $SIG{TERM} = 'IGNORE';
207   local $SIG{TSTP} = 'IGNORE';
208   local $SIG{PIPE} = 'IGNORE';
209
210   my $oldAutoCommit = $FS::UID::AutoCommit;
211   local $FS::UID::AutoCommit = 0;
212   my $dbh = dbh;
213
214   warn "  inserting part_pkg record" if $DEBUG;
215   my $error = $self->SUPER::insert( $options{options} );
216   if ( $error ) {
217     $dbh->rollback if $oldAutoCommit;
218     return $error;
219   }
220
221   # set family_pkgpart
222   if ( $self->get('family_pkgpart') eq '' ) {
223     $self->set('family_pkgpart' => $self->pkgpart);
224     $error = $self->SUPER::replace;
225     if ( $error ) {
226       $dbh->rollback if $oldAutoCommit;
227       return $error;
228     }
229   }
230
231   warn "  inserting part_pkg_taxoverride records" if $DEBUG;
232   my %overrides = %{ $options{'tax_overrides'} || {} };
233   foreach my $usage_class ( keys %overrides ) {
234     my $override =
235       ( exists($overrides{$usage_class}) && defined($overrides{$usage_class}) )
236         ? $overrides{$usage_class}
237         : '';
238     my @overrides = (grep "$_", split(',', $override) );
239     my $error = $self->process_m2m (
240                   'link_table'   => 'part_pkg_taxoverride',
241                   'target_table' => 'tax_class',
242                   'hashref'      => { 'usage_class' => $usage_class },
243                   'params'       => \@overrides,
244                 );
245     if ( $error ) {
246       $dbh->rollback if $oldAutoCommit;
247       return $error;
248     }
249   }
250
251   warn "  inserting part_pkg_currency records" if $DEBUG;
252   my %part_pkg_currency = %{ $options{'part_pkg_currency'} || {} };
253   foreach my $key ( keys %part_pkg_currency ) {
254     $key =~ /^(.+)_([A-Z]{3})$/ or next;
255     my( $optionname, $currency ) = ( $1, $2 );
256     if ( $part_pkg_currency{$key} =~ /^\s*$/ ) {
257       if ( $self->option($optionname) == 0 ) {
258         $part_pkg_currency{$key} = '0';
259       } else {
260         $dbh->rollback if $oldAutoCommit;
261         ( my $thing = $optionname ) =~ s/_/ /g;
262         return ucfirst($thing). " $currency is required";
263       }
264     }
265     my $part_pkg_currency = new FS::part_pkg_currency {
266       'pkgpart'     => $self->pkgpart,
267       'optionname'  => $optionname,
268       'currency'    => $currency,
269       'optionvalue' => $part_pkg_currency{$key},
270     };
271     my $error = $part_pkg_currency->insert;
272     if ( $error ) {
273       $dbh->rollback if $oldAutoCommit;
274       return $error;
275     }
276   }
277
278   unless ( $skip_pkg_svc_hack ) {
279
280     warn "  inserting pkg_svc records" if $DEBUG;
281     my $pkg_svc = $options{'pkg_svc'} || {};
282     my $hidden_svc = $options{'hidden_svc'} || {};
283     foreach my $part_svc ( qsearch('part_svc', {} ) ) {
284       my $quantity = $pkg_svc->{$part_svc->svcpart} || 0;
285       my $primary_svc =
286         ( $options{'primary_svc'} && $options{'primary_svc'}==$part_svc->svcpart )
287           ? 'Y'
288           : '';
289
290       my $pkg_svc = new FS::pkg_svc( {
291         'pkgpart'     => $self->pkgpart,
292         'svcpart'     => $part_svc->svcpart,
293         'quantity'    => $quantity, 
294         'primary_svc' => $primary_svc,
295         'hidden'      => $hidden_svc->{$part_svc->svcpart},
296       } );
297       my $error = $pkg_svc->insert;
298       if ( $error ) {
299         $dbh->rollback if $oldAutoCommit;
300         return $error;
301       }
302     }
303
304     my $error = $self->check_pkg_svc(%options);
305     if ( $error ) {
306       $dbh->rollback if $oldAutoCommit;
307       return $error;
308     }
309
310   }
311
312   if ( $options{'cust_pkg'} ) {
313     warn "  updating cust_pkg record " if $DEBUG;
314     my $old_cust_pkg =
315       ref($options{'cust_pkg'})
316         ? $options{'cust_pkg'}
317         : qsearchs('cust_pkg', { pkgnum => $options{'cust_pkg'} } );
318     ${ $options{'custnum_ref'} } = $old_cust_pkg->custnum
319       if $options{'custnum_ref'};
320     my %hash = $old_cust_pkg->hash;
321     $hash{'pkgpart'} = $self->pkgpart,
322     my $new_cust_pkg = new FS::cust_pkg \%hash;
323     local($FS::cust_pkg::disable_agentcheck) = 1;
324     my $error = $new_cust_pkg->replace($old_cust_pkg);
325     if ( $error ) {
326       $dbh->rollback if $oldAutoCommit;
327       return "Error modifying cust_pkg record: $error";
328     }
329   }
330
331   if ( $options{'part_pkg_vendor'} ) {
332       while ( my ($exportnum, $vendor_pkg_id) =
333                 each %{ $options{part_pkg_vendor} }
334             )
335       {
336             my $ppv = new FS::part_pkg_vendor( {
337                     'pkgpart' => $self->pkgpart,
338                     'exportnum' => $exportnum,
339                     'vendor_pkg_id' => $vendor_pkg_id, 
340                 } );
341             my $error = $ppv->insert;
342             if ( $error ) {
343               $dbh->rollback if $oldAutoCommit;
344               return "Error inserting part_pkg_vendor record: $error";
345             }
346       }
347   }
348
349   if ( $options{fcc_options} ) {
350     warn "  updating fcc options " if $DEBUG;
351     $self->set_fcc_options( $options{fcc_options} );
352   }
353
354   warn "  committing transaction" if $DEBUG and $oldAutoCommit;
355   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
356
357   '';
358 }
359
360 =item delete
361
362 Currently unimplemented.
363
364 =cut
365
366 sub delete {
367   return "Can't (yet?) delete package definitions.";
368 # check & make sure the pkgpart isn't in cust_pkg or type_pkgs?
369 }
370
371 =item replace OLD_RECORD [ , OPTION => VALUE ... ]
372
373 Replaces OLD_RECORD with this one in the database.  If there is an error,
374 returns the error, otherwise returns false.
375
376 Currently available options are: I<pkg_svc>, I<hidden_svc>, I<primary_svc> 
377 and I<options>
378
379 If I<pkg_svc> is set to a hashref with svcparts as keys and quantities as
380 values, the appropriate FS::pkg_svc records will be replaced.  I<hidden_svc>
381 can be set to a hashref of svcparts and flag values ('Y' or '') to set the 
382 'hidden' field in these records.  I<bulk_skip> can be set to a hashref of
383 svcparts and flag values ('Y' or '') to set the 'bulk_skip' field in those
384 records.
385
386 If I<primary_svc> is set to the svcpart of the primary service, the appropriate
387 FS::pkg_svc record will be updated.
388
389 If I<options> is set to a hashref, the appropriate FS::part_pkg_option records
390 will be replaced.
391
392 If I<part_pkg_currency> is set to a hashref of options (with the keys as
393 option_CURRENCY), appropriate FS::part_pkg::currency records will be replaced.
394
395 =cut
396
397 sub replace {
398   my $new = shift;
399
400   my $old = ( blessed($_[0]) && $_[0]->isa('FS::Record') )
401               ? shift
402               : $new->replace_old;
403
404   my $options = 
405     ( ref($_[0]) eq 'HASH' )
406       ? shift
407       : { @_ };
408
409   $options->{options} = { $old->options } unless defined($options->{options});
410
411   warn "FS::part_pkg::replace called on $new to replace $old with options".
412        join(', ', map "$_ => ". $options->{$_}, keys %$options)
413     if $DEBUG;
414
415   local $SIG{HUP} = 'IGNORE';
416   local $SIG{INT} = 'IGNORE';
417   local $SIG{QUIT} = 'IGNORE';
418   local $SIG{TERM} = 'IGNORE';
419   local $SIG{TSTP} = 'IGNORE';
420   local $SIG{PIPE} = 'IGNORE';
421
422   my $oldAutoCommit = $FS::UID::AutoCommit;
423   local $FS::UID::AutoCommit = 0;
424   my $dbh = dbh;
425   
426   my $conf = new FS::Conf;
427   if ( $conf->exists('part_pkg-lineage') ) {
428     if ( grep { $options->{options}->{$_} ne $old->option($_, 1) }
429           qw(setup_fee recur_fee) #others? config?
430         ) { 
431     
432       warn "  superseding package" if $DEBUG;
433
434       my $error = $new->supersede($old, %$options);
435       if ( $error ) {
436         $dbh->rollback if $oldAutoCommit;
437         return $error;
438       }
439       else {
440         warn "  committing transaction" if $DEBUG and $oldAutoCommit;
441         $dbh->commit if $oldAutoCommit;
442         return $error;
443       }
444     }
445     #else nothing
446   }
447
448   #plandata shit stays in replace for upgrades until after 2.0 (or edit
449   #_upgrade_data)
450   warn "  saving legacy plandata" if $DEBUG;
451   my $plandata = $new->get('plandata');
452   $new->set('plandata', '');
453
454   warn "  deleting old part_pkg_option records" if $DEBUG;
455   foreach my $part_pkg_option ( $old->part_pkg_option ) {
456     my $error = $part_pkg_option->delete;
457     if ( $error ) {
458       $dbh->rollback if $oldAutoCommit;
459       return $error;
460     }
461   }
462
463   warn "  replacing part_pkg record" if $DEBUG;
464   my $error = $new->SUPER::replace($old, $options->{options} );
465   if ( $error ) {
466     $dbh->rollback if $oldAutoCommit;
467     return $error;
468   }
469
470   warn "  inserting part_pkg_option records for plandata: $plandata|" if $DEBUG;
471   foreach my $part_pkg_option ( 
472     map { /^(\w+)=(.*)$/ or do { $dbh->rollback if $oldAutoCommit;
473                                  return "illegal plandata: $plandata";
474                                };
475           new FS::part_pkg_option {
476             'pkgpart'     => $new->pkgpart,
477             'optionname'  => $1,
478             'optionvalue' => $2,
479           };
480         }
481     split("\n", $plandata)
482   ) {
483     my $error = $part_pkg_option->insert;
484     if ( $error ) {
485       $dbh->rollback if $oldAutoCommit;
486       return $error;
487     }
488   }
489
490   #trivial nit: not the most efficient to delete and reinsert
491   warn "  deleting old part_pkg_currency records" if $DEBUG;
492   foreach my $part_pkg_currency ( $old->part_pkg_currency ) {
493     my $error = $part_pkg_currency->delete;
494     if ( $error ) {
495       $dbh->rollback if $oldAutoCommit;
496       return "error deleting part_pkg_currency record: $error";
497     }
498   }
499
500   warn "  inserting new part_pkg_currency records" if $DEBUG;
501   my %part_pkg_currency = %{ $options->{'part_pkg_currency'} || {} };
502   foreach my $key ( keys %part_pkg_currency ) {
503     $key =~ /^(.+)_([A-Z]{3})$/ or next;
504     my $part_pkg_currency = new FS::part_pkg_currency {
505       'pkgpart'     => $new->pkgpart,
506       'optionname'  => $1,
507       'currency'    => $2,
508       'optionvalue' => $part_pkg_currency{$key},
509     };
510     my $error = $part_pkg_currency->insert;
511     if ( $error ) {
512       $dbh->rollback if $oldAutoCommit;
513       return "error inserting part_pkg_currency record: $error";
514     }
515   }
516
517
518   warn "  replacing pkg_svc records" if $DEBUG;
519   my $pkg_svc = $options->{'pkg_svc'};
520   my $hidden_svc = $options->{'hidden_svc'} || {};
521   my $bulk_skip  = $options->{'bulk_skip'} || {};
522   if ( $pkg_svc ) { # if it wasn't passed, don't change existing pkg_svcs
523
524     foreach my $part_svc ( qsearch('part_svc', {} ) ) {
525       my $quantity  = $pkg_svc->{$part_svc->svcpart} || 0;
526       my $hidden    = $hidden_svc->{$part_svc->svcpart} || '';
527       my $bulk_skip = $bulk_skip->{$part_svc->svcpart} || '';
528       my $primary_svc =
529         ( defined($options->{'primary_svc'}) && $options->{'primary_svc'}
530           && $options->{'primary_svc'} == $part_svc->svcpart
531         )
532           ? 'Y'
533           : '';
534
535       my $old_pkg_svc = qsearchs('pkg_svc', {
536           'pkgpart' => $old->pkgpart,
537           'svcpart' => $part_svc->svcpart,
538         }
539       );
540       my $old_quantity = 0;
541       my $old_primary_svc = '';
542       my $old_hidden = '';
543       my $old_bulk_skip = '';
544       if ( $old_pkg_svc ) {
545         $old_quantity = $old_pkg_svc->quantity;
546         $old_primary_svc = $old_pkg_svc->primary_svc 
547           if $old_pkg_svc->dbdef_table->column('primary_svc'); # is this needed?
548         $old_hidden = $old_pkg_svc->hidden;
549         $old_bulk_skip = $old_pkg_svc->old_bulk_skip;
550       }
551    
552       next unless $old_quantity    != $quantity
553                || $old_primary_svc ne $primary_svc
554                || $old_hidden      ne $hidden
555                || $old_bulk_skip   ne $bulk_skip;
556     
557       my $new_pkg_svc = new FS::pkg_svc( {
558         'pkgsvcnum'   => ( $old_pkg_svc ? $old_pkg_svc->pkgsvcnum : '' ),
559         'pkgpart'     => $new->pkgpart,
560         'svcpart'     => $part_svc->svcpart,
561         'quantity'    => $quantity, 
562         'primary_svc' => $primary_svc,
563         'hidden'      => $hidden,
564         'bulk_skip'   => $bulk_skip,
565       } );
566       my $error = $old_pkg_svc
567                     ? $new_pkg_svc->replace($old_pkg_svc)
568                     : $new_pkg_svc->insert;
569       if ( $error ) {
570         $dbh->rollback if $oldAutoCommit;
571         return $error;
572       }
573     } #foreach $part_svc
574
575     my $error = $new->check_pkg_svc(%$options);
576     if ( $error ) {
577       $dbh->rollback if $oldAutoCommit;
578       return $error;
579     }
580
581   } #if $options->{pkg_svc}
582   
583   my @part_pkg_vendor = $old->part_pkg_vendor;
584   my @current_exportnum = ();
585   if ( $options->{'part_pkg_vendor'} ) {
586       my($exportnum,$vendor_pkg_id);
587       while ( ($exportnum,$vendor_pkg_id) 
588                                 = each %{$options->{'part_pkg_vendor'}} ) {
589           my $noinsert = 0;
590           foreach my $part_pkg_vendor ( @part_pkg_vendor ) {
591             if($exportnum == $part_pkg_vendor->exportnum
592                 && $vendor_pkg_id ne $part_pkg_vendor->vendor_pkg_id) {
593                 $part_pkg_vendor->vendor_pkg_id($vendor_pkg_id);
594                 my $error = $part_pkg_vendor->replace;
595                 if ( $error ) {
596                   $dbh->rollback if $oldAutoCommit;
597                   return "Error replacing part_pkg_vendor record: $error";
598                 }
599                 $noinsert = 1;
600                 last;
601             }
602             elsif($exportnum == $part_pkg_vendor->exportnum
603                 && $vendor_pkg_id eq $part_pkg_vendor->vendor_pkg_id) {
604                 $noinsert = 1;
605                 last;
606             }
607           }
608           unless ( $noinsert ) {
609             my $ppv = new FS::part_pkg_vendor( {
610                     'pkgpart' => $new->pkgpart,
611                     'exportnum' => $exportnum,
612                     'vendor_pkg_id' => $vendor_pkg_id, 
613                 } );
614             my $error = $ppv->insert;
615             if ( $error ) {
616               $dbh->rollback if $oldAutoCommit;
617               return "Error inserting part_pkg_vendor record: $error";
618             }
619           }
620           push @current_exportnum, $exportnum;
621       }
622   }
623   foreach my $part_pkg_vendor ( @part_pkg_vendor ) {
624       unless ( grep($_ eq $part_pkg_vendor->exportnum, @current_exportnum) ) {
625         my $error = $part_pkg_vendor->delete;
626         if ( $error ) {
627           $dbh->rollback if $oldAutoCommit;
628           return "Error deleting part_pkg_vendor record: $error";
629         }
630       }
631   }
632   
633   # propagate changes to certain core fields
634   if ( $conf->exists('part_pkg-lineage') ) {
635     warn "  propagating changes to family" if $DEBUG;
636     my $error = $new->propagate($old);
637     if ( $error ) {
638       $dbh->rollback if $oldAutoCommit;
639       return $error;
640     }
641   }
642
643   if ( $options->{fcc_options} ) {
644     warn "  updating fcc options " if $DEBUG;
645     $new->set_fcc_options( $options->{fcc_options} );
646   }
647
648   warn "  committing transaction" if $DEBUG and $oldAutoCommit;
649   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
650   '';
651 }
652
653 =item check
654
655 Checks all fields to make sure this is a valid package definition.  If
656 there is an error, returns the error, otherwise returns false.  Called by the
657 insert and replace methods.
658
659 =cut
660
661 sub check {
662   my $self = shift;
663   warn "FS::part_pkg::check called on $self" if $DEBUG;
664
665   for (qw(setup recur plandata)) {
666     #$self->set($_=>0) if $self->get($_) =~ /^\s*$/; }
667     return "Use of $_ field is deprecated; set a plan and options: ".
668            $self->get($_)
669       if length($self->get($_));
670     $self->set($_, '');
671   }
672
673   if ( $self->dbdef_table->column('freq')->type =~ /(int)/i ) {
674     my $error = $self->ut_number('freq');
675     return $error if $error;
676   } else {
677     $self->freq =~ /^(\d+[hdw]?)$/
678       or return "Illegal or empty freq: ". $self->freq;
679     $self->freq($1);
680   }
681
682   my @null_agentnum_right = ( 'Edit global package definitions' );
683   push @null_agentnum_right, 'One-time charge'
684     if $self->freq =~ /^0/;
685   push @null_agentnum_right, 'Customize customer package'
686     if $self->disabled eq 'Y'; #good enough
687
688   my $error = $self->ut_numbern('pkgpart')
689     || $self->ut_text('pkg')
690     || $self->ut_textn('comment')
691     || $self->ut_textn('promo_code')
692     || $self->ut_alphan('plan')
693     || $self->ut_flag('setuptax')
694     || $self->ut_flag('recurtax')
695     || $self->ut_textn('taxclass')
696     || $self->ut_flag('disabled')
697     || $self->ut_flag('custom')
698     || $self->ut_flag('no_auto')
699     || $self->ut_flag('recur_show_zero')
700     || $self->ut_flag('setup_show_zero')
701     || $self->ut_flag('start_on_hold')
702     #|| $self->ut_moneyn('setup_cost')
703     #|| $self->ut_moneyn('recur_cost')
704     || $self->ut_floatn('setup_cost')
705     || $self->ut_floatn('recur_cost')
706     || $self->ut_floatn('pay_weight')
707     || $self->ut_floatn('credit_weight')
708     || $self->ut_numbern('taxproductnum')
709     || $self->ut_foreign_keyn('classnum',       'pkg_class', 'classnum')
710     || $self->ut_foreign_keyn('addon_classnum', 'pkg_class', 'classnum')
711     || $self->ut_foreign_keyn('taxproductnum',
712                               'part_pkg_taxproduct',
713                               'taxproductnum'
714                              )
715     || ( $setup_hack
716            ? $self->ut_foreign_keyn('agentnum', 'agent', 'agentnum' )
717            : $self->ut_agentnum_acl('agentnum', \@null_agentnum_right)
718        )
719     || $self->ut_numbern('fcc_ds0s')
720     || $self->ut_numbern('fcc_voip_class')
721     || $self->ut_numbern('delay_start')
722     || $self->ut_foreign_keyn('successor', 'part_pkg', 'pkgpart')
723     || $self->ut_foreign_keyn('family_pkgpart', 'part_pkg', 'pkgpart')
724     || $self->ut_alphan('agent_pkgpartid')
725     || $self->SUPER::check
726   ;
727   return $error if $error;
728
729   return 'Unknown plan '. $self->plan
730     unless exists($plans{$self->plan});
731
732   my $conf = new FS::Conf;
733   return 'Taxclass is required'
734     if ! $self->taxclass && $conf->exists('require_taxclasses');
735
736   '';
737 }
738
739 =item check_pkg_svc
740
741 Checks pkg_svc records as a whole (for part_svc_link dependencies).
742
743 If there is an error, returns the error, otherwise returns false.
744
745 =cut
746
747 sub check_pkg_svc {
748   my( $self, %opt ) = @_;
749
750   my $agentnum = $self->agentnum;
751
752   my %pkg_svc = map { $_->svcpart => $_ } $self->pkg_svc;
753
754   foreach my $svcpart ( keys %pkg_svc ) {
755
756     foreach my $part_svc_link ( $self->part_svc_link(
757                                   'src_svcpart' => $svcpart,
758                                   'link_type'   => 'part_pkg_restrict',
759                                 )
760     ) {
761
762       return $part_svc_link->dst_svc. ' must be included with '.
763              $part_svc_link->src_svc
764         unless $pkg_svc{ $part_svc_link->dst_svcpart };
765     }
766
767   }
768
769   return '' if $opt{part_pkg_restrict_soft_override};
770
771   foreach my $svcpart ( keys %pkg_svc ) {
772
773     foreach my $part_svc_link ( $self->part_svc_link(
774                                   'src_svcpart' => $svcpart,
775                                   'link_type'   => 'part_pkg_restrict_soft',
776                                 )
777     ) {
778       return $part_svc_link->dst_svc. ' is suggested with '.
779              $part_svc_link->src_svc
780         unless $pkg_svc{ $part_svc_link->dst_svcpart };
781     }
782
783   }
784
785   '';
786 }
787
788 =item part_svc_link OPTION => VALUE ...
789
790 Returns the service dependencies (see L<FS::part_svc_link>) for the given
791 search options, taking into account this package definition's agent.
792
793 Available options are any field in part_svc_link.  Typically used options are
794 src_svcpart and link_type.
795
796 =cut
797
798 sub part_svc_link {
799   my( $self, %opt ) = @_;
800
801   my $agentnum = $self->agentnum;
802
803   qsearch({ 'table'     => 'part_svc_link',
804             'hashref'   => \%opt,
805             'extra_sql' =>
806               $agentnum
807                 ? "AND ( agentnum IS NULL OR agentnum = $agentnum )"
808                 : 'AND agentnum IS NULL',
809          });
810 }
811
812 =item supersede OLD [, OPTION => VALUE ... ]
813
814 Inserts this package as a successor to the package OLD.  All options are as
815 for C<insert>.  After inserting, disables OLD and sets the new package as its
816 successor.
817
818 =cut
819
820 sub supersede {
821   my ($new, $old, %options) = @_;
822   my $error;
823
824   $new->set('pkgpart' => '');
825   $new->set('family_pkgpart' => $old->family_pkgpart);
826   warn "    inserting successor package\n" if $DEBUG;
827   $error = $new->insert(%options);
828   return $error if $error;
829  
830   warn "    disabling superseded package\n" if $DEBUG; 
831   $old->set('successor' => $new->pkgpart);
832   $old->set('disabled' => 'Y');
833   $error = $old->SUPER::replace; # don't change its options/pkg_svc records
834   return $error if $error;
835
836   warn "  propagating changes to family" if $DEBUG;
837   $new->propagate($old);
838 }
839
840 =item propagate OLD
841
842 If any of certain fields have changed from OLD to this package, then,
843 for all packages in the same lineage as this one, sets those fields 
844 to their values in this package.
845
846 =cut
847
848 my @propagate_fields = (
849   qw( pkg classnum setup_cost recur_cost taxclass
850   setuptax recurtax pay_weight credit_weight
851   )
852 );
853
854 sub propagate {
855   my $new = shift;
856   my $old = shift;
857   my %fields = (
858     map { $_ => $new->get($_) }
859     grep { $new->get($_) ne $old->get($_) }
860     @propagate_fields
861   );
862
863   my @part_pkg = qsearch('part_pkg', { 
864       'family_pkgpart' => $new->family_pkgpart 
865   });
866   my @error;
867   foreach my $part_pkg ( @part_pkg ) {
868     my $pkgpart = $part_pkg->pkgpart;
869     next if $pkgpart == $new->pkgpart; # don't modify $new
870     warn "    propagating to pkgpart $pkgpart\n" if $DEBUG;
871     foreach ( keys %fields ) {
872       $part_pkg->set($_, $fields{$_});
873     }
874     # SUPER::replace to avoid changing non-core fields
875     my $error = $part_pkg->SUPER::replace;
876     push @error, "pkgpart $pkgpart: $error"
877       if $error;
878   }
879   join("\n", @error);
880 }
881
882 =item set_fcc_options HASHREF
883
884 Sets the FCC options on this package definition to the values specified
885 in HASHREF.
886
887 =cut
888
889 sub set_fcc_options {
890   my $self = shift;
891   my $pkgpart = $self->pkgpart;
892   my $options;
893   if (ref $_[0]) {
894     $options = shift;
895   } else {
896     $options = { @_ };
897   }
898
899   my %existing_num = map { $_->fccoptionname => $_->num }
900                      qsearch('part_pkg_fcc_option', { pkgpart => $pkgpart });
901
902   local $FS::Record::nowarn_identical = 1;
903   # set up params for process_o2m
904   my $i = 0;
905   my $params = {};
906   foreach my $name (keys %$options ) {
907     $params->{ "num$i" } = $existing_num{$name} || '';
908     $params->{ "num$i".'_fccoptionname' } = $name;
909     $params->{ "num$i".'_optionvalue'   } = $options->{$name};
910     $i++;
911   }
912
913   $self->process_o2m(
914     table   => 'part_pkg_fcc_option',
915     fields  => [qw( fccoptionname optionvalue )],
916     params  => $params,
917   );
918 }
919
920 =item pkg_locale LOCALE
921
922 Returns a customer-viewable string representing this package for the given
923 locale, from the part_pkg_msgcat table.  If the given locale is empty or no
924 localized string is found, returns the base pkg field.
925
926 =cut
927
928 sub pkg_locale {
929   my( $self, $locale ) = @_;
930   return $self->pkg unless $locale;
931   my $part_pkg_msgcat = $self->part_pkg_msgcat($locale) or return $self->pkg;
932   $part_pkg_msgcat->pkg;
933 }
934
935 =item part_pkg_msgcat LOCALE
936
937 Like pkg_locale, but returns the FS::part_pkg_msgcat object itself.
938
939 =cut
940
941 sub part_pkg_msgcat {
942   my( $self, $locale ) = @_;
943   qsearchs( 'part_pkg_msgcat', {
944     pkgpart => $self->pkgpart,
945     locale  => $locale,
946   });
947 }
948
949 =item pkg_comment [ OPTION => VALUE... ]
950
951 Returns an (internal) string representing this package.  Currently,
952 "pkgpart: pkg - comment", is returned.  "pkg - comment" may be returned in the
953 future, omitting pkgpart.  The comment will have '(CUSTOM) ' prepended if
954 custom is Y.
955
956 If the option nopkgpart is true then the "pkgpart: ' is omitted.
957
958 =cut
959
960 sub pkg_comment {
961   my $self = shift;
962   my %opt = @_;
963
964   #$self->pkg. ' - '. $self->comment;
965   #$self->pkg. ' ('. $self->comment. ')';
966   my $pre = $opt{nopkgpart} ? '' : $self->pkgpart. ': ';
967   my $custom_comment = $self->custom_comment(%opt);
968   $pre. $self->pkg. ( $custom_comment ? " - $custom_comment" : '' );
969 }
970
971 #without price info (so without hitting the DB again)
972 sub pkg_comment_only {
973   my $self = shift;
974   my %opt = @_;
975
976   my $pre = $opt{nopkgpart} ? '' : $self->pkgpart. ': ';
977   my $comment = $self->comment;
978   $pre. $self->pkg. ( $comment ? " - $comment" : '' );
979 }
980
981 sub price_info { # safety, in case a part_pkg hasn't defined price_info
982     '';
983 }
984
985 sub custom_comment {
986   my $self = shift;
987   my $price_info = $self->price_info(@_);
988   ( $self->custom ? '(CUSTOM) ' : '' ).
989     $self->comment.
990     ( ($self->custom || $self->comment) ? ' - ' : '' ).
991     ($price_info || 'No charge');
992 }
993
994 sub pkg_price_info {
995   my $self = shift;
996   $self->pkg. ' - '. ($self->price_info || 'No charge');
997 }
998
999 =item pkg_class
1000
1001 Returns the package class, as an FS::pkg_class object, or the empty string
1002 if there is no package class.
1003
1004 =item addon_pkg_class
1005
1006 Returns the add-on package class, as an FS::pkg_class object, or the empty
1007 string if there is no add-on package class.
1008
1009 =cut
1010
1011 sub addon_pkg_class {
1012   my $self = shift;
1013   if ( $self->addon_classnum ) {
1014     qsearchs('pkg_class', { 'classnum' => $self->addon_classnum } );
1015   } else {
1016     return '';
1017   }
1018 }
1019
1020 =item categoryname 
1021
1022 Returns the package category name, or the empty string if there is no package
1023 category.
1024
1025 =cut
1026
1027 sub categoryname {
1028   my $self = shift;
1029   my $pkg_class = $self->pkg_class;
1030   $pkg_class
1031     ? $pkg_class->categoryname
1032     : '';
1033 }
1034
1035 =item classname 
1036
1037 Returns the package class name, or the empty string if there is no package
1038 class.
1039
1040 =cut
1041
1042 sub classname {
1043   my $self = shift;
1044   my $pkg_class = $self->pkg_class;
1045   $pkg_class
1046     ? $pkg_class->classname
1047     : '';
1048 }
1049
1050 =item addon_classname 
1051
1052 Returns the add-on package class name, or the empty string if there is no
1053 add-on package class.
1054
1055 =cut
1056
1057 sub addon_classname {
1058   my $self = shift;
1059   my $pkg_class = $self->addon_pkg_class;
1060   $pkg_class
1061     ? $pkg_class->classname
1062     : '';
1063 }
1064
1065 =item agent 
1066
1067 Returns the associated agent for this event, if any, as an FS::agent object.
1068
1069 =item pkg_svc [ HASHREF | OPTION => VALUE ]
1070
1071 Returns all FS::pkg_svc objects (see L<FS::pkg_svc>) for this package
1072 definition (with non-zero quantity).
1073
1074 One option is available, I<disable_linked>.  If set true it will return the
1075 services for this package definition alone, omitting services from any add-on
1076 packages.
1077
1078 =cut
1079
1080 =item type_pkgs
1081
1082 Returns all FS::type_pkgs objects (see L<FS::type_pkgs>) for this package
1083 definition.
1084
1085 =cut
1086
1087 sub pkg_svc {
1088   my $self = shift;
1089
1090 #  #sort { $b->primary cmp $a->primary } 
1091 #    grep { $_->quantity }
1092 #      qsearch( 'pkg_svc', { 'pkgpart' => $self->pkgpart } );
1093
1094   my $opt = ref($_[0]) ? $_[0] : { @_ };
1095   my %pkg_svc = map  { $_->svcpart => $_ }
1096                 grep { $_->quantity }
1097                 qsearch( 'pkg_svc', { 'pkgpart' => $self->pkgpart } );
1098
1099   unless ( $opt->{disable_linked} ) {
1100     foreach my $dst_pkg ( map $_->dst_pkg, $self->svc_part_pkg_link ) {
1101       my @pkg_svc = grep { $_->quantity }
1102                     qsearch( 'pkg_svc', { pkgpart=>$dst_pkg->pkgpart } );
1103       foreach my $pkg_svc ( @pkg_svc ) {
1104         if ( $pkg_svc{$pkg_svc->svcpart} ) {
1105           my $quantity = $pkg_svc{$pkg_svc->svcpart}->quantity;
1106           $pkg_svc{$pkg_svc->svcpart}->quantity($quantity + $pkg_svc->quantity);
1107         } else {
1108           $pkg_svc{$pkg_svc->svcpart} = $pkg_svc;
1109         }
1110       }
1111     }
1112   }
1113
1114   values(%pkg_svc);
1115
1116 }
1117
1118 =item svcpart [ SVCDB ]
1119
1120 Returns the svcpart of the primary service definition (see L<FS::part_svc>)
1121 associated with this package definition (see L<FS::pkg_svc>).  Returns
1122 false if there not a primary service definition or exactly one service
1123 definition with quantity 1, or if SVCDB is specified and does not match the
1124 svcdb of the service definition.  SVCDB can be specified as a scalar table
1125 name, such as 'svc_acct', or as an arrayref of possible table names.
1126
1127 =cut
1128
1129 sub svcpart {
1130   my $pkg_svc = shift->_primary_pkg_svc(@_);
1131   $pkg_svc ? $pkg_svc->svcpart : '';
1132 }
1133
1134 =item part_svc [ SVCDB ]
1135
1136 Like the B<svcpart> method, but returns the FS::part_svc object (see
1137 L<FS::part_svc>).
1138
1139 =cut
1140
1141 sub part_svc {
1142   my $pkg_svc = shift->_primary_pkg_svc(@_);
1143   $pkg_svc ? $pkg_svc->part_svc : '';
1144 }
1145
1146 sub _primary_pkg_svc {
1147   my $self = shift;
1148
1149   my $svcdb = scalar(@_) ? shift : [];
1150   $svcdb = ref($svcdb) ? $svcdb : [ $svcdb ];
1151   my %svcdb = map { $_=>1 } @$svcdb;
1152
1153   my @svcdb_pkg_svc =
1154     grep { !scalar(@$svcdb) || $svcdb{ $_->part_svc->svcdb } }
1155          $self->pkg_svc;
1156
1157   my @pkg_svc = grep { $_->primary_svc =~ /^Y/i } @svcdb_pkg_svc;
1158   @pkg_svc = grep {$_->quantity == 1 } @svcdb_pkg_svc
1159     unless @pkg_svc;
1160   return '' if scalar(@pkg_svc) != 1;
1161   $pkg_svc[0];
1162 }
1163
1164 =item svcpart_unique_svcdb SVCDB
1165
1166 Returns the svcpart of a service definition (see L<FS::part_svc>) matching
1167 SVCDB associated with this package definition (see L<FS::pkg_svc>).  Returns
1168 false if there not a primary service definition for SVCDB or there are multiple
1169 service definitions for SVCDB.
1170
1171 =cut
1172
1173 sub svcpart_unique_svcdb {
1174   my( $self, $svcdb ) = @_;
1175   my @svcdb_pkg_svc = grep { ( $svcdb eq $_->part_svc->svcdb ) } $self->pkg_svc;
1176   return '' if scalar(@svcdb_pkg_svc) != 1;
1177   $svcdb_pkg_svc[0]->svcpart;
1178 }
1179
1180 =item payby
1181
1182 Returns a list of the acceptable payment types for this package.  Eventually
1183 this should come out of a database table and be editable, but currently has the
1184 following logic instead:
1185
1186 If the package is free, the single item B<BILL> is
1187 returned, otherwise, the single item B<CARD> is returned.
1188
1189 (CHEK?  LEC?  Probably shouldn't accept those by default, prone to abuse)
1190
1191 =cut
1192
1193 sub payby {
1194   my $self = shift;
1195   if ( $self->is_free ) {
1196     ( 'BILL' );
1197   } else {
1198     ( 'CARD' );
1199   }
1200 }
1201
1202 =item is_free
1203
1204 Returns true if this package is free.  
1205
1206 =cut
1207
1208 sub is_free {
1209   my $self = shift;
1210   if ( $self->can('is_free_options') ) {
1211     not grep { $_ !~ /^\s*0*(\.0*)?\s*$/ }
1212          map { $self->option($_) } 
1213              $self->is_free_options;
1214   } else {
1215     warn "FS::part_pkg::is_free: FS::part_pkg::". $self->plan. " subclass ".
1216          "provides neither is_free_options nor is_free method; returning false";
1217     0;
1218   }
1219 }
1220
1221 # whether the plan allows discounts to be applied to this package
1222 sub can_discount { 0; }
1223  
1224 # whether the plan allows changing the start date
1225 sub can_start_date {
1226   my $self = shift;
1227   $self->start_on_hold ? 0 : 1;
1228 }
1229
1230 # whether the plan supports part_pkg_usageprice add-ons (a specific kind of
1231 #  pre-selectable usage pricing, there's others this doesn't refer to)
1232 sub can_usageprice { 0; }
1233   
1234 # the delay start date if present
1235 sub delay_start_date {
1236   my $self = shift;
1237
1238   my $delay = $self->delay_start or return '';
1239
1240   # avoid timelocal silliness  
1241   my $dt = DateTime->today(time_zone => 'local');
1242   $dt->add(days => $delay);
1243   $dt->epoch;
1244 }
1245
1246 sub can_currency_exchange { 0; }
1247
1248 sub freqs_href {
1249   # moved to FS::Misc to make this accessible to other packages
1250   # at initialization
1251   FS::Misc::pkg_freqs();
1252 }
1253
1254 =item freq_pretty
1255
1256 Returns an english representation of the I<freq> field, such as "monthly",
1257 "weekly", "semi-annually", etc.
1258
1259 =cut
1260
1261 sub freq_pretty {
1262   my $self = shift;
1263   my $freq = $self->freq;
1264
1265   #my $freqs_href = $self->freqs_href;
1266   my $freqs_href = freqs_href();
1267
1268   if ( exists($freqs_href->{$freq}) ) {
1269     $freqs_href->{$freq};
1270   } else {
1271     my $interval = 'month';
1272     if ( $freq =~ /^(\d+)([hdw])$/ ) {
1273       my %interval = ( 'h' => 'hour', 'd'=>'day', 'w'=>'week' );
1274       $interval = $interval{$2};
1275     }
1276     if ( $1 == 1 ) {
1277       "every $interval";
1278     } else {
1279       "every $freq ${interval}s";
1280     }
1281   }
1282 }
1283
1284 =item add_freq TIMESTAMP [ FREQ ]
1285
1286 Adds a billing period of some frequency to the provided timestamp and 
1287 returns the resulting timestamp, or -1 if the frequency could not be 
1288 parsed (shouldn't happen).  By default, the frequency of this package 
1289 will be used; to override this, pass a different frequency as a second 
1290 argument.
1291
1292 =cut
1293
1294 sub add_freq {
1295   my( $self, $date, $freq ) = @_;
1296   $freq = $self->freq unless $freq;
1297
1298   #change this bit to use Date::Manip? CAREFUL with timezones (see
1299   # mailing list archive)
1300   my ($sec,$min,$hour,$mday,$mon,$year) = (localtime($date) )[0,1,2,3,4,5];
1301
1302   if ( $freq =~ /^\d+$/ ) {
1303     $mon += $freq;
1304     until ( $mon < 12 ) { $mon -= 12; $year++; }
1305
1306     $mday = 28 if $mday > 28 && FS::Conf->new->exists('anniversary-rollback');
1307
1308   } elsif ( $freq =~ /^(\d+)w$/ ) {
1309     my $weeks = $1;
1310     $mday += $weeks * 7;
1311   } elsif ( $freq =~ /^(\d+)d$/ ) {
1312     my $days = $1;
1313     $mday += $days;
1314   } elsif ( $freq =~ /^(\d+)h$/ ) {
1315     my $hours = $1;
1316     $hour += $hours;
1317   } else {
1318     return -1;
1319   }
1320
1321   timelocal_nocheck($sec,$min,$hour,$mday,$mon,$year);
1322 }
1323
1324 =item plandata
1325
1326 For backwards compatibility, returns the plandata field as well as all options
1327 from FS::part_pkg_option.
1328
1329 =cut
1330
1331 sub plandata {
1332   my $self = shift;
1333   carp "plandata is deprecated";
1334   if ( @_ ) {
1335     $self->SUPER::plandata(@_);
1336   } else {
1337     my $plandata = $self->get('plandata');
1338     my %options = $self->options;
1339     $plandata .= join('', map { "$_=$options{$_}\n" } keys %options );
1340     $plandata;
1341   }
1342 }
1343
1344 =item part_pkg_vendor
1345
1346 Returns all vendor/external package ids as FS::part_pkg_vendor objects (see
1347 L<FS::part_pkg_vendor>).
1348
1349 =item vendor_pkg_ids
1350
1351 Returns a list of vendor/external package ids by exportnum
1352
1353 =cut
1354
1355 sub vendor_pkg_ids {
1356   my $self = shift;
1357   map { $_->exportnum => $_->vendor_pkg_id } $self->part_pkg_vendor;
1358 }
1359
1360 =item part_pkg_option
1361
1362 Returns all options as FS::part_pkg_option objects (see
1363 L<FS::part_pkg_option>).
1364
1365 =item options 
1366
1367 Returns a list of option names and values suitable for assigning to a hash.
1368
1369 =cut
1370
1371 sub options {
1372   my $self = shift;
1373   map { $_->optionname => $_->optionvalue } $self->part_pkg_option;
1374 }
1375
1376 =item option OPTIONNAME [ QUIET ]
1377
1378 Returns the option value for the given name, or the empty string.  If a true
1379 value is passed as the second argument, warnings about missing the option
1380 will be suppressed.
1381
1382 =cut
1383
1384 sub option {
1385   my( $self, $opt, $ornull ) = @_;
1386
1387   #cache: was pulled up in the original part_pkg query
1388   if ( $opt =~ /^(setup|recur)_fee$/ && defined($self->hashref->{"_$opt"}) ) {
1389     return $self->hashref->{"_$opt"};
1390   }
1391
1392   cluck "$self -> option: searching for $opt"
1393     if $DEBUG;
1394   my $part_pkg_option =
1395     qsearchs('part_pkg_option', {
1396       pkgpart    => $self->pkgpart,
1397       optionname => $opt,
1398   } );
1399   return $part_pkg_option->optionvalue if $part_pkg_option;
1400
1401   my %plandata = map { /^(\w+)=(.*)$/; ( $1 => $2 ); }
1402                      split("\n", $self->get('plandata') );
1403   return $plandata{$opt} if exists $plandata{$opt};
1404   cluck "WARNING: (pkgpart ". $self->pkgpart. ") Package def option $opt ".
1405         "not found in options or plandata!\n"
1406     unless $ornull;
1407
1408   '';
1409 }
1410
1411 =item part_pkg_currency [ CURRENCY ]
1412
1413 Returns all currency options as FS::part_pkg_currency objects (see
1414 L<FS::part_pkg_currency>), or, if a currency is specified, only return the
1415 objects for that currency.
1416
1417 =cut
1418
1419 sub part_pkg_currency {
1420   my $self = shift;
1421   my %hash = ( 'pkgpart' => $self->pkgpart );
1422   $hash{'currency'} = shift if @_;
1423   qsearch('part_pkg_currency', \%hash );
1424 }
1425
1426 =item part_pkg_currency_options CURRENCY
1427
1428 Returns a list of option names and values from FS::part_pkg_currency for the
1429 specified currency.
1430
1431 =cut
1432
1433 sub part_pkg_currency_options {
1434   my $self = shift;
1435   map { $_->optionname => $_->optionvalue } $self->part_pkg_currency(shift);
1436 }
1437
1438 =item part_pkg_currency_option CURRENCY OPTIONNAME
1439
1440 Returns the option value for the given name and currency.
1441
1442 =cut
1443
1444 sub part_pkg_currency_option {
1445   my( $self, $currency, $optionname ) = @_; 
1446   my $part_pkg_currency =
1447     qsearchs('part_pkg_currency', { 'pkgpart'    => $self->pkgpart,
1448                                     'currency'   => $currency,
1449                                     'optionname' => $optionname,
1450                                   }
1451             )#;
1452   #fatal if not found?  that works for our use cases from
1453   #part_pkg/currency_fixed, but isn't how we would typically/expect the method
1454   #to behave.  have to catch it there if we change it here...
1455     or die "Unknown price for ". $self->pkg_comment. " in $currency\n";
1456
1457   $part_pkg_currency->optionvalue;
1458 }
1459
1460 =item fcc_option OPTIONNAME
1461
1462 Returns the FCC 477 report option value for the given name, or the empty 
1463 string.
1464
1465 =cut
1466
1467 sub fcc_option {
1468   my ($self, $name) = @_;
1469   my $part_pkg_fcc_option =
1470     qsearchs('part_pkg_fcc_option', {
1471         pkgpart => $self->pkgpart,
1472         fccoptionname => $name,
1473     });
1474   $part_pkg_fcc_option ? $part_pkg_fcc_option->optionvalue : '';
1475 }
1476
1477 =item fcc_options
1478
1479 Returns all FCC 477 report options for this package, as a hash-like list.
1480
1481 =cut
1482
1483 sub fcc_options {
1484   my $self = shift;
1485   map { $_->fccoptionname => $_->optionvalue }
1486     qsearch('part_pkg_fcc_option', { pkgpart => $self->pkgpart });
1487 }
1488
1489 =item bill_part_pkg_link
1490
1491 Returns the associated part_pkg_link records (see L<FS::part_pkg_link>).
1492
1493 =cut
1494
1495 sub bill_part_pkg_link {
1496   shift->_part_pkg_link('bill', @_);
1497 }
1498
1499 =item svc_part_pkg_link
1500
1501 Returns the associated part_pkg_link records (see L<FS::part_pkg_link>).
1502
1503 =cut
1504
1505 sub svc_part_pkg_link {
1506   shift->_part_pkg_link('svc', @_);
1507 }
1508
1509 =item supp_part_pkg_link
1510
1511 Returns the associated part_pkg_link records of type 'supp' (supplemental
1512 packages).
1513
1514 =cut
1515
1516 sub supp_part_pkg_link {
1517   shift->_part_pkg_link('supp', @_);
1518 }
1519
1520 sub _part_pkg_link {
1521   my( $self, $type ) = @_;
1522   qsearch({ table    => 'part_pkg_link',
1523             hashref  => { 'src_pkgpart' => $self->pkgpart,
1524                           'link_type'   => $type,
1525                           #protection against infinite recursive links
1526                           'dst_pkgpart' => { op=>'!=', value=> $self->pkgpart },
1527                         },
1528             order_by => "ORDER BY hidden",
1529          });
1530 }
1531
1532 sub self_and_bill_linked {
1533   shift->_self_and_linked('bill', @_);
1534 }
1535
1536 sub self_and_svc_linked {
1537   shift->_self_and_linked('svc', @_);
1538 }
1539
1540 sub _self_and_linked {
1541   my( $self, $type, $hidden ) = @_;
1542   $hidden ||= '';
1543
1544   my @result = ();
1545   foreach ( ( $self, map { $_->dst_pkg->_self_and_linked($type, $_->hidden) }
1546                      $self->_part_pkg_link($type) ) )
1547   {
1548     $_->hidden($hidden) if $hidden;
1549     push @result, $_;
1550   }
1551
1552   (@result);
1553 }
1554
1555 =item part_pkg_taxoverride [ CLASS ]
1556
1557 Returns all associated FS::part_pkg_taxoverride objects (see
1558 L<FS::part_pkg_taxoverride>).  Limits the returned set to those
1559 of class CLASS if defined.  Class may be one of 'setup', 'recur',
1560 the empty string (default), or a usage class number (see L<FS::usage_class>).
1561 When a class is specified, the empty string class (default) is returned
1562 if no more specific values exist.
1563
1564 =cut
1565
1566 sub part_pkg_taxoverride {
1567   my $self = shift;
1568   my $class = shift;
1569
1570   my $hashref = { 'pkgpart' => $self->pkgpart };
1571   $hashref->{'usage_class'} = $class if defined($class);
1572   my @overrides = qsearch('part_pkg_taxoverride', $hashref );
1573
1574   unless ( scalar(@overrides) || !defined($class) || !$class ){
1575     $hashref->{'usage_class'} = '';
1576     @overrides = qsearch('part_pkg_taxoverride', $hashref );
1577   }
1578
1579   @overrides;
1580 }
1581
1582 =item has_taxproduct
1583
1584 Returns true if this package has any taxproduct associated with it.  
1585
1586 =cut
1587
1588 sub has_taxproduct {
1589   my $self = shift;
1590
1591   $self->taxproductnum ||
1592   scalar( grep { $_ =~/^usage_taxproductnum_/ && $self->option($_) } 
1593           keys %{ {$self->options} }
1594   )
1595
1596 }
1597
1598
1599 =item taxproduct [ CLASS ]
1600
1601 Returns the associated tax product for this package definition (see
1602 L<FS::part_pkg_taxproduct>).  CLASS may be one of 'setup', 'recur' or
1603 the usage classnum (see L<FS::usage_class>).  Returns the default
1604 tax product for this record if the more specific CLASS value does
1605 not exist.
1606
1607 =cut
1608
1609 sub taxproduct {
1610   my $self = shift;
1611   my $class = shift;
1612
1613   my $part_pkg_taxproduct;
1614
1615   my $taxproductnum = $self->taxproductnum;
1616   if ($class) { 
1617     my $class_taxproductnum = $self->option("usage_taxproductnum_$class", 1);
1618     $taxproductnum = $class_taxproductnum
1619       if $class_taxproductnum
1620   }
1621   
1622   $part_pkg_taxproduct =
1623     qsearchs( 'part_pkg_taxproduct', { 'taxproductnum' => $taxproductnum } );
1624
1625   unless ($part_pkg_taxproduct || $taxproductnum eq $self->taxproductnum ) {
1626     $taxproductnum = $self->taxproductnum;
1627     $part_pkg_taxproduct =
1628       qsearchs( 'part_pkg_taxproduct', { 'taxproductnum' => $taxproductnum } );
1629   }
1630
1631   $part_pkg_taxproduct;
1632 }
1633
1634 =item taxproduct_description [ CLASS ]
1635
1636 Returns the description of the associated tax product for this package
1637 definition (see L<FS::part_pkg_taxproduct>).
1638
1639 =cut
1640
1641 sub taxproduct_description {
1642   my $self = shift;
1643   my $part_pkg_taxproduct = $self->taxproduct(@_);
1644   $part_pkg_taxproduct ? $part_pkg_taxproduct->description : '';
1645 }
1646
1647
1648 =item tax_rates DATA_PROVIDER, GEOCODE, [ CLASS ]
1649
1650 Returns the tax table entries (L<FS::tax_rate> objects) that apply to this
1651 package in the location specified by GEOCODE, for usage class CLASS (one of
1652 'setup', 'recur', null, or a C<usage_class> number).
1653
1654 =cut
1655
1656 sub tax_rates {
1657   my $self = shift;
1658   my ($vendor, $geocode, $class) = @_;
1659   # if this part_pkg is overridden into a specific taxclass, get that class
1660   my @taxclassnums = map { $_->taxclassnum } 
1661                      $self->part_pkg_taxoverride($class);
1662   # otherwise, get its tax product category
1663   if (!@taxclassnums) {
1664     my $part_pkg_taxproduct = $self->taxproduct($class);
1665     # If this isn't defined, then the class has no taxproduct designation,
1666     # so return no tax rates.
1667     return () if !$part_pkg_taxproduct;
1668
1669     # convert the taxproduct to the tax classes that might apply to it in 
1670     # $geocode
1671     @taxclassnums = map { $_->taxclassnum }
1672                     grep { $_->taxable eq 'Y' } # why do we need this?
1673                     $part_pkg_taxproduct->part_pkg_taxrate($geocode);
1674   }
1675   return unless @taxclassnums;
1676
1677   # then look up the actual tax_rate entries
1678   warn "Found taxclassnum values of ". join(',', @taxclassnums) ."\n"
1679       if $DEBUG;
1680   my $extra_sql = "AND taxclassnum IN (". join(',', @taxclassnums) . ")";
1681   my @taxes = qsearch({ 'table'     => 'tax_rate',
1682                         'hashref'   => { 'geocode'     => $geocode,
1683                                          'data_vendor' => $vendor,
1684                                          'disabled'    => '' },
1685                         'extra_sql' => $extra_sql,
1686                       });
1687   warn "Found taxes ". join(',', map {$_->taxnum} @taxes) ."\n"
1688       if $DEBUG;
1689
1690   return @taxes;
1691 }
1692
1693 =item part_pkg_discount
1694
1695 Returns the package to discount m2m records (see L<FS::part_pkg_discount>)
1696 for this package.
1697
1698 =item part_pkg_usage
1699
1700 Returns the voice usage pools (see L<FS::part_pkg_usage>) defined for 
1701 this package.
1702
1703 =item _rebless
1704
1705 Reblesses the object into the FS::part_pkg::PLAN class (if available), where
1706 PLAN is the object's I<plan> field.  There should be better docs
1707 on how to create new price plans, but until then, see L</NEW PLAN CLASSES>.
1708
1709 =cut
1710
1711 sub _rebless {
1712   my $self = shift;
1713   my $plan = $self->plan;
1714   unless ( $plan ) {
1715     cluck "no price plan found for pkgpart ". $self->pkgpart. "\n"
1716       if $DEBUG;
1717     return $self;
1718   }
1719   return $self if ref($self) =~ /::$plan$/; #already blessed into plan subclass
1720   my $class = ref($self). "::$plan";
1721   warn "reblessing $self into $class" if $DEBUG > 1;
1722   eval "use $class;";
1723   die $@ if $@;
1724   bless($self, $class) unless $@;
1725   $self;
1726 }
1727
1728 =item calc_setup CUST_PKG START_DATE DETAILS_ARRAYREF OPTIONS_HASHREF
1729
1730 =item calc_recur CUST_PKG START_DATE DETAILS_ARRAYREF OPTIONS_HASHREF
1731
1732 Calculates and returns the setup or recurring fees, respectively, for this
1733 package.  Implementation is in the FS::part_pkg:* module specific to this price
1734 plan.
1735
1736 Adds invoicing details to the passed-in DETAILS_ARRAYREF
1737
1738 Options are passed as a hashref.  Available options:
1739
1740 =over 4
1741
1742 =item freq_override
1743
1744 Frequency override (for calc_recur)
1745
1746 =item discounts
1747
1748 This option is filled in by the method rather than controlling its operation.
1749 It is an arrayref.  Applicable discounts will be added to the arrayref, as
1750 L<FS::cust_bill_pkg_discount|FS::cust_bill_pkg_discount records>.
1751
1752 =item real_pkgpart
1753
1754 For package add-ons, is the base L<FS::part_pkg|package definition>, otherwise
1755 no different than pkgpart.
1756
1757 =item precommit_hooks
1758
1759 This option is filled in by the method rather than controlling its operation.
1760 It is an arrayref.  Anonymous coderefs will be added to the arrayref.  They
1761 need to be called before completing the billing operation.  For calc_recur
1762 only.
1763
1764 =item increment_next_bill
1765
1766 Increment the next bill date (boolean, for calc_recur).  Typically true except
1767 for particular situations.
1768
1769 =item setup_fee
1770
1771 This option is filled in by the method rather than controlling its operation.
1772 It indicates a deferred setup fee that is billed at calc_recur time (see price
1773 plan option prorate_defer_bill).
1774
1775 =back
1776
1777 Note: Don't calculate prices when not actually billing the package.  For that,
1778 see the L</base_setup|base_setup> and L</base_recur|base_recur> methods.
1779
1780 =cut
1781
1782 #fatal fallbacks
1783 sub calc_setup { die 'no calc_setup for '. shift->plan. "\n"; }
1784 sub calc_recur { die 'no calc_recur for '. shift->plan. "\n"; }
1785
1786 =item calc_remain CUST_PKG [ OPTION => VALUE ... ]
1787
1788 Calculates and returns the remaining value to be credited upon package
1789 suspension, change, or cancellation, if enabled.
1790
1791 Options are passed as a list of keys and values.  Available options:
1792
1793 =over 4
1794
1795 =item time
1796
1797 Override for the current time
1798
1799 =item cust_credit_source_bill_pkg
1800
1801 This option is filled in by the method rather than controlling its operation.
1802 It is an arrayref.
1803 L<FS::cust_credit_source_bill_pkg|FS::cust_credit_source_bill_pkg> records will
1804 be added to the arrayref indicating the specific line items and amounts which
1805 are the source of this remaining credit.
1806
1807 =back
1808
1809 Note: Don't calculate prices when not actually suspending or cancelling the
1810 package.
1811
1812 =cut
1813
1814 #fallback that returns 0 for old legacy packages with no plan
1815 sub calc_remain { 0; }
1816
1817 =item calc_units CUST_PKG
1818
1819 This returns the number of provisioned svc_phone records, or, of the package
1820 count_available_phones option is set, the number available to be provisoined
1821 in the package.
1822
1823 =cut
1824
1825 #fallback that returns 0 for old legacy packages with no plan
1826 sub calc_units  { 0; }
1827
1828 #fallback for everything not based on flat.pm
1829 sub recur_temporality { 'upcoming'; }
1830
1831 =item calc_cancel START_DATE DETAILS_ARRAYREF OPTIONS_HASHREF
1832
1833 Runs any necessary billing on cancellation: another recurring cycle for
1834 recur_temporailty 'preceding' pacakges with the bill_recur_on_cancel option
1835 set (calc_recur), or, any outstanding usage for pacakges with the
1836 bill_usage_on_cancel option set (calc_usage).
1837
1838 =cut
1839
1840 #fallback for everything not based on flat.pm, doesn't do this yet (which is
1841 #okay, nothing of ours not based on flat.pm does usage-on-cancel billing
1842 sub calc_cancel { 0; }
1843
1844 #fallback for everything except bulk.pm
1845 sub hide_svc_detail { 0; }
1846
1847 #fallback for packages that can't/won't summarize usage
1848 sub sum_usage { 0; }
1849
1850 =item recur_cost_permonth CUST_PKG
1851
1852 recur_cost divided by freq (only supported for monthly and longer frequencies)
1853
1854 =cut
1855
1856 sub recur_cost_permonth {
1857   my($self, $cust_pkg) = @_;
1858   return 0 unless $self->freq =~ /^\d+$/ && $self->freq > 0;
1859   sprintf('%.2f', ($self->recur_cost || 0) / $self->freq );
1860 }
1861
1862 =item cust_bill_pkg_recur CUST_PKG
1863
1864 Actual recurring charge for the specified customer package from customer's most
1865 recent invoice
1866
1867 =cut
1868
1869 sub cust_bill_pkg_recur {
1870   my($self, $cust_pkg) = @_;
1871   my $cust_bill_pkg = qsearchs({
1872     'table'     => 'cust_bill_pkg',
1873     'addl_from' => 'LEFT JOIN cust_bill USING ( invnum )',
1874     'hashref'   => { 'pkgnum' => $cust_pkg->pkgnum,
1875                      'recur'  => { op=>'>', value=>'0' },
1876                    },
1877     'order_by'  => 'ORDER BY cust_bill._date     DESC,
1878                              cust_bill_pkg.sdate DESC
1879                      LIMIT 1
1880                    ',
1881   }) or return 0; #die "use cust_bill_pkg_recur credits with once_perinv condition";
1882   $cust_bill_pkg->recur;
1883 }
1884
1885 =item unit_setup CUST_PKG
1886
1887 Returns the setup fee for one unit of the package.
1888
1889 =cut
1890
1891 sub unit_setup {
1892   my ($self, $cust_pkg) = @_;
1893   $self->option('setup_fee') || 0;
1894 }
1895
1896 =item setup_margin
1897
1898 unit_setup minus setup_cost
1899
1900 =cut
1901
1902 sub setup_margin {
1903   my $self = shift;
1904   $self->unit_setup(@_) - ($self->setup_cost || 0);
1905 }
1906
1907 =item recur_margin_permonth
1908
1909 base_recur_permonth minus recur_cost_permonth
1910
1911 =cut
1912
1913 sub recur_margin_permonth {
1914   my $self = shift;
1915   $self->base_recur_permonth(@_) - $self->recur_cost_permonth(@_);
1916 }
1917
1918 =item format OPTION DATA
1919
1920 Returns data formatted according to the function 'format' described
1921 in the plan info.  Returns DATA if no such function exists.
1922
1923 =cut
1924
1925 sub format {
1926   my ($self, $option, $data) = (shift, shift, shift);
1927   if (exists($plans{$self->plan}->{fields}->{$option}{format})) {
1928     &{$plans{$self->plan}->{fields}->{$option}{format}}($data);
1929   }else{
1930     $data;
1931   }
1932 }
1933
1934 =item parse OPTION DATA
1935
1936 Returns data parsed according to the function 'parse' described
1937 in the plan info.  Returns DATA if no such function exists.
1938
1939 =cut
1940
1941 sub parse {
1942   my ($self, $option, $data) = (shift, shift, shift);
1943   if (exists($plans{$self->plan}->{fields}->{$option}{parse})) {
1944     &{$plans{$self->plan}->{fields}->{$option}{parse}}($data);
1945   }else{
1946     $data;
1947   }
1948 }
1949
1950 =back
1951
1952 =cut
1953
1954 =head1 CLASS METHODS
1955
1956 =over 4
1957
1958 =cut
1959
1960 # _upgrade_data
1961 #
1962 # Used by FS::Upgrade to migrate to a new database.
1963
1964 sub _upgrade_data { # class method
1965    my($class, %opts) = @_;
1966
1967   warn "[FS::part_pkg] upgrading $class\n" if $DEBUG;
1968
1969   my @part_pkg = qsearch({
1970     'table'     => 'part_pkg',
1971     'extra_sql' => "WHERE ". join(' OR ',
1972                      'plan IS NULL', "plan = '' ",
1973                    ),
1974   });
1975
1976   foreach my $part_pkg (@part_pkg) {
1977
1978     unless ( $part_pkg->plan ) {
1979       $part_pkg->plan('flat');
1980     }
1981
1982     $part_pkg->replace;
1983
1984   }
1985
1986   # Convert RADIUS accounting usage metrics from megabytes to gigabytes
1987   # (FS RT#28105)
1988   my $upgrade = 'part_pkg_gigabyte_usage';
1989   if (!FS::upgrade_journal->is_done($upgrade)) {
1990     foreach my $part_pkg (qsearch('part_pkg',
1991                                   { plan => 'sqlradacct_hour' })
1992                          ){
1993
1994       my $pkgpart = $part_pkg->pkgpart;
1995
1996       foreach my $opt (qsearch('part_pkg_option',
1997                                { 'optionname'  => { op => 'LIKE',
1998                                                     value => 'recur_included_%',
1999                                                   },
2000                                  pkgpart => $pkgpart,
2001                                })){
2002
2003         next if $opt->optionname eq 'recur_included_hours'; # unfortunately named field
2004         next if $opt->optionvalue == 0;
2005
2006         $opt->optionvalue($opt->optionvalue / 1024);
2007
2008         my $error = $opt->replace;
2009         die $error if $error;
2010       }
2011
2012       foreach my $opt (qsearch('part_pkg_option',
2013                                { 'optionname'  => { op => 'LIKE',
2014                                                     value => 'recur_%_charge',
2015                                                   },
2016                                  pkgpart => $pkgpart,
2017                                })){
2018         $opt->optionvalue($opt->optionvalue * 1024);
2019
2020         my $error = $opt->replace;
2021         die $error if $error;
2022       }
2023
2024     }
2025     FS::upgrade_journal->set_done($upgrade);
2026   }
2027
2028   # the rest can be done asynchronously
2029 }
2030
2031 sub queueable_upgrade {
2032   # now upgrade to the explicit custom flag
2033
2034   my $search = FS::Cursor->new({
2035     'table'     => 'part_pkg',
2036     'hashref'   => { disabled => 'Y', custom => '' },
2037     'extra_sql' => "AND comment LIKE '(CUSTOM) %'",
2038   });
2039   my $dbh = dbh;
2040
2041   while (my $part_pkg = $search->fetch) {
2042     my $new = new FS::part_pkg { $part_pkg->hash };
2043     $new->custom('Y');
2044     my $comment = $part_pkg->comment;
2045     $comment =~ s/^\(CUSTOM\) //;
2046     $comment = '(none)' unless $comment =~ /\S/;
2047     $new->comment($comment);
2048
2049     my $pkg_svc = { map { $_->svcpart => $_->quantity } $part_pkg->pkg_svc };
2050     my $primary = $part_pkg->svcpart;
2051     my $options = { $part_pkg->options };
2052
2053     my $error = $new->replace( $part_pkg,
2054                                'pkg_svc'     => $pkg_svc,
2055                                'primary_svc' => $primary,
2056                                'options'     => $options,
2057                              );
2058     if ($error) {
2059       warn "pkgpart#".$part_pkg->pkgpart.": $error\n";
2060       $dbh->rollback;
2061     } else {
2062       $dbh->commit;
2063     }
2064   }
2065
2066   # set family_pkgpart on any packages that don't have it
2067   $search = FS::Cursor->new('part_pkg', { 'family_pkgpart' => '' });
2068   while (my $part_pkg = $search->fetch) {
2069     $part_pkg->set('family_pkgpart' => $part_pkg->pkgpart);
2070     my $error = $part_pkg->SUPER::replace;
2071     if ($error) {
2072       warn "pkgpart#".$part_pkg->pkgpart.": $error\n";
2073       $dbh->rollback;
2074     } else {
2075       $dbh->commit;
2076     }
2077   }
2078
2079   my @part_pkg_option = qsearch('part_pkg_option',
2080     { 'optionname'  => 'unused_credit',
2081       'optionvalue' => 1,
2082     });
2083   foreach my $old_opt (@part_pkg_option) {
2084     my $pkgpart = $old_opt->pkgpart;
2085     my $error = $old_opt->delete;
2086     die $error if $error;
2087
2088     foreach (qw(unused_credit_cancel unused_credit_change)) {
2089       my $new_opt = new FS::part_pkg_option {
2090         'pkgpart'     => $pkgpart,
2091         'optionname'  => $_,
2092         'optionvalue' => 1,
2093       };
2094       $error = $new_opt->insert;
2095       die $error if $error;
2096     }
2097   }
2098
2099   # migrate use_disposition_taqua and use_disposition to disposition_in
2100   @part_pkg_option = qsearch('part_pkg_option',
2101     { 'optionname'  => { op => 'LIKE',
2102                          value => 'use_disposition%',
2103                        },
2104       'optionvalue' => 1,
2105     });
2106   my %newopts = map { $_->pkgpart => $_ } 
2107     qsearch('part_pkg_option',  { 'optionname'  => 'disposition_in', } );
2108   foreach my $old_opt (@part_pkg_option) {
2109         my $pkgpart = $old_opt->pkgpart;
2110         my $newval = $old_opt->optionname eq 'use_disposition_taqua' ? '100' 
2111                                                                   : 'ANSWERED';
2112         my $error = $old_opt->delete;
2113         die $error if $error;
2114
2115         if ( exists($newopts{$pkgpart}) ) {
2116             my $opt = $newopts{$pkgpart};
2117             $opt->optionvalue($opt->optionvalue.",$newval");
2118             $error = $opt->replace;
2119             die $error if $error;
2120         } else {
2121             my $new_opt = new FS::part_pkg_option {
2122                 'pkgpart'     => $pkgpart,
2123                 'optionname'  => 'disposition_in',
2124                 'optionvalue' => $newval,
2125               };
2126               $error = $new_opt->insert;
2127               die $error if $error;
2128               $newopts{$pkgpart} = $new_opt;
2129         }
2130   }
2131
2132   # set any package with FCC voice lines to the "VoIP with broadband" category
2133   # for backward compatibility
2134   #
2135   # recover from a bad upgrade bug
2136   my $upgrade = 'part_pkg_fcc_voip_class_FIX';
2137   if (!FS::upgrade_journal->is_done($upgrade)) {
2138     my $bad_upgrade = qsearchs('upgrade_journal', 
2139       { upgrade => 'part_pkg_fcc_voip_class' }
2140     );
2141     if ( $bad_upgrade ) {
2142       my $where = 'WHERE history_date <= '.$bad_upgrade->_date.
2143                   ' AND  history_date >  '.($bad_upgrade->_date - 3600);
2144       my @h_part_pkg_option = map { FS::part_pkg_option->new($_->hashref) }
2145         qsearch({
2146           'select'    => '*',
2147           'table'     => 'h_part_pkg_option',
2148           'hashref'   => {},
2149           'extra_sql' => "$where AND history_action = 'delete'",
2150           'order_by'  => 'ORDER BY history_date ASC',
2151         });
2152       my @h_pkg_svc = map { FS::pkg_svc->new($_->hashref) }
2153         qsearch({
2154           'select'    => '*',
2155           'table'     => 'h_pkg_svc',
2156           'hashref'   => {},
2157           'extra_sql' => "$where AND history_action = 'replace_old'",
2158           'order_by'  => 'ORDER BY history_date ASC',
2159         });
2160       my %opt;
2161       foreach my $deleted (@h_part_pkg_option, @h_pkg_svc) {
2162         my $pkgpart ||= $deleted->pkgpart;
2163         $opt{$pkgpart} ||= {
2164           options => {},
2165           pkg_svc => {},
2166           primary_svc => '',
2167           hidden_svc => {},
2168         };
2169         if ( $deleted->isa('FS::part_pkg_option') ) {
2170           $opt{$pkgpart}{options}{ $deleted->optionname } = $deleted->optionvalue;
2171         } else { # pkg_svc
2172           my $svcpart = $deleted->svcpart;
2173           $opt{$pkgpart}{pkg_svc}{$svcpart} = $deleted->quantity;
2174           $opt{$pkgpart}{hidden_svc}{$svcpart} ||= $deleted->hidden;
2175           $opt{$pkgpart}{primary_svc} = $svcpart if $deleted->primary_svc;
2176         }
2177       }
2178       foreach my $pkgpart (keys %opt) {
2179         my $part_pkg = FS::part_pkg->by_key($pkgpart);
2180         my $error = $part_pkg->replace( $part_pkg->replace_old, $opt{$pkgpart} );
2181         if ( $error ) {
2182           die "error recovering damaged pkgpart $pkgpart:\n$error\n";
2183         }
2184       }
2185     } # $bad_upgrade exists
2186     else { # do the original upgrade, but correctly this time
2187       my @part_pkg = qsearch('part_pkg', {
2188           fcc_ds0s        => { op => '>', value => 0 },
2189           fcc_voip_class  => ''
2190       });
2191       foreach my $part_pkg (@part_pkg) {
2192         $part_pkg->set(fcc_voip_class => 2);
2193         my @pkg_svc = $part_pkg->pkg_svc;
2194         my %quantity = map {$_->svcpart, $_->quantity} @pkg_svc;
2195         my %hidden   = map {$_->svcpart, $_->hidden  } @pkg_svc;
2196         my $error = $part_pkg->replace(
2197           $part_pkg->replace_old,
2198           options     => { $part_pkg->options },
2199           pkg_svc     => \%quantity,
2200           hidden_svc  => \%hidden,
2201           primary_svc => ($part_pkg->svcpart || ''),
2202         );
2203         die $error if $error;
2204       }
2205     }
2206     FS::upgrade_journal->set_done($upgrade);
2207   }
2208
2209 }
2210
2211 =item curuser_pkgs_sql
2212
2213 Returns an SQL fragment for searching for packages the current user can
2214 use, either via part_pkg.agentnum directly, or via agent type (see
2215 L<FS::type_pkgs>).
2216
2217 =cut
2218
2219 sub curuser_pkgs_sql {
2220   my $class = shift;
2221
2222   $class->_pkgs_sql( $FS::CurrentUser::CurrentUser->agentnums );
2223
2224 }
2225
2226 =item agent_pkgs_sql AGENT | AGENTNUM, ...
2227
2228 Returns an SQL fragment for searching for packages the provided agent or agents
2229 can use, either via part_pkg.agentnum directly, or via agent type (see
2230 L<FS::type_pkgs>).
2231
2232 =cut
2233
2234 sub agent_pkgs_sql {
2235   my $class = shift;  #i'm a class method, not a sub (the question is... why??)
2236   my @agentnums = map { ref($_) ? $_->agentnum : $_ } @_;
2237
2238   $class->_pkgs_sql(@agentnums); #is this why
2239
2240 }
2241
2242 sub _pkgs_sql {
2243   my( $class, @agentnums ) = @_;
2244   my $agentnums = join(',', @agentnums);
2245
2246   "
2247     (
2248       ( agentnum IS NOT NULL AND agentnum IN ($agentnums) )
2249       OR ( agentnum IS NULL
2250            AND EXISTS ( SELECT 1
2251                           FROM type_pkgs
2252                             LEFT JOIN agent_type USING ( typenum )
2253                             LEFT JOIN agent AS typeagent USING ( typenum )
2254                           WHERE type_pkgs.pkgpart = part_pkg.pkgpart
2255                             AND typeagent.agentnum IN ($agentnums)
2256                       )
2257          )
2258     )
2259   ";
2260
2261 }
2262
2263 =back
2264
2265 =head1 SUBROUTINES
2266
2267 =over 4
2268
2269 =item plan_info
2270
2271 =cut
2272
2273 #false laziness w/part_export & cdr
2274 my %info;
2275 foreach my $INC ( @INC ) {
2276   warn "globbing $INC/FS/part_pkg/[a-z]*.pm\n" if $DEBUG;
2277   foreach my $file ( glob("$INC/FS/part_pkg/[a-z]*.pm") ) {
2278     warn "attempting to load plan info from $file\n" if $DEBUG;
2279     $file =~ /\/(\w+)\.pm$/ or do {
2280       warn "unrecognized file in $INC/FS/part_pkg/: $file\n";
2281       next;
2282     };
2283     my $mod = $1;
2284     my $info = eval "use FS::part_pkg::$mod; ".
2285                     "\\%FS::part_pkg::$mod\::info;";
2286     if ( $@ ) {
2287       die "error using FS::part_pkg::$mod (skipping): $@\n" if $@;
2288       next;
2289     }
2290     unless ( keys %$info ) {
2291       warn "no %info hash found in FS::part_pkg::$mod, skipping\n";
2292       next;
2293     }
2294     warn "got plan info from FS::part_pkg::$mod: $info\n" if $DEBUG;
2295     #if ( exists($info->{'disabled'}) && $info->{'disabled'} ) {
2296     #  warn "skipping disabled plan FS::part_pkg::$mod" if $DEBUG;
2297     #  next;
2298     #}
2299     $info{$mod} = $info;
2300     $info->{'weight'} ||= 0; # quiet warnings
2301   }
2302 }
2303
2304 # copy one level deep to allow replacement of fields and fieldorder
2305 tie %plans, 'Tie::IxHash',
2306   map  { my %infohash = %{ $info{$_} }; 
2307           $_ => \%infohash }
2308   sort { $info{$a}->{'weight'} <=> $info{$b}->{'weight'} }
2309   keys %info;
2310
2311 # inheritance of plan options
2312 foreach my $name (keys(%info)) {
2313   if (exists($info{$name}->{'disabled'}) and $info{$name}->{'disabled'}) {
2314     warn "skipping disabled plan FS::part_pkg::$name" if $DEBUG;
2315     delete $plans{$name};
2316     next;
2317   }
2318   my $parents = $info{$name}->{'inherit_fields'} || [];
2319   my (%fields, %field_exists, @fieldorder);
2320   foreach my $parent ($name, @$parents) {
2321     if ( !exists($info{$parent}) ) {
2322       warn "$name tried to inherit from nonexistent '$parent'\n";
2323       next;
2324     }
2325     %fields = ( # avoid replacing existing fields
2326       %{ $info{$parent}->{'fields'} || {} },
2327       %fields
2328     );
2329     foreach (@{ $info{$parent}->{'fieldorder'} || [] }) {
2330       # avoid duplicates
2331       next if $field_exists{$_};
2332       $field_exists{$_} = 1;
2333       # allow inheritors to remove inherited fields from the fieldorder
2334       push @fieldorder, $_ if !exists($fields{$_}) or
2335                               !exists($fields{$_}->{'disabled'});
2336     }
2337   }
2338   $plans{$name}->{'fields'} = \%fields;
2339   $plans{$name}->{'fieldorder'} = \@fieldorder;
2340 }
2341
2342 sub plan_info {
2343   \%plans;
2344 }
2345
2346
2347 =back
2348
2349 =head1 NEW PLAN CLASSES
2350
2351 A module should be added in FS/FS/part_pkg/  Eventually, an example may be
2352 found in eg/plan_template.pm.  Until then, it is suggested that you use the
2353 other modules in FS/FS/part_pkg/ as a guide.
2354
2355 =head1 BUGS
2356
2357 The delete method is unimplemented.
2358
2359 setup and recur semantics are not yet defined (and are implemented in
2360 FS::cust_bill.  hmm.).  now they're deprecated and need to go.
2361
2362 plandata should go
2363
2364 part_pkg_taxrate is Pg specific
2365
2366 replace should be smarter about managing the related tables (options, pkg_svc)
2367
2368 =head1 SEE ALSO
2369
2370 L<FS::Record>, L<FS::cust_pkg>, L<FS::type_pkgs>, L<FS::pkg_svc>, L<Safe>.
2371 schema.html from the base documentation.
2372
2373 =cut
2374
2375 1;
2376