fix error linking legacy services, RT#81818
authorIvan Kohler <ivan@freeside.biz>
Wed, 28 Nov 2018 21:17:53 +0000 (13:17 -0800)
committerIvan Kohler <ivan@freeside.biz>
Wed, 28 Nov 2018 21:17:53 +0000 (13:17 -0800)
FS/FS/cust_svc.pm

index e64862f..d4d8684 100644 (file)
@@ -401,8 +401,10 @@ sub replace {
   #my $error = $new->SUPER::replace($old, @_);
   my $error = $new->SUPER::replace($old);
 
-  #trigger a relocate export on location changes
-  if ( $new->cust_pkg->locationnum != $old->cust_pkg->locationnum ) {
+  #trigger a relocate export on location changes (NENA2 and Northern 911 export)
+  my $old_pkg = $old->cust_pkg;
+  my $new_pkg = $new->cust_pkg;
+  if ( $old_pkg && $new_pkg && $new_pkg->locationnum != $old_pkg->locationnum ) {
     my $svc_x = $new->svc_x;
     if ( $svc_x->locationnum ) {
       if ( $svc_x->locationnum == $old->cust_pkg->locationnum ) {