Bug 3921 - Add Intranet MARC21 XSL file based on OPAC one
[koha.git] / circ / view_holdsqueue.pl
blob668bdd15e0adcc4db7c41ba592af119a7e0edfbb
1 #!/usr/bin/perl
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
8 # version.
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
23 =cut
25 use strict;
26 use warnings;
27 use CGI;
28 use C4::Auth;
29 use C4::Output;
30 use C4::Biblio;
31 use C4::Items;
32 use C4::Koha; # GetItemTypes
33 use C4::Branch; # GetBranches
34 use C4::Dates qw/format_date/;
36 my $query = new CGI;
37 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
39 template_name => "circ/view_holdsqueue.tmpl",
40 query => $query,
41 type => "intranet",
42 authnotrequired => 0,
43 flagsrequired => { circulate => "circulate_remaining_permissions" },
44 debug => 1,
48 my $params = $query->Vars;
49 my $run_report = $params->{'run_report'};
50 my $branchlimit = $params->{'branchlimit'};
51 my $itemtypeslimit = $params->{'itemtypeslimit'};
53 if ( $run_report ) {
54 my $items = GetHoldsQueueItems($branchlimit, $itemtypeslimit);
55 $template->param(
56 branch => $branchlimit,
57 total => scalar @$items,
58 itemsloop => $items,
59 run_report => $run_report,
60 dateformat => C4::Context->preference("dateformat"),
64 # getting all itemtypes
65 my $itemtypes = &GetItemTypes();
66 my @itemtypesloop;
67 foreach my $thisitemtype ( sort keys %$itemtypes ) {
68 push @itemtypesloop, {
69 value => $thisitemtype,
70 description => $itemtypes->{$thisitemtype}->{'description'},
74 $template->param(
75 branchloop => GetBranchesLoop(C4::Context->userenv->{'branch'}),
76 itemtypeloop => \@itemtypesloop,
79 sub GetHoldsQueueItems {
80 my ($branchlimit,$itemtypelimit) = @_;
81 my $dbh = C4::Context->dbh;
83 my @bind_params = ();
84 my $query = q/SELECT tmp_holdsqueue.*, biblio.author, items.ccode, items.location, items.enumchron, items.cn_sort, biblioitems.publishercode,biblio.copyrightdate,biblioitems.publicationyear,biblioitems.pages,biblioitems.size,biblioitems.publicationyear,biblioitems.isbn
85 FROM tmp_holdsqueue
86 JOIN biblio USING (biblionumber)
87 LEFT JOIN biblioitems USING (biblionumber)
88 LEFT JOIN items USING ( itemnumber)
90 if ($branchlimit) {
91 $query .=" WHERE tmp_holdsqueue.holdingbranch = ?";
92 push @bind_params, $branchlimit;
94 $query .= " ORDER BY ccode, location, cn_sort, author, title, pickbranch, reservedate";
95 my $sth = $dbh->prepare($query);
96 $sth->execute(@bind_params);
97 my $items = [];
98 while ( my $row = $sth->fetchrow_hashref ){
99 $row->{reservedate} = format_date($row->{reservedate});
100 push @$items, $row;
102 return $items;
104 # writing the template
105 output_html_with_http_headers $query, $cookie, $template->output;