From d4c01ecffef02ef160d8c367270324e3d6a1c75d Mon Sep 17 00:00:00 2001 From: jeff Date: Sun, 9 Aug 2009 22:47:57 +0000 Subject: [PATCH] don't bomb when the line item has no start date --- FS/FS/cust_bill_pkg.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/FS/FS/cust_bill_pkg.pm b/FS/FS/cust_bill_pkg.pm index abf021845..bb30f03cd 100644 --- a/FS/FS/cust_bill_pkg.pm +++ b/FS/FS/cust_bill_pkg.pm @@ -299,6 +299,7 @@ Returns the previous cust_bill_pkg for this package, if any. sub previous_cust_bill_pkg { my $self = shift; + return unless $self->sdate; qsearchs({ 'table' => 'cust_bill_pkg', 'hashref' => { 'pkgnum' => $self->pkgnum, -- 2.11.0