Bug 18881: Remove dead code from view_holdsqueue.pl
[koha-equinox.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 strict;
26 use warnings;
27 use CGI qw ( -utf8 );
28 use C4::Auth;
29 use C4::Output;
30 use C4::Biblio;
31 use C4::Items;
32 use C4::HoldsQueue qw(GetHoldsQueueItems);
33 use Koha::BiblioFrameworks;
34
35 use Koha::ItemTypes;
36
37 my $query = new CGI;
38 my ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user(
39     {
40         template_name   => "circ/view_holdsqueue.tt",
41         query           => $query,
42         type            => "intranet",
43         authnotrequired => 0,
44         flagsrequired   => { circulate => "circulate_remaining_permissions" },
45         debug           => 1,
46     }
47 );
48
49 my $params = $query->Vars;
50 my $run_report     = $params->{'run_report'};
51 my $branchlimit    = $params->{'branchlimit'};
52 my $itemtypeslimit = $params->{'itemtypeslimit'};
53
54 if ( $run_report ) {
55     # XXX GetHoldsQueueItems() does not support $itemtypeslimit!
56     my $items = GetHoldsQueueItems($branchlimit, $itemtypeslimit);
57     $template->param(
58         branchlimit     => $branchlimit,
59         total      => scalar @$items,
60         itemsloop  => $items,
61         run_report => $run_report,
62     );
63 }
64
65 # getting all itemtypes
66 my $itemtypes = Koha::ItemTypes->search({}, {order_by => 'itemtype'});;
67 my @itemtypesloop;
68 while ( my $itemtype = $itemtypes->next ) {
69     push @itemtypesloop, {
70         value       => $itemtype->itemtype,
71     };
72 }
73
74 $template->param( # FIXME Could be improved passing the $itemtypes iterator directly to the template
75    itemtypeloop => \@itemtypesloop,
76 );
77
78 # Checking if there is a Fast Cataloging Framework
79 $template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find( 'FA' );
80
81 # writing the template
82 output_html_with_http_headers $query, $cookie, $template->output;