3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA 02111-1307 USA
19 =head1 view_holdsqueue
21 This script displays items in the tmp_holdsqueue table
32 use C4
::Koha
; # GetItemTypes
33 use C4
::Branch
; # GetBranches
34 use C4
::HoldsQueue
qw(GetHoldsQueueItems);
37 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
39 template_name
=> "circ/view_holdsqueue.tt",
43 flagsrequired
=> { circulate
=> "circulate_remaining_permissions" },
48 my $params = $query->Vars;
49 my $run_report = $params->{'run_report'};
50 my $branchlimit = $params->{'branchlimit'};
51 my $itemtypeslimit = $params->{'itemtypeslimit'};
54 # XXX GetHoldsQueueItems() does not support $itemtypeslimit!
55 my $items = GetHoldsQueueItems
($branchlimit, $itemtypeslimit);
57 branchlimit
=> $branchlimit,
58 total
=> scalar @
$items,
60 run_report
=> $run_report,
64 # getting all itemtypes
65 my $itemtypes = &GetItemTypes
();
67 foreach my $thisitemtype ( sort keys %$itemtypes ) {
68 push @itemtypesloop, {
69 value
=> $thisitemtype,
70 description
=> $itemtypes->{$thisitemtype}->{'description'},
75 branchloop
=> GetBranchesLoop
(C4
::Context
->userenv->{'branch'}),
76 itemtypeloop
=> \
@itemtypesloop,
79 # writing the template
80 output_html_with_http_headers
$query, $cookie, $template->output;