Bug 8307: QA Followup for finishreceive.pl
[koha.git] / circ / circulation-home.pl
index e4aef3b..d10829f 100755 (executable)
@@ -25,7 +25,7 @@ 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",
@@ -35,7 +35,11 @@ my ($template, $loggedinuser, $cookie)
 
 # Checking if there is a Fast Cataloging Framework
 my $fa = getframeworkinfo('FA');
-$template->param({ fast_cataloging => 1 }) if (defined $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) );
+$template->{'VARS'}->{'AllowOfflineCirculation'} = C4::Context->preference('AllowOfflineCirculation');
 
 
 output_html_with_http_headers $query, $cookie, $template->output;