Bug 26352: Switch from using call() to call_recursive()
[koha.git] / circ / view_holdsqueue.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18
19 =head1 view_holdsqueue
20
21 This script displays items in the tmp_holdsqueue table
22
23 =cut
24
25 use Modern::Perl;
26 use CGI qw ( -utf8 );
27 use C4::Auth qw( get_template_and_user );
28 use C4::Output qw( output_html_with_http_headers );
29 use C4::HoldsQueue qw( GetHoldsQueueItems );
30 use Koha::BiblioFrameworks;
31 use Koha::ItemTypes;
32
33 my $query = CGI->new;
34 my ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user(
35     {
36         template_name   => "circ/view_holdsqueue.tt",
37         query           => $query,
38         type            => "intranet",
39         flagsrequired   => { circulate => "circulate_remaining_permissions" },
40     }
41 );
42
43 my $params = $query->Vars;
44 my $run_report     = $params->{'run_report'};
45 my $branchlimit    = $params->{'branchlimit'};
46 my $itemtypeslimit = $params->{'itemtypeslimit'};
47
48 if ( $run_report ) {
49     # XXX GetHoldsQueueItems() does not support $itemtypeslimit!
50     my $items = GetHoldsQueueItems($branchlimit, $itemtypeslimit);
51     for my $item ( @$items ) {
52         $item->{patron} = Koha::Patrons->find( $item->{borrowernumber} );
53     }
54     $template->param(
55         branchlimit     => $branchlimit,
56         total      => scalar @$items,
57         itemsloop  => $items,
58         run_report => $run_report,
59     );
60 }
61
62 # Checking if there is a Fast Cataloging Framework
63 $template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find( 'FA' );
64
65 # writing the template
66 output_html_with_http_headers $query, $cookie, $template->output;