diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-02-26 18:35:04 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-02-26 18:35:04 -0800 |
commit | 33043da94faf7538a568b4064a511d35b4c7caf5 (patch) | |
tree | d507c36f967ef6dd504a9e82f39a14f78b03540b | |
parent | 39fd1d46b323035c264f0cb12cf1d07c52cb0dad (diff) |
fix sales w/advertising source report for cust_bill_pkg missing cust_pkg, RT#27745
-rw-r--r-- | httemplate/search/cust_bill_pkg_referral.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/httemplate/search/cust_bill_pkg_referral.html b/httemplate/search/cust_bill_pkg_referral.html index c4dde32a0..a39fa57f6 100644 --- a/httemplate/search/cust_bill_pkg_referral.html +++ b/httemplate/search/cust_bill_pkg_referral.html @@ -41,8 +41,11 @@ 'classname', sub { # report_option my $cust_bill_pkg = shift; - my $pkgpart = $cust_bill_pkg->pkgpart_override - || $cust_bill_pkg->cust_pkg->pkgpart; + my $pkgpart = $cust_bill_pkg->pkgpart_override; + unless ( $pkgpart ) { + my $cust_pkg = $cust_bill_pkg->cust_pkg or return ''; + $pkgpart = $cust_pkg->pkgpart; + } if ( !exists($report_classes{$pkgpart}) ) { my $part_pkg = FS::part_pkg->by_key($pkgpart); my %opts = $part_pkg->options; |