don't bomb when the line item has no start date
authorjeff <jeff>
Sun, 9 Aug 2009 22:47:57 +0000 (22:47 +0000)
committerjeff <jeff>
Sun, 9 Aug 2009 22:47:57 +0000 (22:47 +0000)
FS/FS/cust_bill_pkg.pm

index abf0218..bb30f03 100644 (file)
@@ -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,