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