2 use base qw( FS::part_pkg::API
3 FS::m2m_Common FS::o2m_Common FS::option_Common
7 use vars qw( %plans $DEBUG $setup_hack $skip_pkg_svc_hack
8 $cache_enabled %cache_link %cache_pkg_svc
10 use Carp qw(carp cluck confess);
11 use Scalar::Util qw( blessed );
13 use Time::Local qw( timelocal timelocal_nocheck ); # eventually replace with DateTime
16 use FS::Record qw( qsearch qsearchs dbh dbdef );
17 use FS::Cursor; # for upgrade
23 use FS::part_pkg_option;
24 use FS::part_pkg_fcc_option;
27 use FS::part_pkg_msgcat;
28 use FS::part_pkg_taxrate;
29 use FS::part_pkg_taxoverride;
30 use FS::part_pkg_taxproduct;
31 use FS::part_pkg_link;
32 use FS::part_pkg_discount;
33 use FS::part_pkg_vendor;
34 use FS::part_pkg_currency;
35 use FS::part_svc_link;
40 $skip_pkg_svc_hack = 0;
48 FS::part_pkg - Object methods for part_pkg objects
54 $record = new FS::part_pkg \%hash
55 $record = new FS::part_pkg { 'column' => 'value' };
57 $custom_record = $template_record->clone;
59 $error = $record->insert;
61 $error = $new_record->replace($old_record);
63 $error = $record->delete;
65 $error = $record->check;
67 @pkg_svc = $record->pkg_svc;
69 $svcnum = $record->svcpart;
70 $svcnum = $record->svcpart( 'svc_acct' );
74 An FS::part_pkg object represents a package definition. FS::part_pkg
75 inherits from FS::Record. The following fields are currently supported:
79 =item pkgpart - primary key (assigned automatically for new package definitions)
81 =item pkg - Text name of this package definition (customer-viewable)
83 =item comment - Text name of this package definition (non-customer-viewable)
85 =item classnum - Optional package class (see L<FS::pkg_class>)
87 =item promo_code - Promotional code
89 =item setup - Setup fee expression (deprecated)
91 =item freq - Frequency of recurring fee
93 =item recur - Recurring fee expression (deprecated)
95 =item setuptax - Setup fee tax exempt flag, empty or `Y'
97 =item recurtax - Recurring fee tax exempt flag, empty or `Y'
99 =item taxclass - Tax class
101 =item plan - Price plan
103 =item plandata - Price plan data (deprecated - see L<FS::part_pkg_option> instead)
105 =item disabled - Disabled flag, empty or `Y'
107 =item custom - Custom flag, empty or `Y'
109 =item setup_cost - for cost tracking
111 =item recur_cost - for cost tracking
113 =item pay_weight - Weight (relative to credit_weight and other package definitions) that controls payment application to specific line items.
115 =item credit_weight - Weight (relative to other package definitions) that controls credit application to specific line items.
117 =item agentnum - Optional agentnum (see L<FS::agent>)
119 =item fcc_ds0s - Optional DS0 equivalency number for FCC form 477
121 =item fcc_voip_class - Which column of FCC form 477 part II.B this package
124 =item successor - Foreign key for the part_pkg that replaced this record.
125 If this record is not obsolete, will be null.
127 =item family_pkgpart - Foreign key for the part_pkg that was the earliest
128 ancestor of this record. If this record is not a successor to another
129 part_pkg, will be equal to pkgpart.
131 =item delay_start - Number of days to delay package start, by default
133 =item start_on_hold - 'Y' to suspend this package immediately when it is
134 ordered. The package will not start billing or have a setup fee charged
135 until it is manually unsuspended.
137 =item change_to_pkgpart - When this package is ordered, schedule a future
138 package change. The 'expire_months' field will determine when the package
141 =item expire_months - Number of months until this package expires (or changes
144 =item adjourn_months - Number of months until this package becomes suspended.
146 =item contract_end_months - Number of months until the package's contract
157 Creates a new package definition. To add the package definition to
158 the database, see L<"insert">.
162 sub table { 'part_pkg'; }
166 An alternate constructor. Creates a new package definition by duplicating
167 an existing definition. A new pkgpart is assigned and the custom flag is
168 set to Y. To add the package definition to the database, see L<"insert">.
174 my $class = ref($self);
175 my %hash = $self->hash;
176 $hash{'pkgpart'} = '';
177 $hash{'custom'} = 'Y';
178 #new FS::part_pkg ( \%hash ); # ?
179 new $class ( \%hash ); # ?
182 =item insert [ , OPTION => VALUE ... ]
184 Adds this package definition to the database. If there is an error,
185 returns the error, otherwise returns false.
187 Currently available options are: I<pkg_svc>, I<primary_svc>, I<cust_pkg>,
188 I<custnum_ref> and I<options>.
190 If I<pkg_svc> is set to a hashref with svcparts as keys and quantities as
191 values, appropriate FS::pkg_svc records will be inserted. I<hidden_svc> can
192 be set to a hashref of svcparts and flag values ('Y' or '') to set the
193 'hidden' field in these records, and I<provision_hold> can be set similarly
194 for the 'provision_hold' field in these records.
196 If I<primary_svc> is set to the svcpart of the primary service, the appropriate
197 FS::pkg_svc record will be updated.
199 If I<cust_pkg> is set to a pkgnum of a FS::cust_pkg record (or the FS::cust_pkg
200 record itself), the object will be updated to point to this package definition.
202 In conjunction with I<cust_pkg>, if I<custnum_ref> is set to a scalar reference,
203 the scalar will be updated with the custnum value from the cust_pkg record.
205 If I<tax_overrides> is set to a hashref with usage classes as keys and comma
206 separated tax class numbers as values, appropriate FS::part_pkg_taxoverride
207 records will be inserted.
209 If I<options> is set to a hashref of options, appropriate FS::part_pkg_option
210 records will be inserted.
212 If I<part_pkg_currency> is set to a hashref of options (with the keys as
213 option_CURRENCY), appropriate FS::part_pkg::currency records will be inserted.
220 warn "FS::part_pkg::insert called on $self with options ".
221 join(', ', map "$_=>$options{$_}", keys %options)
224 local $SIG{HUP} = 'IGNORE';
225 local $SIG{INT} = 'IGNORE';
226 local $SIG{QUIT} = 'IGNORE';
227 local $SIG{TERM} = 'IGNORE';
228 local $SIG{TSTP} = 'IGNORE';
229 local $SIG{PIPE} = 'IGNORE';
231 my $oldAutoCommit = $FS::UID::AutoCommit;
232 local $FS::UID::AutoCommit = 0;
235 if ( length($self->classnum) && $self->classnum !~ /^(\d+)$/ ) {
236 my $pkg_class = qsearchs('pkg_class', { 'classname' => $self->classnum } )
237 || new FS::pkg_class { classname => $self->classnum };
238 unless ( $pkg_class->classnum ) {
239 my $error = $pkg_class->insert;
241 $dbh->rollback if $oldAutoCommit;
245 $self->classnum( $pkg_class->classnum );
248 warn " inserting part_pkg record" if $DEBUG;
249 my $error = $self->SUPER::insert( $options{options} );
251 $dbh->rollback if $oldAutoCommit;
256 if ( $self->get('family_pkgpart') eq '' ) {
257 $self->set('family_pkgpart' => $self->pkgpart);
258 $error = $self->SUPER::replace;
260 $dbh->rollback if $oldAutoCommit;
265 warn " inserting part_pkg_taxoverride records" if $DEBUG;
266 my %overrides = %{ $options{'tax_overrides'} || {} };
267 foreach my $usage_class ( keys %overrides ) {
269 ( exists($overrides{$usage_class}) && defined($overrides{$usage_class}) )
270 ? $overrides{$usage_class}
272 my @overrides = (grep "$_", split(',', $override) );
273 my $error = $self->process_m2m (
274 'link_table' => 'part_pkg_taxoverride',
275 'target_table' => 'tax_class',
276 'hashref' => { 'usage_class' => $usage_class },
277 'params' => \@overrides,
280 $dbh->rollback if $oldAutoCommit;
285 warn " inserting part_pkg_currency records" if $DEBUG;
286 my %part_pkg_currency = %{ $options{'part_pkg_currency'} || {} };
287 foreach my $key ( keys %part_pkg_currency ) {
288 $key =~ /^(.+)_([A-Z]{3})$/ or next;
289 my( $optionname, $currency ) = ( $1, $2 );
290 if ( $part_pkg_currency{$key} =~ /^\s*$/ ) {
291 if ( $self->option($optionname) == 0 ) {
292 $part_pkg_currency{$key} = '0';
294 $dbh->rollback if $oldAutoCommit;
295 ( my $thing = $optionname ) =~ s/_/ /g;
296 return ucfirst($thing). " $currency is required";
299 my $part_pkg_currency = new FS::part_pkg_currency {
300 'pkgpart' => $self->pkgpart,
301 'optionname' => $optionname,
302 'currency' => $currency,
303 'optionvalue' => $part_pkg_currency{$key},
305 my $error = $part_pkg_currency->insert;
307 $dbh->rollback if $oldAutoCommit;
312 unless ( $skip_pkg_svc_hack ) {
314 warn " inserting pkg_svc records" if $DEBUG;
315 my $pkg_svc = $options{'pkg_svc'} || {};
316 my $hidden_svc = $options{'hidden_svc'} || {};
317 my $provision_hold = $options{'provision_hold'} || {};
318 foreach my $part_svc ( qsearch('part_svc', {} ) ) {
319 my $quantity = $pkg_svc->{$part_svc->svcpart} || 0;
321 ( $options{'primary_svc'} && $options{'primary_svc'}==$part_svc->svcpart )
325 my $pkg_svc = new FS::pkg_svc( {
326 'pkgpart' => $self->pkgpart,
327 'svcpart' => $part_svc->svcpart,
328 'quantity' => $quantity,
329 'primary_svc' => $primary_svc,
330 'hidden' => $hidden_svc->{$part_svc->svcpart},
331 'provision_hold' => $provision_hold->{$part_svc->svcpart},
333 my $error = $pkg_svc->insert;
335 $dbh->rollback if $oldAutoCommit;
340 my $error = $self->check_pkg_svc(%options);
342 $dbh->rollback if $oldAutoCommit;
348 if ( $options{'cust_pkg'} ) {
349 warn " updating cust_pkg record " if $DEBUG;
351 ref($options{'cust_pkg'})
352 ? $options{'cust_pkg'}
353 : qsearchs('cust_pkg', { pkgnum => $options{'cust_pkg'} } );
354 ${ $options{'custnum_ref'} } = $old_cust_pkg->custnum
355 if $options{'custnum_ref'};
356 my %hash = $old_cust_pkg->hash;
357 $hash{'pkgpart'} = $self->pkgpart,
358 my $new_cust_pkg = new FS::cust_pkg \%hash;
359 local($FS::cust_pkg::disable_agentcheck) = 1;
360 my $error = $new_cust_pkg->replace($old_cust_pkg);
362 $dbh->rollback if $oldAutoCommit;
363 return "Error modifying cust_pkg record: $error";
367 if ( $options{'part_pkg_vendor'} ) {
368 while ( my ($exportnum, $vendor_pkg_id) =
369 each %{ $options{part_pkg_vendor} }
372 my $ppv = new FS::part_pkg_vendor( {
373 'pkgpart' => $self->pkgpart,
374 'exportnum' => $exportnum,
375 'vendor_pkg_id' => $vendor_pkg_id,
377 my $error = $ppv->insert;
379 $dbh->rollback if $oldAutoCommit;
380 return "Error inserting part_pkg_vendor record: $error";
385 if ( $options{fcc_options} ) {
386 warn " updating fcc options " if $DEBUG;
387 $self->set_fcc_options( $options{fcc_options} );
390 warn " committing transaction" if $DEBUG and $oldAutoCommit;
391 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
398 Currently unimplemented.
403 return "Can't (yet?) delete package definitions.";
404 # check & make sure the pkgpart isn't in cust_pkg or type_pkgs?
407 =item replace OLD_RECORD [ , OPTION => VALUE ... ]
409 Replaces OLD_RECORD with this one in the database. If there is an error,
410 returns the error, otherwise returns false.
412 Currently available options are: I<pkg_svc>, I<hidden_svc>, I<primary_svc>,
413 I<bulk_skip>, I<provision_hold> and I<options>
415 If I<pkg_svc> is set to a hashref with svcparts as keys and quantities as
416 values, the appropriate FS::pkg_svc records will be replaced. I<hidden_svc>
417 can be set to a hashref of svcparts and flag values ('Y' or '') to set the
418 'hidden' field in these records. I<bulk_skip> and I<provision_hold> can be
419 set to a hashref of svcparts and flag values ('Y' or '') to set the
420 respective field in those records.
422 If I<primary_svc> is set to the svcpart of the primary service, the
423 appropriate FS::pkg_svc record will be updated.
425 If I<options> is set to a hashref, the appropriate FS::part_pkg_option
426 records will be replaced.
428 If I<part_pkg_currency> is set to a hashref of options (with the keys as
429 option_CURRENCY), appropriate FS::part_pkg::currency records will be
437 my $old = ( blessed($_[0]) && $_[0]->isa('FS::Record') )
442 ( ref($_[0]) eq 'HASH' )
446 $options->{options} = { $old->options } unless defined($options->{options});
448 warn "FS::part_pkg::replace called on $new to replace $old with options".
449 join(', ', map "$_ => ". $options->{$_}, keys %$options)
452 local $SIG{HUP} = 'IGNORE';
453 local $SIG{INT} = 'IGNORE';
454 local $SIG{QUIT} = 'IGNORE';
455 local $SIG{TERM} = 'IGNORE';
456 local $SIG{TSTP} = 'IGNORE';
457 local $SIG{PIPE} = 'IGNORE';
459 my $oldAutoCommit = $FS::UID::AutoCommit;
460 local $FS::UID::AutoCommit = 0;
463 my $conf = new FS::Conf;
464 if ( $conf->exists('part_pkg-lineage') ) {
465 if ( grep { $options->{options}->{$_} ne $old->option($_, 1) }
466 qw(setup_fee recur_fee) #others? config?
469 warn " superseding package" if $DEBUG;
471 my $error = $new->supersede($old, %$options);
473 $dbh->rollback if $oldAutoCommit;
477 warn " committing transaction" if $DEBUG and $oldAutoCommit;
478 $dbh->commit if $oldAutoCommit;
485 #plandata shit stays in replace for upgrades until after 2.0 (or edit
487 warn " saving legacy plandata" if $DEBUG;
488 my $plandata = $new->get('plandata');
489 $new->set('plandata', '');
491 warn " deleting old part_pkg_option records" if $DEBUG;
492 foreach my $part_pkg_option ( $old->part_pkg_option ) {
493 my $error = $part_pkg_option->delete;
495 $dbh->rollback if $oldAutoCommit;
500 warn " replacing part_pkg record" if $DEBUG;
501 my $error = $new->SUPER::replace($old, $options->{options} );
503 $dbh->rollback if $oldAutoCommit;
507 warn " inserting part_pkg_option records for plandata: $plandata|" if $DEBUG;
508 foreach my $part_pkg_option (
509 map { /^(\w+)=(.*)$/ or do { $dbh->rollback if $oldAutoCommit;
510 return "illegal plandata: $plandata";
512 new FS::part_pkg_option {
513 'pkgpart' => $new->pkgpart,
518 split("\n", $plandata)
520 my $error = $part_pkg_option->insert;
522 $dbh->rollback if $oldAutoCommit;
527 #trivial nit: not the most efficient to delete and reinsert
528 warn " deleting old part_pkg_currency records" if $DEBUG;
529 foreach my $part_pkg_currency ( $old->part_pkg_currency ) {
530 my $error = $part_pkg_currency->delete;
532 $dbh->rollback if $oldAutoCommit;
533 return "error deleting part_pkg_currency record: $error";
537 warn " inserting new part_pkg_currency records" if $DEBUG;
538 my %part_pkg_currency = %{ $options->{'part_pkg_currency'} || {} };
539 foreach my $key ( keys %part_pkg_currency ) {
540 $key =~ /^(.+)_([A-Z]{3})$/ or next;
541 my $part_pkg_currency = new FS::part_pkg_currency {
542 'pkgpart' => $new->pkgpart,
545 'optionvalue' => $part_pkg_currency{$key},
547 my $error = $part_pkg_currency->insert;
549 $dbh->rollback if $oldAutoCommit;
550 return "error inserting part_pkg_currency record: $error";
555 warn " replacing pkg_svc records" if $DEBUG;
556 my $pkg_svc = $options->{'pkg_svc'};
557 my $hidden_svc = $options->{'hidden_svc'} || {};
558 my $bulk_skip = $options->{'bulk_skip'} || {};
559 my $provision_hold = $options->{'provision_hold'} || {};
560 if ( $pkg_svc ) { # if it wasn't passed, don't change existing pkg_svcs
562 foreach my $part_svc ( qsearch('part_svc', {} ) ) {
563 my $quantity = $pkg_svc->{$part_svc->svcpart} || 0;
564 my $hidden = $hidden_svc->{$part_svc->svcpart} || '';
565 my $bulk_skip = $bulk_skip->{$part_svc->svcpart} || '';
566 my $provision_hold = $provision_hold->{$part_svc->svcpart} || '';
568 ( defined($options->{'primary_svc'}) && $options->{'primary_svc'}
569 && $options->{'primary_svc'} == $part_svc->svcpart
574 my $old_pkg_svc = qsearchs('pkg_svc', {
575 'pkgpart' => $old->pkgpart,
576 'svcpart' => $part_svc->svcpart,
579 my $old_quantity = 0;
580 my $old_primary_svc = '';
582 my $old_bulk_skip = '';
583 my $old_provision_hold = '';
584 if ( $old_pkg_svc ) {
585 $old_quantity = $old_pkg_svc->quantity;
586 $old_primary_svc = $old_pkg_svc->primary_svc
587 if $old_pkg_svc->dbdef_table->column('primary_svc'); # is this needed?
588 $old_hidden = $old_pkg_svc->hidden;
589 $old_bulk_skip = $old_pkg_svc->old_bulk_skip; # should this just be bulk_skip?
590 $old_provision_hold = $old_pkg_svc->provision_hold;
593 next unless $old_quantity != $quantity
594 || $old_primary_svc ne $primary_svc
595 || $old_hidden ne $hidden
596 || $old_bulk_skip ne $bulk_skip
597 || $old_provision_hold ne $provision_hold;
599 my $new_pkg_svc = new FS::pkg_svc( {
600 'pkgsvcnum' => ( $old_pkg_svc ? $old_pkg_svc->pkgsvcnum : '' ),
601 'pkgpart' => $new->pkgpart,
602 'svcpart' => $part_svc->svcpart,
603 'quantity' => $quantity,
604 'primary_svc' => $primary_svc,
606 'bulk_skip' => $bulk_skip,
607 'provision_hold' => $provision_hold,
609 my $error = $old_pkg_svc
610 ? $new_pkg_svc->replace($old_pkg_svc)
611 : $new_pkg_svc->insert;
613 $dbh->rollback if $oldAutoCommit;
618 my $error = $new->check_pkg_svc(%$options);
620 $dbh->rollback if $oldAutoCommit;
624 } #if $options->{pkg_svc}
626 my @part_pkg_vendor = $old->part_pkg_vendor;
627 my @current_exportnum = ();
628 if ( $options->{'part_pkg_vendor'} ) {
629 my($exportnum,$vendor_pkg_id);
630 while ( ($exportnum,$vendor_pkg_id)
631 = each %{$options->{'part_pkg_vendor'}} ) {
633 foreach my $part_pkg_vendor ( @part_pkg_vendor ) {
634 if($exportnum == $part_pkg_vendor->exportnum
635 && $vendor_pkg_id ne $part_pkg_vendor->vendor_pkg_id) {
636 $part_pkg_vendor->vendor_pkg_id($vendor_pkg_id);
637 my $error = $part_pkg_vendor->replace;
639 $dbh->rollback if $oldAutoCommit;
640 return "Error replacing part_pkg_vendor record: $error";
645 elsif($exportnum == $part_pkg_vendor->exportnum
646 && $vendor_pkg_id eq $part_pkg_vendor->vendor_pkg_id) {
651 unless ( $noinsert ) {
652 my $ppv = new FS::part_pkg_vendor( {
653 'pkgpart' => $new->pkgpart,
654 'exportnum' => $exportnum,
655 'vendor_pkg_id' => $vendor_pkg_id,
657 my $error = $ppv->insert;
659 $dbh->rollback if $oldAutoCommit;
660 return "Error inserting part_pkg_vendor record: $error";
663 push @current_exportnum, $exportnum;
666 foreach my $part_pkg_vendor ( @part_pkg_vendor ) {
667 unless ( grep($_ eq $part_pkg_vendor->exportnum, @current_exportnum) ) {
668 my $error = $part_pkg_vendor->delete;
670 $dbh->rollback if $oldAutoCommit;
671 return "Error deleting part_pkg_vendor record: $error";
676 # propagate changes to certain core fields
677 if ( $conf->exists('part_pkg-lineage') ) {
678 warn " propagating changes to family" if $DEBUG;
679 my $error = $new->propagate($old);
681 $dbh->rollback if $oldAutoCommit;
686 if ( $options->{fcc_options} ) {
687 warn " updating fcc options " if $DEBUG;
688 $new->set_fcc_options( $options->{fcc_options} );
691 warn " committing transaction" if $DEBUG and $oldAutoCommit;
692 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
698 Checks all fields to make sure this is a valid package definition. If
699 there is an error, returns the error, otherwise returns false. Called by the
700 insert and replace methods.
706 warn "FS::part_pkg::check called on $self" if $DEBUG;
708 for (qw(setup recur plandata)) {
709 #$self->set($_=>0) if $self->get($_) =~ /^\s*$/; }
710 return "Use of $_ field is deprecated; set a plan and options: ".
712 if length($self->get($_));
716 if ( $self->dbdef_table->column('freq')->type =~ /(int)/i ) {
717 my $error = $self->ut_number('freq');
718 return $error if $error;
720 $self->freq =~ /^(\d+[hdw]?)$/
721 or return "Illegal or empty freq: ". $self->freq;
725 my @null_agentnum_right = ( 'Edit global package definitions' );
726 push @null_agentnum_right, 'One-time charge'
727 if $self->freq =~ /^0/;
728 push @null_agentnum_right, 'Customize customer package'
729 if $self->disabled eq 'Y'; #good enough
731 my $error = $self->ut_numbern('pkgpart')
732 || $self->ut_text('pkg')
733 || $self->ut_textn('comment')
734 || $self->ut_textn('promo_code')
735 || $self->ut_alphan('plan')
736 || $self->ut_flag('setuptax')
737 || $self->ut_flag('recurtax')
738 || $self->ut_textn('taxclass')
739 || $self->ut_flag('disabled')
740 || $self->ut_flag('custom')
741 || $self->ut_flag('no_auto')
742 || $self->ut_flag('recur_show_zero')
743 || $self->ut_flag('setup_show_zero')
744 || $self->ut_flag('start_on_hold')
745 #|| $self->ut_moneyn('setup_cost')
746 #|| $self->ut_moneyn('recur_cost')
747 || $self->ut_floatn('setup_cost')
748 || $self->ut_floatn('recur_cost')
749 || $self->ut_floatn('pay_weight')
750 || $self->ut_floatn('credit_weight')
751 || $self->ut_numbern('taxproductnum')
752 || $self->ut_foreign_keyn('classnum', 'pkg_class', 'classnum')
753 || $self->ut_foreign_keyn('addon_classnum', 'pkg_class', 'classnum')
754 || $self->ut_foreign_keyn('taxproductnum',
755 'part_pkg_taxproduct',
759 ? $self->ut_foreign_keyn('agentnum', 'agent', 'agentnum' )
760 : $self->ut_agentnum_acl('agentnum', \@null_agentnum_right)
762 || $self->ut_numbern('fcc_ds0s')
763 || $self->ut_numbern('fcc_voip_class')
764 || $self->ut_numbern('delay_start')
765 || $self->ut_foreign_keyn('successor', 'part_pkg', 'pkgpart')
766 || $self->ut_foreign_keyn('family_pkgpart', 'part_pkg', 'pkgpart')
767 || $self->ut_numbern('expire_months')
768 || $self->ut_numbern('adjourn_months')
769 || $self->ut_numbern('contract_end_months')
770 || $self->ut_numbern('change_to_pkgpart')
771 || $self->ut_foreign_keyn('change_to_pkgpart', 'part_pkg', 'pkgpart')
772 || $self->ut_alphan('agent_pkgpartid')
773 || $self->SUPER::check
775 return $error if $error;
777 return 'Unknown plan '. $self->plan
778 unless exists($plans{$self->plan});
780 my $conf = new FS::Conf;
781 return 'Taxclass is required'
782 if ! $self->taxclass && $conf->exists('require_taxclasses');
789 Pass an I<$options> hashref that contains the values to be
790 inserted or updated for any FS::part_pkg::MODULE.pm.
792 For each key in I<$options>, validates the value by calling
793 the 'validate' subroutine defined for that option e.g.
794 FS::part_pkg::MODULE::plan_info()->{$KEY}->{validate}. The
795 option validation function is only called when the hashkey for
796 that option exists in I<$options>.
798 Then the module validation function is called, from
799 FS::part_pkg::MODULE::plan_info()->{validate}
801 Returns error message, or empty string if valid.
803 Invoked by L</insert> and L</replace> via the equivalent
804 methods in L<FS::option_Common>.
809 my ($self,$options) = @_;
810 foreach my $option (keys %$options) {
811 if (exists $plans{ $self->plan }->{fields}->{$option}) {
812 if (exists($plans{$self->plan}->{fields}->{$option}->{'validate'})) {
813 # pass option name for use in error message
814 # pass a reference to the $options value, so it can be cleaned up
815 my $error = &{$plans{$self->plan}->{fields}->{$option}->{'validate'}}($option,\($options->{$option}));
816 return $error if $error;
818 } # else "option does not exist" error?
820 if (exists($plans{$self->plan}->{'validate'})) {
821 my $error = &{$plans{$self->plan}->{'validate'}}($options);
822 return $error if $error;
829 Checks pkg_svc records as a whole (for part_svc_link dependencies).
831 If there is an error, returns the error, otherwise returns false.
836 my( $self, %opt ) = @_;
838 my $agentnum = $self->agentnum;
840 my %pkg_svc = map { $_->svcpart => $_ } $self->pkg_svc;
842 foreach my $svcpart ( keys %pkg_svc ) {
844 foreach my $part_svc_link ( $self->part_svc_link(
845 'src_svcpart' => $svcpart,
846 'link_type' => 'part_pkg_restrict',
850 return $part_svc_link->dst_svc. ' must be included with '.
851 $part_svc_link->src_svc
852 unless $pkg_svc{ $part_svc_link->dst_svcpart };
857 return '' if $opt{part_pkg_restrict_soft_override};
859 foreach my $svcpart ( keys %pkg_svc ) {
861 foreach my $part_svc_link ( $self->part_svc_link(
862 'src_svcpart' => $svcpart,
863 'link_type' => 'part_pkg_restrict_soft',
866 return $part_svc_link->dst_svc. ' is suggested with '.
867 $part_svc_link->src_svc
868 unless $pkg_svc{ $part_svc_link->dst_svcpart };
876 =item part_svc_link OPTION => VALUE ...
878 Returns the service dependencies (see L<FS::part_svc_link>) for the given
879 search options, taking into account this package definition's agent.
881 Available options are any field in part_svc_link. Typically used options are
882 src_svcpart and link_type.
887 FS::part_svc_link->by_agentnum( shift->agentnum, @_ );
890 =item supersede OLD [, OPTION => VALUE ... ]
892 Inserts this package as a successor to the package OLD. All options are as
893 for C<insert>. After inserting, disables OLD and sets the new package as its
899 my ($new, $old, %options) = @_;
902 $new->set('pkgpart' => '');
903 $new->set('family_pkgpart' => $old->family_pkgpart);
904 warn " inserting successor package\n" if $DEBUG;
905 $error = $new->insert(%options);
906 return $error if $error;
908 warn " disabling superseded package\n" if $DEBUG;
909 $old->set('successor' => $new->pkgpart);
910 $old->set('disabled' => 'Y');
911 $error = $old->SUPER::replace; # don't change its options/pkg_svc records
912 return $error if $error;
914 warn " propagating changes to family" if $DEBUG;
915 $new->propagate($old);
920 If any of certain fields have changed from OLD to this package, then,
921 for all packages in the same lineage as this one, sets those fields
922 to their values in this package.
926 my @propagate_fields = (
927 qw( pkg classnum setup_cost recur_cost taxclass
928 setuptax recurtax pay_weight credit_weight
936 map { $_ => $new->get($_) }
937 grep { $new->get($_) ne $old->get($_) }
941 my @part_pkg = qsearch('part_pkg', {
942 'family_pkgpart' => $new->family_pkgpart
945 foreach my $part_pkg ( @part_pkg ) {
946 my $pkgpart = $part_pkg->pkgpart;
947 next if $pkgpart == $new->pkgpart; # don't modify $new
948 warn " propagating to pkgpart $pkgpart\n" if $DEBUG;
949 foreach ( keys %fields ) {
950 $part_pkg->set($_, $fields{$_});
952 # SUPER::replace to avoid changing non-core fields
953 my $error = $part_pkg->SUPER::replace;
954 push @error, "pkgpart $pkgpart: $error"
960 =item set_fcc_options HASHREF
962 Sets the FCC options on this package definition to the values specified
967 sub set_fcc_options {
969 my $pkgpart = $self->pkgpart;
977 my %existing_num = map { $_->fccoptionname => $_->num }
978 qsearch('part_pkg_fcc_option', { pkgpart => $pkgpart });
980 local $FS::Record::nowarn_identical = 1;
981 # set up params for process_o2m
984 foreach my $name (keys %$options ) {
985 $params->{ "num$i" } = $existing_num{$name} || '';
986 $params->{ "num$i".'_fccoptionname' } = $name;
987 $params->{ "num$i".'_optionvalue' } = $options->{$name};
992 table => 'part_pkg_fcc_option',
993 fields => [qw( fccoptionname optionvalue )],
998 =item pkg_locale LOCALE
1000 Returns a customer-viewable string representing this package for the given
1001 locale, from the part_pkg_msgcat table. If the given locale is empty or no
1002 localized string is found, returns the base pkg field.
1007 my( $self, $locale ) = @_;
1008 return $self->pkg unless $locale;
1009 my $part_pkg_msgcat = $self->part_pkg_msgcat($locale) or return $self->pkg;
1010 $part_pkg_msgcat->pkg;
1013 =item part_pkg_msgcat LOCALE
1015 Like pkg_locale, but returns the FS::part_pkg_msgcat object itself.
1019 sub part_pkg_msgcat {
1020 my( $self, $locale ) = @_;
1021 qsearchs( 'part_pkg_msgcat', {
1022 pkgpart => $self->pkgpart,
1027 =item pkg_comment [ OPTION => VALUE... ]
1029 Returns an (internal) string representing this package. Currently,
1030 "pkgpart: pkg - comment", is returned. "pkg - comment" may be returned in the
1031 future, omitting pkgpart. The comment will have '(CUSTOM) ' prepended if
1034 If the option nopkgpart is true then the "pkgpart: ' is omitted.
1042 #$self->pkg. ' - '. $self->comment;
1043 #$self->pkg. ' ('. $self->comment. ')';
1044 my $pre = $opt{nopkgpart} ? '' : $self->pkgpart. ': ';
1045 my $custom_comment = $self->custom_comment(%opt);
1046 $pre. $self->pkg. ( $custom_comment ? " - $custom_comment" : '' );
1049 #without price info (so without hitting the DB again)
1050 sub pkg_comment_only {
1054 my $pre = $opt{nopkgpart} ? '' : $self->pkgpart. ': ';
1055 my $comment = $self->comment;
1056 $pre. $self->pkg. ( $comment ? " - $comment" : '' );
1059 sub price_info { # safety, in case a part_pkg hasn't defined price_info
1063 sub custom_comment {
1065 my $price_info = $self->price_info(@_);
1066 ( $self->custom ? '(CUSTOM) ' : '' ).
1068 ( ($self->custom || $self->comment) ? ' - ' : '' ).
1069 ($price_info || 'No charge');
1072 sub pkg_price_info {
1074 $self->pkg. ' - '. ($self->price_info || 'No charge');
1079 Returns the package class, as an FS::pkg_class object, or the empty string
1080 if there is no package class.
1082 =item addon_pkg_class
1084 Returns the add-on package class, as an FS::pkg_class object, or the empty
1085 string if there is no add-on package class.
1089 sub addon_pkg_class {
1091 if ( $self->addon_classnum ) {
1092 qsearchs('pkg_class', { 'classnum' => $self->addon_classnum } );
1100 Returns the package category name, or the empty string if there is no package
1107 my $pkg_class = $self->pkg_class;
1109 ? $pkg_class->categoryname
1115 Returns the package class name, or the empty string if there is no package
1122 my $pkg_class = $self->pkg_class;
1124 ? $pkg_class->classname
1128 =item addon_classname
1130 Returns the add-on package class name, or the empty string if there is no
1131 add-on package class.
1135 sub addon_classname {
1137 my $pkg_class = $self->addon_pkg_class;
1139 ? $pkg_class->classname
1145 Returns the associated agent for this event, if any, as an FS::agent object.
1147 =item pkg_svc [ HASHREF | OPTION => VALUE ]
1149 Returns all FS::pkg_svc objects (see L<FS::pkg_svc>) for this package
1150 definition (with non-zero quantity).
1152 One option is available, I<disable_linked>. If set true it will return the
1153 services for this package definition alone, omitting services from any add-on
1160 Returns all FS::type_pkgs objects (see L<FS::type_pkgs>) for this package
1168 return @{ $cache_pkg_svc{$self->pkgpart} }
1169 if $cache_enabled && $cache_pkg_svc{$self->pkgpart};
1171 # #sort { $b->primary cmp $a->primary }
1172 # grep { $_->quantity }
1173 # qsearch( 'pkg_svc', { 'pkgpart' => $self->pkgpart } );
1175 my $opt = ref($_[0]) ? $_[0] : { @_ };
1176 my %pkg_svc = map { $_->svcpart => $_ } $self->_pkg_svc;
1178 unless ( $opt->{disable_linked} ) {
1179 foreach my $dst_pkg ( map $_->dst_pkg, $self->svc_part_pkg_link ) {
1180 my @pkg_svc = $dst_pkg->_pkg_svc;
1181 foreach my $pkg_svc ( @pkg_svc ) {
1182 if ( $pkg_svc{$pkg_svc->svcpart} ) {
1183 my $quantity = $pkg_svc{$pkg_svc->svcpart}->quantity;
1184 $pkg_svc{$pkg_svc->svcpart}->quantity($quantity + $pkg_svc->quantity);
1186 $pkg_svc{$pkg_svc->svcpart} = $pkg_svc;
1192 my @pkg_svc = values(%pkg_svc);
1194 $cache_pkg_svc{$self->pkgpart} = \@pkg_svc if $cache_enabled;
1202 grep { $_->quantity }
1204 'select' => 'pkg_svc.*, part_svc.*',
1205 'table' => 'pkg_svc',
1206 'addl_from' => 'LEFT JOIN part_svc USING ( svcpart )',
1207 'hashref' => { 'pkgpart' => $self->pkgpart },
1211 =item svcpart [ SVCDB ]
1213 Returns the svcpart of the primary service definition (see L<FS::part_svc>)
1214 associated with this package definition (see L<FS::pkg_svc>). Returns
1215 false if there not a primary service definition or exactly one service
1216 definition with quantity 1, or if SVCDB is specified and does not match the
1217 svcdb of the service definition. SVCDB can be specified as a scalar table
1218 name, such as 'svc_acct', or as an arrayref of possible table names.
1223 my $pkg_svc = shift->_primary_pkg_svc(@_);
1224 $pkg_svc ? $pkg_svc->svcpart : '';
1227 =item part_svc [ SVCDB ]
1229 Like the B<svcpart> method, but returns the FS::part_svc object (see
1235 my $pkg_svc = shift->_primary_pkg_svc(@_);
1236 $pkg_svc ? $pkg_svc->part_svc : '';
1239 sub _primary_pkg_svc {
1242 my $svcdb = scalar(@_) ? shift : [];
1243 $svcdb = ref($svcdb) ? $svcdb : [ $svcdb ];
1244 my %svcdb = map { $_=>1 } @$svcdb;
1247 grep { !scalar(@$svcdb) || $svcdb{ $_->part_svc->svcdb } }
1250 my @pkg_svc = grep { $_->primary_svc =~ /^Y/i } @svcdb_pkg_svc;
1251 @pkg_svc = grep {$_->quantity == 1 } @svcdb_pkg_svc
1253 return '' if scalar(@pkg_svc) != 1;
1257 =item svcpart_unique_svcdb SVCDB
1259 Returns the svcpart of a service definition (see L<FS::part_svc>) matching
1260 SVCDB associated with this package definition (see L<FS::pkg_svc>). Returns
1261 false if there not a primary service definition for SVCDB or there are multiple
1262 service definitions for SVCDB.
1266 sub svcpart_unique_svcdb {
1267 my( $self, $svcdb ) = @_;
1268 my @svcdb_pkg_svc = grep { ( $svcdb eq $_->part_svc->svcdb ) } $self->pkg_svc;
1269 return '' if scalar(@svcdb_pkg_svc) != 1;
1270 $svcdb_pkg_svc[0]->svcpart;
1275 Returns a list of the acceptable payment types for this package. Eventually
1276 this should come out of a database table and be editable, but currently has the
1277 following logic instead:
1279 If the package is free, the single item B<BILL> is
1280 returned, otherwise, the single item B<CARD> is returned.
1282 (CHEK? LEC? Probably shouldn't accept those by default, prone to abuse)
1288 if ( $self->is_free ) {
1297 Returns true if this package is free.
1303 if ( $self->can('is_free_options') ) {
1304 not grep { $_ !~ /^\s*0*(\.0*)?\s*$/ }
1305 map { $self->option($_) }
1306 $self->is_free_options;
1308 warn "FS::part_pkg::is_free: FS::part_pkg::". $self->plan. " subclass ".
1309 "provides neither is_free_options nor is_free method; returning false";
1314 # whether the plan allows discounts to be applied to this package
1315 sub can_discount { 0; }
1317 # whether the plan allows changing the start date
1318 sub can_start_date {
1320 $self->start_on_hold ? 0 : 1;
1323 # whether the plan supports part_pkg_usageprice add-ons (a specific kind of
1324 # pre-selectable usage pricing, there's others this doesn't refer to)
1325 sub can_usageprice { 0; }
1327 # the delay start date if present
1328 sub delay_start_date {
1331 my $delay = $self->delay_start or return '';
1333 # avoid timelocal silliness
1334 my $dt = DateTime->today(time_zone => 'local');
1335 $dt->add(days => $delay);
1339 sub can_currency_exchange { 0; }
1342 # moved to FS::Misc to make this accessible to other packages
1344 FS::Misc::pkg_freqs();
1349 Returns an english representation of the I<freq> field, such as "monthly",
1350 "weekly", "semi-annually", etc.
1356 my $freq = $self->freq;
1358 #my $freqs_href = $self->freqs_href;
1359 my $freqs_href = freqs_href();
1361 if ( exists($freqs_href->{$freq}) ) {
1362 $freqs_href->{$freq};
1364 my $interval = 'month';
1365 if ( $freq =~ /^(\d+)([hdw])$/ ) {
1366 my %interval = ( 'h' => 'hour', 'd'=>'day', 'w'=>'week' );
1367 $interval = $interval{$2};
1372 "every $freq ${interval}s";
1377 =item add_freq TIMESTAMP [ FREQ ]
1379 Adds a billing period of some frequency to the provided timestamp and
1380 returns the resulting timestamp, or -1 if the frequency could not be
1381 parsed (shouldn't happen). By default, the frequency of this package
1382 will be used; to override this, pass a different frequency as a second
1388 my( $self, $date, $freq ) = @_;
1389 $freq = $self->freq unless $freq;
1391 #change this bit to use Date::Manip? CAREFUL with timezones (see
1392 # mailing list archive)
1393 my ($sec,$min,$hour,$mday,$mon,$year) = (localtime($date) )[0,1,2,3,4,5];
1395 if ( $freq =~ /^\d+$/ ) {
1397 until ( $mon < 12 ) { $mon -= 12; $year++; }
1399 $mday = 28 if $mday > 28 && FS::Conf->new->exists('anniversary-rollback');
1401 } elsif ( $freq =~ /^(\d+)w$/ ) {
1403 $mday += $weeks * 7;
1404 } elsif ( $freq =~ /^(\d+)d$/ ) {
1407 } elsif ( $freq =~ /^(\d+)h$/ ) {
1414 timelocal_nocheck($sec,$min,$hour,$mday,$mon,$year);
1419 For backwards compatibility, returns the plandata field as well as all options
1420 from FS::part_pkg_option.
1426 carp "plandata is deprecated";
1428 $self->SUPER::plandata(@_);
1430 my $plandata = $self->get('plandata');
1431 my %options = $self->options;
1432 $plandata .= join('', map { "$_=$options{$_}\n" } keys %options );
1437 =item part_pkg_vendor
1439 Returns all vendor/external package ids as FS::part_pkg_vendor objects (see
1440 L<FS::part_pkg_vendor>).
1442 =item vendor_pkg_ids
1444 Returns a list of vendor/external package ids by exportnum
1448 sub vendor_pkg_ids {
1450 map { $_->exportnum => $_->vendor_pkg_id } $self->part_pkg_vendor;
1453 =item part_pkg_option
1455 Returns all options as FS::part_pkg_option objects (see
1456 L<FS::part_pkg_option>).
1460 Returns a list of option names and values suitable for assigning to a hash.
1466 map { $_->optionname => $_->optionvalue } $self->part_pkg_option;
1469 =item option OPTIONNAME [ QUIET ]
1471 Returns the option value for the given name, or the empty string. If a true
1472 value is passed as the second argument, warnings about missing the option
1478 my( $self, $opt, $ornull ) = @_;
1480 #cache: was pulled up in the original part_pkg query
1481 return $self->hashref->{"_opt_$opt"}
1482 if exists $self->hashref->{"_opt_$opt"};
1484 cluck "$self -> option: searching for $opt" if $DEBUG;
1485 my $part_pkg_option =
1486 qsearchs('part_pkg_option', {
1487 pkgpart => $self->pkgpart,
1490 return $part_pkg_option->optionvalue if $part_pkg_option;
1492 my %plandata = map { /^(\w+)=(.*)$/; ( $1 => $2 ); }
1493 split("\n", $self->get('plandata') );
1494 return $plandata{$opt} if exists $plandata{$opt};
1496 # check whether the option is defined in plan info (if so, don't warn)
1497 if (exists $plans{ $self->plan }->{fields}->{$opt}) {
1500 cluck "WARNING: (pkgpart ". $self->pkgpart. ") Package def option $opt ".
1501 "not found in options or plandata!\n"
1507 =item part_pkg_currency [ CURRENCY ]
1509 Returns all currency options as FS::part_pkg_currency objects (see
1510 L<FS::part_pkg_currency>), or, if a currency is specified, only return the
1511 objects for that currency.
1515 sub part_pkg_currency {
1517 my %hash = ( 'pkgpart' => $self->pkgpart );
1518 $hash{'currency'} = shift if @_;
1519 qsearch('part_pkg_currency', \%hash );
1522 =item part_pkg_currency_options CURRENCY
1524 Returns a list of option names and values from FS::part_pkg_currency for the
1529 sub part_pkg_currency_options {
1531 map { $_->optionname => $_->optionvalue } $self->part_pkg_currency(shift);
1534 =item part_pkg_currency_option CURRENCY OPTIONNAME
1536 Returns the option value for the given name and currency.
1540 sub part_pkg_currency_option {
1541 my( $self, $currency, $optionname ) = @_;
1542 my $part_pkg_currency =
1543 qsearchs('part_pkg_currency', { 'pkgpart' => $self->pkgpart,
1544 'currency' => $currency,
1545 'optionname' => $optionname,
1548 #fatal if not found? that works for our use cases from
1549 #part_pkg/currency_fixed, but isn't how we would typically/expect the method
1550 #to behave. have to catch it there if we change it here...
1551 or die "Unknown price for ". $self->pkg_comment. " in $currency\n";
1553 $part_pkg_currency->optionvalue;
1556 =item fcc_option OPTIONNAME
1558 Returns the FCC 477 report option value for the given name, or the empty
1564 my ($self, $name) = @_;
1565 my $part_pkg_fcc_option =
1566 qsearchs('part_pkg_fcc_option', {
1567 pkgpart => $self->pkgpart,
1568 fccoptionname => $name,
1570 $part_pkg_fcc_option ? $part_pkg_fcc_option->optionvalue : '';
1575 Returns all FCC 477 report options for this package, as a hash-like list.
1581 map { $_->fccoptionname => $_->optionvalue }
1582 qsearch('part_pkg_fcc_option', { pkgpart => $self->pkgpart });
1585 =item bill_part_pkg_link
1587 Returns the associated part_pkg_link records (see L<FS::part_pkg_link>).
1591 sub bill_part_pkg_link {
1592 shift->_part_pkg_link('bill', @_);
1595 =item svc_part_pkg_link
1597 Returns the associated part_pkg_link records (see L<FS::part_pkg_link>).
1601 sub svc_part_pkg_link {
1602 shift->_part_pkg_link('svc', @_);
1605 =item supp_part_pkg_link
1607 Returns the associated part_pkg_link records of type 'supp' (supplemental
1612 sub supp_part_pkg_link {
1613 shift->_part_pkg_link('supp', @_);
1616 sub _part_pkg_link {
1617 my( $self, $type ) = @_;
1619 return @{ $cache_link{$type}->{$self->pkgpart} }
1620 if $cache_enabled && $cache_link{$type}->{$self->pkgpart};
1622 cluck $type.'_part_pkg_link called' if $DEBUG;
1625 qsearch({ table => 'part_pkg_link',
1626 hashref => { src_pkgpart => $self->pkgpart,
1628 #protection against infinite recursive links
1629 dst_pkgpart => { op=>'!=', value=> $self->pkgpart },
1631 order_by => "ORDER BY hidden",
1634 $cache_link{$type}->{$self->pkgpart} = \@ppl if $cache_enabled;
1639 sub self_and_bill_linked {
1640 shift->_self_and_linked('bill', @_);
1643 sub self_and_svc_linked {
1644 shift->_self_and_linked('svc', @_);
1647 sub _self_and_linked {
1648 my( $self, $type, $hidden ) = @_;
1652 foreach ( ( $self, map { $_->dst_pkg->_self_and_linked($type, $_->hidden) }
1653 $self->_part_pkg_link($type) ) )
1655 $_->hidden($hidden) if $hidden;
1662 =item part_pkg_taxoverride [ CLASS ]
1664 Returns all associated FS::part_pkg_taxoverride objects (see
1665 L<FS::part_pkg_taxoverride>). Limits the returned set to those
1666 of class CLASS if defined. Class may be one of 'setup', 'recur',
1667 the empty string (default), or a usage class number (see L<FS::usage_class>).
1668 When a class is specified, the empty string class (default) is returned
1669 if no more specific values exist.
1673 sub part_pkg_taxoverride {
1677 my $hashref = { 'pkgpart' => $self->pkgpart };
1678 $hashref->{'usage_class'} = $class if defined($class);
1679 my @overrides = qsearch('part_pkg_taxoverride', $hashref );
1681 unless ( scalar(@overrides) || !defined($class) || !$class ){
1682 $hashref->{'usage_class'} = '';
1683 @overrides = qsearch('part_pkg_taxoverride', $hashref );
1689 =item has_taxproduct
1691 Returns true if this package has any taxproduct associated with it.
1695 sub has_taxproduct {
1698 $self->taxproductnum ||
1699 scalar( grep { $_ =~/^usage_taxproductnum_/ && $self->option($_) }
1700 keys %{ {$self->options} }
1706 =item taxproduct [ CLASS ]
1708 Returns the associated tax product for this package definition (see
1709 L<FS::part_pkg_taxproduct>). CLASS may be one of 'setup', 'recur' or
1710 the usage classnum (see L<FS::usage_class>). Returns the default
1711 tax product for this record if the more specific CLASS value does
1720 my $part_pkg_taxproduct;
1722 my $taxproductnum = $self->taxproductnum;
1724 my $class_taxproductnum = $self->option("usage_taxproductnum_$class", 1);
1725 $taxproductnum = $class_taxproductnum
1726 if $class_taxproductnum
1729 $part_pkg_taxproduct =
1730 qsearchs( 'part_pkg_taxproduct', { 'taxproductnum' => $taxproductnum } );
1732 unless ($part_pkg_taxproduct || $taxproductnum eq $self->taxproductnum ) {
1733 $taxproductnum = $self->taxproductnum;
1734 $part_pkg_taxproduct =
1735 qsearchs( 'part_pkg_taxproduct', { 'taxproductnum' => $taxproductnum } );
1738 $part_pkg_taxproduct;
1741 =item taxproduct_description [ CLASS ]
1743 Returns the description of the associated tax product for this package
1744 definition (see L<FS::part_pkg_taxproduct>).
1748 sub taxproduct_description {
1750 my $part_pkg_taxproduct = $self->taxproduct(@_);
1751 $part_pkg_taxproduct ? $part_pkg_taxproduct->description : '';
1755 =item tax_rates DATA_PROVIDER, GEOCODE, [ CLASS ]
1757 Returns the tax table entries (L<FS::tax_rate> objects) that apply to this
1758 package in the location specified by GEOCODE, for usage class CLASS (one of
1759 'setup', 'recur', null, or a C<usage_class> number).
1765 my ($vendor, $geocode, $class) = @_;
1766 # if this part_pkg is overridden into a specific taxclass, get that class
1767 my @taxclassnums = map { $_->taxclassnum }
1768 $self->part_pkg_taxoverride($class);
1769 # otherwise, get its tax product category
1770 if (!@taxclassnums) {
1771 my $part_pkg_taxproduct = $self->taxproduct($class);
1772 # If this isn't defined, then the class has no taxproduct designation,
1773 # so return no tax rates.
1774 return () if !$part_pkg_taxproduct;
1776 # convert the taxproduct to the tax classes that might apply to it in
1778 @taxclassnums = map { $_->taxclassnum }
1779 grep { $_->taxable eq 'Y' } # why do we need this?
1780 $part_pkg_taxproduct->part_pkg_taxrate($geocode);
1782 return unless @taxclassnums;
1784 # then look up the actual tax_rate entries
1785 warn "Found taxclassnum values of ". join(',', @taxclassnums) ."\n"
1787 my $extra_sql = "AND taxclassnum IN (". join(',', @taxclassnums) . ")";
1788 my @taxes = qsearch({ 'table' => 'tax_rate',
1789 'hashref' => { 'geocode' => $geocode,
1790 'data_vendor' => $vendor,
1792 'extra_sql' => $extra_sql,
1794 warn "Found taxes ". join(',', map {$_->taxnum} @taxes) ."\n"
1800 =item part_pkg_discount
1802 Returns the package to discount m2m records (see L<FS::part_pkg_discount>)
1805 =item part_pkg_usage
1807 Returns the voice usage pools (see L<FS::part_pkg_usage>) defined for
1812 Returns the automatic transfer target for this package, or an empty string
1819 my $pkgpart = $self->change_to_pkgpart or return '';
1820 FS::part_pkg->by_key($pkgpart);
1825 Reblesses the object into the FS::part_pkg::PLAN class (if available), where
1826 PLAN is the object's I<plan> field. There should be better docs
1827 on how to create new price plans, but until then, see L</NEW PLAN CLASSES>.
1833 my $plan = $self->plan;
1835 cluck "no price plan found for pkgpart ". $self->pkgpart. "\n"
1839 return $self if ref($self) =~ /::$plan$/; #already blessed into plan subclass
1840 my $class = ref($self). "::$plan";
1841 warn "reblessing $self into $class" if $DEBUG > 1;
1844 bless($self, $class) unless $@;
1848 =item calc_setup CUST_PKG START_DATE DETAILS_ARRAYREF OPTIONS_HASHREF
1850 =item calc_recur CUST_PKG START_DATE DETAILS_ARRAYREF OPTIONS_HASHREF
1852 Calculates and returns the setup or recurring fees, respectively, for this
1853 package. Implementation is in the FS::part_pkg:* module specific to this price
1856 Adds invoicing details to the passed-in DETAILS_ARRAYREF
1858 Options are passed as a hashref. Available options:
1864 Frequency override (for calc_recur)
1868 This option is filled in by the method rather than controlling its operation.
1869 It is an arrayref. Applicable discounts will be added to the arrayref, as
1870 L<FS::cust_bill_pkg_discount|FS::cust_bill_pkg_discount records>.
1874 For package add-ons, is the base L<FS::part_pkg|package definition>, otherwise
1875 no different than pkgpart.
1877 =item precommit_hooks
1879 This option is filled in by the method rather than controlling its operation.
1880 It is an arrayref. Anonymous coderefs will be added to the arrayref. They
1881 need to be called before completing the billing operation. For calc_recur
1884 =item increment_next_bill
1886 Increment the next bill date (boolean, for calc_recur). Typically true except
1887 for particular situations.
1891 This option is filled in by the method rather than controlling its operation.
1892 It indicates a deferred setup fee that is billed at calc_recur time (see price
1893 plan option prorate_defer_bill).
1897 Note: Don't calculate prices when not actually billing the package. For that,
1898 see the L</base_setup|base_setup> and L</base_recur|base_recur> methods.
1903 sub calc_setup { die 'no calc_setup for '. shift->plan. "\n"; }
1904 sub calc_recur { die 'no calc_recur for '. shift->plan. "\n"; }
1906 =item calc_remain CUST_PKG [ OPTION => VALUE ... ]
1908 Calculates and returns the remaining value to be credited upon package
1909 suspension, change, or cancellation, if enabled.
1911 Options are passed as a list of keys and values. Available options:
1917 Override for the current time
1919 =item cust_credit_source_bill_pkg
1921 This option is filled in by the method rather than controlling its operation.
1923 L<FS::cust_credit_source_bill_pkg|FS::cust_credit_source_bill_pkg> records will
1924 be added to the arrayref indicating the specific line items and amounts which
1925 are the source of this remaining credit.
1929 Note: Don't calculate prices when not actually suspending or cancelling the
1934 #fallback that returns 0 for old legacy packages with no plan
1935 sub calc_remain { 0; }
1937 =item calc_units CUST_PKG
1939 This returns the number of provisioned svc_phone records, or, of the package
1940 count_available_phones option is set, the number available to be provisioned
1946 my($self, $cust_pkg ) = @_;
1948 if ( $self->option('count_available_phones', 1)) {
1949 foreach my $pkg_svc ($cust_pkg->part_pkg->pkg_svc) {
1950 if ($pkg_svc->part_svc->svcdb eq 'svc_phone') { # svc_pbx?
1951 $count += $pkg_svc->quantity || 0;
1954 $count *= $cust_pkg->quantity;
1957 scalar(grep { $_->part_svc->svcdb eq 'svc_phone' } $cust_pkg->cust_svc);
1962 #fallback for everything not based on flat.pm
1963 sub recur_temporality { 'upcoming'; }
1965 =item calc_cancel START_DATE DETAILS_ARRAYREF OPTIONS_HASHREF
1967 Runs any necessary billing on cancellation: another recurring cycle for
1968 recur_temporailty 'preceding' pacakges with the bill_recur_on_cancel option
1969 set (calc_recur), or, any outstanding usage for pacakges with the
1970 bill_usage_on_cancel option set (calc_usage).
1974 #fallback for everything not based on flat.pm, doesn't do this yet (which is
1975 #okay, nothing of ours not based on flat.pm does usage-on-cancel billing
1976 sub calc_cancel { 0; }
1978 #fallback for everything except bulk.pm
1979 sub hide_svc_detail { 0; }
1981 #fallback for packages that can't/won't summarize usage
1982 sub sum_usage { 0; }
1984 =item recur_cost_permonth CUST_PKG
1986 recur_cost divided by freq (only supported for monthly and longer frequencies)
1990 sub recur_cost_permonth {
1991 my($self, $cust_pkg) = @_;
1992 return 0 unless $self->freq =~ /^\d+$/ && $self->freq > 0;
1993 sprintf('%.2f', ($self->recur_cost || 0) / $self->freq );
1996 =item cust_bill_pkg_recur CUST_PKG
1998 Actual recurring charge for the specified customer package from customer's most
2003 sub cust_bill_pkg_recur {
2004 my($self, $cust_pkg) = @_;
2005 my $cust_bill_pkg = qsearchs({
2006 'table' => 'cust_bill_pkg',
2007 'addl_from' => 'LEFT JOIN cust_bill USING ( invnum )',
2008 'hashref' => { 'pkgnum' => $cust_pkg->pkgnum,
2009 'recur' => { op=>'>', value=>'0' },
2011 'order_by' => 'ORDER BY cust_bill._date DESC,
2012 cust_bill_pkg.sdate DESC
2015 }) or return 0; #die "use cust_bill_pkg_recur credits with once_perinv condition";
2016 $cust_bill_pkg->recur;
2019 =item unit_setup CUST_PKG
2021 Returns the setup fee for one unit of the package.
2026 my ($self, $cust_pkg) = @_;
2027 $self->option('setup_fee') || 0;
2032 unit_setup minus setup_cost
2038 $self->unit_setup(@_) - ($self->setup_cost || 0);
2041 =item recur_margin_permonth
2043 base_recur_permonth minus recur_cost_permonth
2047 sub recur_margin_permonth {
2049 $self->base_recur_permonth(@_) - $self->recur_cost_permonth(@_);
2052 =item intro_end PACKAGE
2054 Takes an L<FS::cust_pkg> object. If this plan has an introductory rate,
2055 returns the expected date the intro period will end. If there is no intro
2064 =item format OPTION DATA
2066 Returns data formatted according to the function 'format' described
2067 in the plan info. Returns DATA if no such function exists.
2072 my ($self, $option, $data) = (shift, shift, shift);
2073 if (exists($plans{$self->plan}->{fields}->{$option}{format})) {
2074 &{$plans{$self->plan}->{fields}->{$option}{format}}($data);
2080 =item parse OPTION DATA
2082 Returns data parsed according to the function 'parse' described
2083 in the plan info. Returns DATA if no such function exists.
2088 my ($self, $option, $data) = (shift, shift, shift);
2089 if (exists($plans{$self->plan}->{fields}->{$option}{parse})) {
2090 &{$plans{$self->plan}->{fields}->{$option}{parse}}($data);
2100 =head1 CLASS METHODS
2108 # Used by FS::Upgrade to migrate to a new database.
2110 sub _upgrade_data { # class method
2111 my($class, %opts) = @_;
2113 warn "[FS::part_pkg] upgrading $class\n" if $DEBUG;
2115 my @part_pkg = qsearch({
2116 'table' => 'part_pkg',
2117 'extra_sql' => "WHERE ". join(' OR ',
2118 'plan IS NULL', "plan = '' ",
2122 foreach my $part_pkg (@part_pkg) {
2124 unless ( $part_pkg->plan ) {
2125 $part_pkg->plan('flat');
2132 # Convert RADIUS accounting usage metrics from megabytes to gigabytes
2134 my $upgrade = 'part_pkg_gigabyte_usage';
2135 if (!FS::upgrade_journal->is_done($upgrade)) {
2136 foreach my $part_pkg (qsearch('part_pkg',
2137 { plan => 'sqlradacct_hour' })
2140 my $pkgpart = $part_pkg->pkgpart;
2142 foreach my $opt (qsearch('part_pkg_option',
2143 { 'optionname' => { op => 'LIKE',
2144 value => 'recur_included_%',
2146 pkgpart => $pkgpart,
2149 next if $opt->optionname eq 'recur_included_hours'; # unfortunately named field
2150 next if $opt->optionvalue == 0;
2152 $opt->optionvalue($opt->optionvalue / 1024);
2154 my $error = $opt->replace;
2155 die $error if $error;
2158 foreach my $opt (qsearch('part_pkg_option',
2159 { 'optionname' => { op => 'LIKE',
2160 value => 'recur_%_charge',
2162 pkgpart => $pkgpart,
2164 $opt->optionvalue($opt->optionvalue * 1024);
2166 my $error = $opt->replace;
2167 die $error if $error;
2171 FS::upgrade_journal->set_done($upgrade);
2174 # the rest can be done asynchronously
2177 sub queueable_upgrade {
2178 # now upgrade to the explicit custom flag
2180 my $search = FS::Cursor->new({
2181 'table' => 'part_pkg',
2182 'hashref' => { disabled => 'Y', custom => '' },
2183 'extra_sql' => "AND comment LIKE '(CUSTOM) %'",
2187 while (my $part_pkg = $search->fetch) {
2188 my $new = new FS::part_pkg { $part_pkg->hash };
2190 my $comment = $part_pkg->comment;
2191 $comment =~ s/^\(CUSTOM\) //;
2192 $comment = '(none)' unless $comment =~ /\S/;
2193 $new->comment($comment);
2195 my $pkg_svc = { map { $_->svcpart => $_->quantity } $part_pkg->pkg_svc };
2196 my $primary = $part_pkg->svcpart;
2197 my $options = { $part_pkg->options };
2199 my $error = $new->replace( $part_pkg,
2200 'pkg_svc' => $pkg_svc,
2201 'primary_svc' => $primary,
2202 'options' => $options,
2205 warn "pkgpart#".$part_pkg->pkgpart.": $error\n";
2212 # set family_pkgpart on any packages that don't have it
2213 $search = FS::Cursor->new('part_pkg', { 'family_pkgpart' => '' });
2214 while (my $part_pkg = $search->fetch) {
2215 $part_pkg->set('family_pkgpart' => $part_pkg->pkgpart);
2216 my $error = $part_pkg->SUPER::replace;
2218 warn "pkgpart#".$part_pkg->pkgpart.": $error\n";
2225 my @part_pkg_option = qsearch('part_pkg_option',
2226 { 'optionname' => 'unused_credit',
2229 foreach my $old_opt (@part_pkg_option) {
2230 my $pkgpart = $old_opt->pkgpart;
2231 my $error = $old_opt->delete;
2232 die $error if $error;
2234 foreach (qw(unused_credit_cancel unused_credit_change)) {
2235 my $new_opt = new FS::part_pkg_option {
2236 'pkgpart' => $pkgpart,
2240 $error = $new_opt->insert;
2241 die $error if $error;
2245 # migrate use_disposition_taqua and use_disposition to disposition_in
2246 @part_pkg_option = qsearch('part_pkg_option',
2247 { 'optionname' => { op => 'LIKE',
2248 value => 'use_disposition%',
2252 my %newopts = map { $_->pkgpart => $_ }
2253 qsearch('part_pkg_option', { 'optionname' => 'disposition_in', } );
2254 foreach my $old_opt (@part_pkg_option) {
2255 my $pkgpart = $old_opt->pkgpart;
2256 my $newval = $old_opt->optionname eq 'use_disposition_taqua' ? '100'
2258 my $error = $old_opt->delete;
2259 die $error if $error;
2261 if ( exists($newopts{$pkgpart}) ) {
2262 my $opt = $newopts{$pkgpart};
2263 $opt->optionvalue($opt->optionvalue.",$newval");
2264 $error = $opt->replace;
2265 die $error if $error;
2267 my $new_opt = new FS::part_pkg_option {
2268 'pkgpart' => $pkgpart,
2269 'optionname' => 'disposition_in',
2270 'optionvalue' => $newval,
2272 $error = $new_opt->insert;
2273 die $error if $error;
2274 $newopts{$pkgpart} = $new_opt;
2278 # set any package with FCC voice lines to the "VoIP with broadband" category
2279 # for backward compatibility
2281 # recover from a bad upgrade bug
2282 my $upgrade = 'part_pkg_fcc_voip_class_FIX';
2283 if (!FS::upgrade_journal->is_done($upgrade)) {
2284 my $bad_upgrade = qsearchs('upgrade_journal',
2285 { upgrade => 'part_pkg_fcc_voip_class' }
2287 if ( $bad_upgrade ) {
2288 my $where = 'WHERE history_date <= '.$bad_upgrade->_date.
2289 ' AND history_date > '.($bad_upgrade->_date - 3600);
2290 my @h_part_pkg_option = map { FS::part_pkg_option->new($_->hashref) }
2293 'table' => 'h_part_pkg_option',
2295 'extra_sql' => "$where AND history_action = 'delete'",
2296 'order_by' => 'ORDER BY history_date ASC',
2298 my @h_pkg_svc = map { FS::pkg_svc->new($_->hashref) }
2301 'table' => 'h_pkg_svc',
2303 'extra_sql' => "$where AND history_action = 'replace_old'",
2304 'order_by' => 'ORDER BY history_date ASC',
2307 foreach my $deleted (@h_part_pkg_option, @h_pkg_svc) {
2308 my $pkgpart ||= $deleted->pkgpart;
2309 $opt{$pkgpart} ||= {
2315 if ( $deleted->isa('FS::part_pkg_option') ) {
2316 $opt{$pkgpart}{options}{ $deleted->optionname } = $deleted->optionvalue;
2318 my $svcpart = $deleted->svcpart;
2319 $opt{$pkgpart}{pkg_svc}{$svcpart} = $deleted->quantity;
2320 $opt{$pkgpart}{hidden_svc}{$svcpart} ||= $deleted->hidden;
2321 $opt{$pkgpart}{primary_svc} = $svcpart if $deleted->primary_svc;
2324 foreach my $pkgpart (keys %opt) {
2325 my $part_pkg = FS::part_pkg->by_key($pkgpart);
2326 my $error = $part_pkg->replace( $part_pkg->replace_old, $opt{$pkgpart} );
2328 die "error recovering damaged pkgpart $pkgpart:\n$error\n";
2331 } # $bad_upgrade exists
2332 else { # do the original upgrade, but correctly this time
2333 my @part_pkg = qsearch('part_pkg', {
2334 fcc_ds0s => { op => '>', value => 0 },
2335 fcc_voip_class => ''
2337 foreach my $part_pkg (@part_pkg) {
2338 $part_pkg->set(fcc_voip_class => 2);
2339 my @pkg_svc = $part_pkg->pkg_svc;
2340 my %quantity = map {$_->svcpart, $_->quantity} @pkg_svc;
2341 my %hidden = map {$_->svcpart, $_->hidden } @pkg_svc;
2342 my $error = $part_pkg->replace(
2343 $part_pkg->replace_old,
2344 options => { $part_pkg->options },
2345 pkg_svc => \%quantity,
2346 hidden_svc => \%hidden,
2347 primary_svc => ($part_pkg->svcpart || ''),
2349 die $error if $error;
2352 FS::upgrade_journal->set_done($upgrade);
2355 # migrate adjourn_months, expire_months, and contract_end_months to
2357 foreach my $field (qw(adjourn_months expire_months contract_end_months)) {
2358 foreach my $option (qsearch('part_pkg_option', { optionname => $field })) {
2359 my $part_pkg = $option->part_pkg;
2360 my $error = $option->delete;
2361 if ( $option->optionvalue and $part_pkg->get($field) eq '' ) {
2362 $part_pkg->set($field, $option->optionvalue);
2363 $error ||= $part_pkg->replace;
2365 die $error if $error;
2369 # remove custom flag from one-time charge packages that were accidentally
2371 $search = FS::Cursor->new({
2372 'table' => 'part_pkg',
2373 'hashref' => { 'freq' => '0',
2375 'family_pkgpart' => { op => '!=', value => '' },
2377 'addl_from' => ' JOIN
2378 (select pkgpart from cust_pkg group by pkgpart having count(*) = 1)
2379 AS singular_pkg USING (pkgpart)',
2381 my @fields = grep { $_ ne 'pkgpart'
2383 and $_ ne 'disabled' } FS::part_pkg->fields;
2384 PKGPART: while (my $part_pkg = $search->fetch) {
2385 # can't merge the package back into its parent (too late for that)
2386 # but we can remove the custom flag if it's not actually customized,
2387 # i.e. nothing has been changed.
2389 my $family_pkgpart = $part_pkg->family_pkgpart;
2390 next PKGPART if $family_pkgpart == $part_pkg->pkgpart;
2391 my $parent_pkg = FS::part_pkg->by_key($family_pkgpart);
2392 foreach my $field (@fields) {
2393 if ($part_pkg->get($field) ne $parent_pkg->get($field)) {
2397 # options have to be identical too
2398 # but links, FCC options, discount plans, and usage packages can't be
2399 # changed through the "modify charge" UI, so skip them
2400 my %newopt = $part_pkg->options;
2401 my %oldopt = $parent_pkg->options;
2402 OPTION: foreach my $option (keys %newopt) {
2403 if (delete $newopt{$option} ne delete $oldopt{$option}) {
2407 if (keys(%newopt) or keys(%oldopt)) {
2410 # okay, now replace it
2411 warn "Removing custom flag from part_pkg#".$part_pkg->pkgpart."\n";
2412 $part_pkg->set('custom', '');
2413 my $error = $part_pkg->replace;
2414 die $error if $error;
2420 =item curuser_pkgs_sql
2422 Returns an SQL fragment for searching for packages the current user can
2423 use, either via part_pkg.agentnum directly, or via agent type (see
2428 sub curuser_pkgs_sql {
2431 $class->_pkgs_sql( $FS::CurrentUser::CurrentUser->agentnums );
2435 =item agent_pkgs_sql AGENT | AGENTNUM, ...
2437 Returns an SQL fragment for searching for packages the provided agent or agents
2438 can use, either via part_pkg.agentnum directly, or via agent type (see
2443 sub agent_pkgs_sql {
2444 my $class = shift; #i'm a class method, not a sub (the question is... why??)
2445 my @agentnums = map { ref($_) ? $_->agentnum : $_ } @_;
2447 $class->_pkgs_sql(@agentnums); #is this why
2452 my( $class, @agentnums ) = @_;
2453 my $agentnums = join(',', @agentnums);
2457 ( agentnum IS NOT NULL AND agentnum IN ($agentnums) )
2458 OR ( agentnum IS NULL
2459 AND EXISTS ( SELECT 1
2461 LEFT JOIN agent_type USING ( typenum )
2462 LEFT JOIN agent AS typeagent USING ( typenum )
2463 WHERE type_pkgs.pkgpart = part_pkg.pkgpart
2464 AND typeagent.agentnum IN ($agentnums)
2472 =item join_options_sql
2474 Returns an SQL fragment for JOINing the part_pkg_option records for this
2475 package's setup_fee and recur_fee (as setup_option and recur_option,
2476 respectively). Useful for optimization.
2480 sub join_options_sql {
2483 LEFT JOIN part_pkg_option AS setup_option
2484 ON ( part_pkg.pkgpart = setup_option.pkgpart
2485 AND setup_option.optionname = 'setup_fee' )
2486 LEFT JOIN part_pkg_option AS recur_option
2487 ON ( part_pkg.pkgpart = recur_option.pkgpart
2488 AND recur_option.optionname = 'recur_fee' )
2502 #false laziness w/part_export & cdr
2504 foreach my $INC ( @INC ) {
2505 warn "globbing $INC/FS/part_pkg/[a-z]*.pm\n" if $DEBUG;
2506 foreach my $file ( glob("$INC/FS/part_pkg/[a-z]*.pm") ) {
2507 warn "attempting to load plan info from $file\n" if $DEBUG;
2508 $file =~ /\/(\w+)\.pm$/ or do {
2509 warn "unrecognized file in $INC/FS/part_pkg/: $file\n";
2513 my $info = eval "use FS::part_pkg::$mod; ".
2514 "\\%FS::part_pkg::$mod\::info;";
2516 die "error using FS::part_pkg::$mod (skipping): $@\n" if $@;
2519 unless ( keys %$info ) {
2520 warn "no %info hash found in FS::part_pkg::$mod, skipping\n";
2523 warn "got plan info from FS::part_pkg::$mod: $info\n" if $DEBUG;
2524 #if ( exists($info->{'disabled'}) && $info->{'disabled'} ) {
2525 # warn "skipping disabled plan FS::part_pkg::$mod" if $DEBUG;
2528 $info{$mod} = $info;
2529 $info->{'weight'} ||= 0; # quiet warnings
2533 # copy one level deep to allow replacement of fields and fieldorder
2534 tie %plans, 'Tie::IxHash',
2535 map { my %infohash = %{ $info{$_} };
2537 sort { $info{$a}->{'weight'} <=> $info{$b}->{'weight'} }
2540 # inheritance of plan options
2541 foreach my $name (keys(%info)) {
2542 if (exists($info{$name}->{'disabled'}) and $info{$name}->{'disabled'}) {
2543 warn "skipping disabled plan FS::part_pkg::$name" if $DEBUG;
2544 delete $plans{$name};
2547 my $parents = $info{$name}->{'inherit_fields'} || [];
2548 my (%fields, %field_exists, @fieldorder);
2549 foreach my $parent ($name, @$parents) {
2550 if ( !exists($info{$parent}) ) {
2551 warn "$name tried to inherit from nonexistent '$parent'\n";
2554 %fields = ( # avoid replacing existing fields
2555 %{ $info{$parent}->{'fields'} || {} },
2558 foreach (@{ $info{$parent}->{'fieldorder'} || [] }) {
2560 next if $field_exists{$_};
2561 $field_exists{$_} = 1;
2562 # allow inheritors to remove inherited fields from the fieldorder
2563 push @fieldorder, $_ if !exists($fields{$_}) or
2564 !exists($fields{$_}->{'disabled'});
2567 $plans{$name}->{'fields'} = \%fields;
2568 $plans{$name}->{'fieldorder'} = \@fieldorder;
2578 =head1 NEW PLAN CLASSES
2580 A module should be added in FS/FS/part_pkg/ Eventually, an example may be
2581 found in eg/plan_template.pm. Until then, it is suggested that you use the
2582 other modules in FS/FS/part_pkg/ as a guide.
2586 The delete method is unimplemented.
2588 setup and recur semantics are not yet defined (and are implemented in
2589 FS::cust_bill. hmm.). now they're deprecated and need to go.
2593 part_pkg_taxrate is Pg specific
2595 replace should be smarter about managing the related tables (options, pkg_svc)
2599 L<FS::Record>, L<FS::cust_pkg>, L<FS::type_pkgs>, L<FS::pkg_svc>, L<Safe>.
2600 schema.html from the base documentation.