X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=circ%2Fon-site_checkouts.pl;h=41e9a877bdd2a0b098d9192a28c0a16d88b6c232;hb=140493faf71b2545a41032b1d0db5d11f1db5f65;hp=2ae52f74812a361db7ebe4af1feca44d197b488f;hpb=e887ae544dd610a5c2f20ce326b0410aae587c81;p=koha-ffzg.git diff --git a/circ/on-site_checkouts.pl b/circ/on-site_checkouts.pl index 2ae52f7481..41e9a877bd 100755 --- a/circ/on-site_checkouts.pl +++ b/circ/on-site_checkouts.pl @@ -18,22 +18,25 @@ use Modern::Perl; -use C4::Auth; +use C4::Auth qw( get_template_and_user ); use C4::Circulation qw( GetPendingOnSiteCheckouts ); -use C4::Output; +use C4::Output qw( output_html_with_http_headers ); +use Koha::BiblioFrameworks; -my $cgi = new CGI; +my $cgi = CGI->new; -my ( $template, $loggedinuser, $cookie ) = get_template_and_user( +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"}, } ); +# Checking if there is a Fast Cataloging Framework +$template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find( 'FA' ); + my $pending_onsite_checkouts = C4::Circulation::GetPendingOnSiteCheckouts(); $template->param(