Sort libraries by name in holds queue's select input.
[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 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/;
35
36 my $query = new CGI;
37 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
38     {
39         template_name   => "circ/view_holdsqueue.tmpl",
40         query           => $query,
41         type            => "intranet",
42         authnotrequired => 0,
43         flagsrequired   => { circulate => 1 },
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     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"),
61                  );
62 }
63
64 # getting all branches.
65 my $branches = GetBranches;
66 my $branch   = C4::Context->userenv->{"branchname"};
67 my @branchloop;
68 foreach my $thisbranch (sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} } keys %$branches ) {
69     my $selected = 1 if $thisbranch eq $branch;
70     my %row = (
71         value      => $thisbranch,
72         selected   => $selected,
73         branchname => $branches->{$thisbranch}->{'branchname'},
74     );
75     push @branchloop, \%row;
76 }
77
78 # getting all itemtypes
79 my $itemtypes = &GetItemTypes();
80 my @itemtypesloop;
81 foreach my $thisitemtype ( sort keys %$itemtypes ) {
82     my %row = (
83         value       => $thisitemtype,
84         description => $itemtypes->{$thisitemtype}->{'description'},
85     );
86     push @itemtypesloop, \%row;
87 }
88
89 $template->param( branchloop     => \@branchloop,
90                   itemtypeloop   => \@itemtypesloop,
91 );
92
93 sub GetHoldsQueueItems {
94         my ($branchlimit,$itemtypelimit) = @_;
95         my $dbh = C4::Context->dbh;
96
97     my @bind_params = ();
98         my $query = q/SELECT tmp_holdsqueue.*, biblio.author, items.ccode, items.location, items.enumchron, items.cn_sort
99                   FROM tmp_holdsqueue
100                   JOIN biblio USING (biblionumber)
101                   LEFT JOIN items USING (itemnumber)
102                 /;
103     if ($branchlimit) {
104             $query .=" WHERE holdingbranch = ?";
105         push @bind_params, $branchlimit;
106     }
107     $query .= " ORDER BY ccode, location, cn_sort, author, title, pickbranch, reservedate";
108         my $sth = $dbh->prepare($query);
109         $sth->execute(@bind_params);
110         my $items = [];
111     while ( my $row = $sth->fetchrow_hashref ){
112                 $row->{reservedate} = format_date($row->{reservedate});
113         push @$items, $row;
114     }
115     return $items;
116
117 }
118 # writing the template
119 output_html_with_http_headers $query, $cookie, $template->output;