[freeside-commits] branch FREESIDE_4_BRANCH updated. 0e8bb4e9d89852127652a3264fb2d91b145980f9

Ivan ivan at 420.am
Wed Mar 23 20:56:06 PDT 2016


The branch, FREESIDE_4_BRANCH has been updated
       via  0e8bb4e9d89852127652a3264fb2d91b145980f9 (commit)
      from  79019df554d5c447da8b1df135b34d66a0cb69c6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 0e8bb4e9d89852127652a3264fb2d91b145980f9
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Wed Mar 23 20:56:04 2016 -0700

    optimize customer list, RT#20173

diff --git a/FS/FS/pkg_svc.pm b/FS/FS/pkg_svc.pm
index b2dc870..5c60703 100644
--- a/FS/FS/pkg_svc.pm
+++ b/FS/FS/pkg_svc.pm
@@ -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

-----------------------------------------------------------------------

Summary of changes:
 FS/FS/pkg_svc.pm |   19 +++++++++++++++++++
 1 file changed, 19 insertions(+)




More information about the freeside-commits mailing list