Bug 10418 - Correct template markup problems on course reserves add item page
[koha.git] / circ / circulation-home.pl
index 4ccb780..d4f5a2c 100755 (executable)
 # 
 
 use strict;
+#use warnings; FIXME - Bug 2505
 use CGI;
 use C4::Auth;
 use C4::Output;
 use C4::Context;
-
+use C4::Koha;
 
 my $query = new CGI;
-my ($template, $loggedinuser, $cookie)
+my ($template, $loggedinuser, $cookie, $flags)
 = get_template_and_user({template_name => "circ/circulation-home.tmpl",
                                query => $query,
                                type => "intranet",
                                authnotrequired => 0,
-                               flagsrequired => {circulate => 1},
+                               flagsrequired => {circulate => "circulate_remaining_permissions"},
                                });
 
+# Checking if there is a Fast Cataloging Framework
+my $fa = getframeworkinfo('FA');
+$template->param( fast_cataloging => 1 ) if (defined $fa);
+
+# Checking if the transfer page needs to be displayed
+$template->param( display_transfer => 1 ) if ( ($flags->{'superlibrarian'} == 1) || (C4::Context->preference("IndependentBranches") == 0) );
+
+
 output_html_with_http_headers $query, $cookie, $template->output;