X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fcust_bill_pkg_display.pm;h=e9da18deced0df7038906a6ce0e7a14dbf46a069;hb=3d9e77688a45840e3185fe0570eb56ed914f6d23;hp=cf70cbd8f63d957fb1d876ac842f627a4740e7f1;hpb=9f775eac8a4d3d308313cd22ae094d98fe9edf3f;p=freeside.git diff --git a/FS/FS/cust_bill_pkg_display.pm b/FS/FS/cust_bill_pkg_display.pm index cf70cbd8f..e9da18dec 100644 --- a/FS/FS/cust_bill_pkg_display.pm +++ b/FS/FS/cust_bill_pkg_display.pm @@ -54,8 +54,11 @@ sub section { } else { my $section = $self->getfield('section'); unless ($section) { - my $part_pkg = $self->cust_bill_pkg->part_pkg; - $section = $part_pkg->categoryname if $part_pkg; + my $cust_bill_pkg = $self->cust_bill_pkg; + if ( $cust_bill_pkg->pkgnum > 0 ) { + my $part_pkg = $cust_bill_pkg->part_pkg; + $section = $part_pkg->categoryname if $part_pkg; + } } $section; }