Bug 17698: (follow-up) Changing to Koha Objects style, adding circ sidebar
[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;
28 use C4::Output;
29 use C4::Biblio;
30 use C4::Items;
31 use C4::HoldsQueue qw(GetHoldsQueueItems);
32 use Koha::BiblioFrameworks;
33 use Koha::Checkouts;
34 use Koha::ItemTypes;
35
36 my $query = new CGI;
37 my ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user(
38     {
39         template_name   => "circ/view_holdsqueue.tt",
40         query           => $query,
41         type            => "intranet",
42         authnotrequired => 0,
43         flagsrequired   => { circulate => "circulate_remaining_permissions" },
44         debug           => 1,
45     }
46 );
47
48 my $params = $query->Vars;
49 my $run_report     = $params->{'run_report'};
50 my $branchlimit    = $params->{'branchlimit'};
51 my $itemtypeslimit = $params->{'itemtypeslimit'};
52
53 if ( $run_report ) {
54     # XXX GetHoldsQueueItems() does not support $itemtypeslimit!
55     my $items = GetHoldsQueueItems($branchlimit, $itemtypeslimit);
56     for my $item ( @$items ) {
57         $item->{patron} = Koha::Patrons->find( $item->{borrowernumber} );
58     }
59     $template->param(
60         branchlimit     => $branchlimit,
61         total      => scalar @$items,
62         itemsloop  => $items,
63         run_report => $run_report,
64     );
65 }
66
67 my $pending_checkout_notes = Koha::Checkouts->search({ noteseen => 0 })->count;
68 $template->param( pending_checkout_notes => $pending_checkout_notes );
69
70 # Checking if there is a Fast Cataloging Framework
71 $template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find( 'FA' );
72
73 # writing the template
74 output_html_with_http_headers $query, $cookie, $template->output;