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