avoid passing non-xact editor's. just causes confusion
authorBill Erickson <berick@esilibrary.com>
Wed, 3 Oct 2012 15:41:13 +0000 (11:41 -0400)
committerBill Erickson <berick@esilibrary.com>
Wed, 3 Oct 2012 15:42:44 +0000 (11:42 -0400)
Signed-off-by: Bill Erickson <berick@esilibrary.com>
Open-ILS/src/perlmods/lib/OpenILS/Application/Acq/EDI.pm
Open-ILS/src/support-scripts/edi_fetcher.pl

index 3d8354a..1fd0639 100644 (file)
@@ -145,7 +145,7 @@ sub retrieve_core {
                 $logger->error("(S)FTP get($description) failed");
                 next;
             }
-            my $incoming = __PACKAGE__->process_retrieval($content, $remote_file, $server, $account->id, $e);
+            my $incoming = __PACKAGE__->process_retrieval($content, $remote_file, $server, $account->id);
 #           $server->delete(remote_file => $_);   # delete remote copies of saved message
             push @return, @$incoming;
         }
index 9d5f168..e4feb0f 100755 (executable)
@@ -122,8 +122,7 @@ if (@ARGV) {
             $content,
             "localhost:" . File::Spec->rel2abs($_),
             OpenILS::Application::Acq::EDI->remote_account($acct),
-            $acct,
-            $e
+            $acct
         );
     }
     exit;