Bug 32437: Add Objects for ImportAuths
[koha-ffzg.git] / circ / on-site_checkouts.pl
index bcf78cc..41e9a87 100755 (executable)
 
 use Modern::Perl;
 
-use C4::Auth;
+use C4::Auth qw( get_template_and_user );
 use C4::Circulation qw( GetPendingOnSiteCheckouts );
-use C4::Output;
-use C4::Koha;
+use C4::Output qw( output_html_with_http_headers );
 use Koha::BiblioFrameworks;
-use Koha::Checkouts;
 
-my $cgi = new CGI;
+my $cgi = CGI->new;
 
 my ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user(
     {
         template_name   => "circ/on-site_checkouts.tt",
         query           => $cgi,
         type            => "intranet",
-        authnotrequired => 0,
         flagsrequired => {circulate => "circulate_remaining_permissions"},
     }
 );
@@ -40,12 +37,10 @@ my ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user(
 # Checking if there is a Fast Cataloging Framework
 $template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find( 'FA' );
 
-my $pending_checkout_notes = Koha::Checkouts->search({ noteseen => 0 })->count;
 my $pending_onsite_checkouts = C4::Circulation::GetPendingOnSiteCheckouts();
 
 $template->param(
     pending_onsite_checkouts => $pending_onsite_checkouts,
-    pending_onsite_notes     => $pending_onsite_notes,
 );
 
 output_html_with_http_headers $cgi, $cookie, $template->output;