Bug 17600: Standardize our EXPORT_OK
[srvgit] / acqui / edifactmsgs.pl
index 20baa5f..179b234 100755 (executable)
 use Modern::Perl;
 
 use CGI;
+
+use C4::Auth qw( get_template_and_user );
+use C4::Output qw( output_html_with_http_headers );
 use Koha::Database;
-use C4::Koha;
-use C4::Auth;
-use C4::Output;
+use Koha::EDI qw( process_invoice );
 
 my $q = CGI->new;
 my ( $template, $loggedinuser, $cookie, $userflags ) = get_template_and_user(
@@ -30,9 +31,7 @@ my ( $template, $loggedinuser, $cookie, $userflags ) = get_template_and_user(
         template_name   => 'acqui/edifactmsgs.tt',
         query           => $q,
         type            => 'intranet',
-        authnotrequired => 0,
         flagsrequired   => { acquisition => 'edi_manage' },
-        debug           => 1,
     }
 );
 
@@ -45,6 +44,12 @@ if ( $cmd && $cmd eq 'delete' ) {
     $msg->update;
 }
 
+if ( $cmd && $cmd eq 'import' ) {
+    my $id  = $q->param('message_id');
+    my $invoice = $schema->resultset('EdifactMessage')->find($id);
+    process_invoice($invoice);
+}
+
 my @msgs = $schema->resultset('EdifactMessage')->search(
     {
         deleted => 0,