Only complain, not die, if we can't find a svc_x record for an h_cust_svc record.
authorkhoff <khoff>
Tue, 2 Aug 2005 19:17:09 +0000 (19:17 +0000)
committerkhoff <khoff>
Tue, 2 Aug 2005 19:17:09 +0000 (19:17 +0000)
FS/FS/h_cust_svc.pm

index 718f2c7..af0bf60 100644 (file)
@@ -80,13 +80,15 @@ sub h_svc_x {
     "h_$svcdb",
     { 'svcnum' => $self->svcnum, },
     "FS::h_$svcdb"->sql_h_searchs(@_),
-  ) || $self->SUPER::svc_x
-    or die "no history ${svcdb}.svcnum for cust_svc.svcnum ". $self->svcnum;
+  ) || $self->SUPER::svc_x;
 
-  carp "Using $svcdb in place of missing h_${svcdb} record."
-   if ($svc_x->isa('FS::' . $svcdb) and $DEBUG);
-
-  return $svc_x;
+  if ($svc_x) {
+    carp "Using $svcdb in place of missing h_${svcdb} record."
+      if ($svc_x->isa('FS::' . $svcdb) and $DEBUG);
+    return $svc_x;
+  } else {
+    return '';
+  }
 
 }