Bug 16554: rewrite mandatory and sample data - de-DE
[koha.git] / circ / view_holdsqueue.pl
blobce632e6d9211ee48ad3fcf521073667ae1b81d2c
1 #!/usr/bin/perl
3 # This file is part of Koha.
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.
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.
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>.
19 =head1 view_holdsqueue
21 This script displays items in the tmp_holdsqueue table
23 =cut
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::Koha; # GetItemTypes
33 use C4::HoldsQueue qw(GetHoldsQueueItems);
35 my $query = new CGI;
36 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
38 template_name => "circ/view_holdsqueue.tt",
39 query => $query,
40 type => "intranet",
41 authnotrequired => 0,
42 flagsrequired => { circulate => "circulate_remaining_permissions" },
43 debug => 1,
47 my $params = $query->Vars;
48 my $run_report = $params->{'run_report'};
49 my $branchlimit = $params->{'branchlimit'};
50 my $itemtypeslimit = $params->{'itemtypeslimit'};
52 if ( $run_report ) {
53 # XXX GetHoldsQueueItems() does not support $itemtypeslimit!
54 my $items = GetHoldsQueueItems($branchlimit, $itemtypeslimit);
55 $template->param(
56 branchlimit => $branchlimit,
57 total => scalar @$items,
58 itemsloop => $items,
59 run_report => $run_report,
63 # getting all itemtypes
64 my $itemtypes = &GetItemTypes();
65 my @itemtypesloop;
66 foreach my $thisitemtype ( sort keys %$itemtypes ) {
67 push @itemtypesloop, {
68 value => $thisitemtype,
69 description => $itemtypes->{$thisitemtype}->{'description'},
73 $template->param(
74 itemtypeloop => \@itemtypesloop,
77 # writing the template
78 output_html_with_http_headers $query, $cookie, $template->output;