fix TeleAPI import (what kind of crack was Christopher smoking that he couldn't fix...
[freeside.git] / FS / FS / pkg_svc.pm
index 4efffd9..5c60703 100644 (file)
@@ -2,6 +2,17 @@ package FS::pkg_svc;
 use base qw(FS::Record);
 
 use strict;
+use FS::Record qw( qsearchs );
+use FS::part_svc;
+
+our $cache_enabled = 0;
+
+sub _simplecache {
+  my( $self, $hashref ) = @_;
+  if ( $cache_enabled && $hashref->{'svc'} ) {
+    $self->{'_svcpart'} = FS::part_svc->new($hashref);
+  }
+}
 
 =head1 NAME
 
@@ -47,6 +58,8 @@ definition includes
 
 =item hidden - 'Y' to hide this service on invoices, null otherwise.
 
+=item provision_hold - 'Y' to release package hold when all services marked with this are provisioned
+
 =back
 
 =head1 METHODS
@@ -107,6 +120,7 @@ sub check {
     || $self->ut_number('svcpart')
     || $self->ut_number('quantity')
     || $self->ut_enum('hidden', [ '', 'Y' ] )
+    || $self->ut_flag('provision_hold')
   ;
   return $error if $error;
 
@@ -129,6 +143,14 @@ Returns the FS::part_pkg object (see L<FS::part_pkg>).
 
 Returns the FS::part_svc object (see L<FS::part_svc>).
 
+=cut
+
+sub part_svc {
+  my $self = shift;
+  return $self->{_svcpart} if $self->{_svcpart};
+  qsearchs( 'part_svc', { 'svcpart' => $self->svcpart } );
+}
+
 =back
 
 =head1 BUGS