Final update to holds queue work: adds link to holds queue
[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 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.
9 #
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.
13 #
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
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 CGI;
27 use C4::Auth;
28 use C4::Output;
29 use C4::Biblio;
30 use C4::Items;
31 use C4::Koha;                  # GetItemTypes
32 use C4::Branch; # GetBranches
33 use C4::Dates qw/format_date/;
34
35 my $query = new CGI;
36 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
37     {
38         template_name   => "circ/view_holdsqueue.tmpl",
39         query           => $query,
40         type            => "intranet",
41         authnotrequired => 0,
42         flagsrequired   => { circulation => 1 },
43         debug           => 1,
44     }
45 );
46
47 my $params = $query->Vars;
48 my $run_report = $params->{'run_report'};
49 my $branchlimit = $params->{'branchlimit'};
50 my $itemtypeslimit = $params->{'itemtypeslimit'};
51
52 if ( $run_report ) {
53     my $items = GetHoldsQueueItems( $branchlimit,$itemtypeslimit );
54     $template->param(
55                                          branch    => $branchlimit,
56                      total     => scalar @$items,
57                      itemsloop => $items,
58                      run_report => $run_report
59                  );
60 }
61
62 # getting all branches.
63 my $branches = GetBranches;
64 my $branch   = C4::Context->userenv->{"branchname"};
65 my @branchloop;
66 foreach my $thisbranch ( keys %$branches ) {
67     my $selected = 1 if $thisbranch eq $branch;
68     my %row = (
69         value      => $thisbranch,
70         selected   => $selected,
71         branchname => $branches->{$thisbranch}->{'branchname'},
72     );
73     push @branchloop, \%row;
74 }
75
76 # getting all itemtypes
77 my $itemtypes = &GetItemTypes();
78 my @itemtypesloop;
79 foreach my $thisitemtype ( sort keys %$itemtypes ) {
80     my %row = (
81         value       => $thisitemtype,
82         description => $itemtypes->{$thisitemtype}->{'description'},
83     );
84     push @itemtypesloop, \%row;
85 }
86
87 $template->param( branchloop     => \@branchloop,
88                   itemtypeloop   => \@itemtypesloop,
89 );
90
91 sub GetHoldsQueueItems {
92         my ($branchlimit,$itemtypelimit) = @_;
93         my $dbh = C4::Context->dbh;
94         my $query = "SELECT * FROM tmp_holdsqueue";
95         $query.=" WHERE holdingbranch = \"$branchlimit\"" if $branchlimit;
96         my $sth = $dbh->prepare($query);
97         $sth->execute();
98         my $items = [];
99     while ( my $row = $sth->fetchrow_hashref ){
100                 $row->{reservedate} = format_date($row->{reservedate});
101         push @$items, $row;
102     }
103     return $items;
104
105 }
106 # writing the template
107 output_html_with_http_headers $query, $cookie, $template->output;