Bug 30477: Add new UNIMARC installer translation files
[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 my $ccodeslimit = $params->{'ccodeslimit'};
48 my $locationslimit = $params->{'locationslimit'};
49
50 if ( $run_report ) {
51     my $items = GetHoldsQueueItems({
52         branchlimit => $branchlimit,
53         itemtypeslimit => $itemtypeslimit,
54         ccodeslimit => $ccodeslimit,
55         locationslimit => $locationslimit
56     });
57     for my $item ( @$items ) {
58         $item->{patron} = Koha::Patrons->find( $item->{borrowernumber} );
59     }
60     $template->param(
61         branchlimit     => $branchlimit,
62         itemtypeslimit     => $itemtypeslimit,
63         ccodeslimit     => $ccodeslimit,
64         locationslimit     => $locationslimit,
65         total      => scalar @$items,
66         itemsloop  => $items,
67         run_report => $run_report,
68     );
69 }
70
71 # Checking if there is a Fast Cataloging Framework
72 $template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find( 'FA' );
73
74 # writing the template
75 output_html_with_http_headers $query, $cookie, $template->output;