From fa978560e3b0473728ebf2fb32625765465c230a Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Thu, 26 Jun 2014 15:47:22 -0700 Subject: NENA2 E911 export and batch-oriented exports in general, #14049 --- FS/FS/cust_svc.pm | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'FS/FS/cust_svc.pm') diff --git a/FS/FS/cust_svc.pm b/FS/FS/cust_svc.pm index b01ed84..8fc929f 100644 --- a/FS/FS/cust_svc.pm +++ b/FS/FS/cust_svc.pm @@ -322,14 +322,24 @@ sub replace { my $error = $new->svc_x->export('pkg_change', $new->cust_pkg, $old->cust_pkg, ); + if ( $error ) { $dbh->rollback if $oldAutoCommit; return $error if $error; } - } + } # if pkgnum is changing #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 ) { + $error ||= $new->svc_x->export('relocate', + $new->cust_pkg->cust_location, + $old->cust_pkg->cust_location, + ); + } + if ( $error ) { $dbh->rollback if $oldAutoCommit; return $error if $error; -- cgit v1.1