fix quotation view, fallout from RT#13971
authorIvan Kohler <ivan@freeside.biz>
Wed, 26 Feb 2014 21:24:24 +0000 (13:24 -0800)
committerIvan Kohler <ivan@freeside.biz>
Wed, 26 Feb 2014 21:24:24 +0000 (13:24 -0800)
FS/FS/quotation_pkg.pm

index c73f857..c98e0f9 100644 (file)
@@ -2,6 +2,8 @@ package FS::quotation_pkg;
 use base qw( FS::TemplateItem_Mixin FS::Record );
 
 use strict;
+use FS::Record qw( qsearchs ); #qsearch
+use FS::part_pkg;
 use FS::quotation_pkg_discount; #so its loaded when TemplateItem_Mixin needs it
 
 =head1 NAME
@@ -126,6 +128,13 @@ sub check {
   $self->SUPER::check;
 }
 
+#it looks redundant with a v4.x+ auto-generated method, but need to override
+# FS::TemplateItem_Mixin's version
+sub part_pkg {
+  my $self = shift;
+  qsearchs('part_pkg', { 'pkgpart' => $self->pkgpart } );
+}
+
 sub desc {
   my $self = shift;
   $self->part_pkg->pkg;