X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fpkg_svc.pm;h=5c6070303e920c9ac6da69de425b3b74a83a3f88;hp=f79bb5e2ddd2c918b5128a0734bc8aa3f9ac5cd2;hb=HEAD;hpb=0fb307c305e4bc2c9c27dc25a3308beae3a4d33c diff --git a/FS/FS/pkg_svc.pm b/FS/FS/pkg_svc.pm index f79bb5e2d..5c6070303 100644 --- a/FS/FS/pkg_svc.pm +++ b/FS/FS/pkg_svc.pm @@ -1,12 +1,18 @@ package FS::pkg_svc; +use base qw(FS::Record); use strict; -use vars qw( @ISA ); use FS::Record qw( qsearchs ); -use FS::part_pkg; use FS::part_svc; -@ISA = qw( FS::Record ); +our $cache_enabled = 0; + +sub _simplecache { + my( $self, $hashref ) = @_; + if ( $cache_enabled && $hashref->{'svc'} ) { + $self->{'_svcpart'} = FS::part_svc->new($hashref); + } +} =head1 NAME @@ -52,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 @@ -112,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; @@ -130,13 +139,6 @@ sub check { Returns the FS::part_pkg object (see L). -=cut - -sub part_pkg { - my $self = shift; - qsearchs( 'part_pkg', { 'pkgpart' => $self->pkgpart } ); -} - =item part_svc Returns the FS::part_svc object (see L). @@ -145,6 +147,7 @@ Returns the FS::part_svc object (see L). sub part_svc { my $self = shift; + return $self->{_svcpart} if $self->{_svcpart}; qsearchs( 'part_svc', { 'svcpart' => $self->svcpart } ); }