optimize customer list, RT#20173
authorIvan Kohler <ivan@freeside.biz>
Thu, 24 Mar 2016 03:56:03 +0000 (20:56 -0700)
committerIvan Kohler <ivan@freeside.biz>
Thu, 24 Mar 2016 03:56:03 +0000 (20:56 -0700)
FS/FS/pkg_svc.pm

index b2dc870..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
 
@@ -132,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