Bug 13380: Add ORDER_CANCELLATION_REASON AV to all language files
[koha.git] / acqui / newordersuggestion.pl
index efc634b..839b4f4 100755 (executable)
@@ -91,13 +91,14 @@ can be equal to
 use strict;
 #use warnings; FIXME - Bug 2505
 
-use CGI;
+use CGI qw ( -utf8 );
 use C4::Auth;    # get_template_and_user
 use C4::Output;
 use C4::Suggestions;
-use C4::Bookseller qw/ GetBookSellerFromId /;
 use C4::Biblio;
 
+use Koha::Acquisition::Bookseller;
+
 my $input = new CGI;
 
 # getting the CGI params
@@ -116,10 +117,9 @@ $op = 'else' unless $op;
 my $dbh = C4::Context->dbh;
 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
     {
-        template_name   => "acqui/newordersuggestion.tmpl",
+        template_name   => "acqui/newordersuggestion.tt",
         type            => "intranet",
         query           => $input,
-        authnotrequired => 1,
         flagsrequired   => { acquisition => 'order_manage' },
     }
 );
@@ -129,19 +129,21 @@ if ( $op eq 'connectDuplicate' ) {
 }
 
 # getting all suggestions.
-my $suggestions_loop =
-        &SearchSuggestion( 
-                { managedby    => $borrowernumber, 
-                author                 => $author, 
-                title                  => $title, 
-                publishercode  => $publishercode,
-                STATUS        => 'ACCEPTED'});
-my $vendor = GetBookSellerFromId($booksellerid);
+my $suggestions_loop = SearchSuggestion(
+    {
+        author        => $author,
+        title         => $title,
+        publishercode => $publishercode,
+        STATUS        => 'ACCEPTED'
+    }
+);
+my $vendor = Koha::Acquisition::Bookseller->fetch({ id => $booksellerid });
 $template->param(
     suggestions_loop        => $suggestions_loop,
     basketno                => $basketno,
     booksellerid              => $booksellerid,
     name                                       => $vendor->{'name'},
+    loggedinuser            => $borrowernumber,
     "op_$op"                => 1,
 );