3 # This file is part of Koha.
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.
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.
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>.
33 # if opacreadinghistory is disabled, leave immediately
34 unless ( C4
::Context
->preference('OPACHoldsHistory') ) {
35 print $query->redirect("/cgi-bin/koha/errors/404.pl");
39 my ( $template, $patron_id, $cookie ) = get_template_and_user
(
41 template_name
=> "opac-holdshistory.tt",
47 my $patron = Koha
::Patrons
->find($patron_id);
49 my $sort = $query->param('sort');
50 $sort = 'reservedate' unless $sort;
52 my $unlimit = $query->param('unlimit');
54 prefetch
=> ['biblio', 'item'],
58 $ops->{rows
} = 50 unless $unlimit;
60 my $holds = Koha
::Holds
->search({
61 borrowernumber
=> $patron_id
64 my $old_holds = Koha
::Old
::Holds
->search({
65 borrowernumber
=> $patron_id
68 while (my $hold = $holds->next) {
69 push @all_holds, $hold;
72 while (my $hold = $old_holds->next) {
73 push @all_holds, $hold;
76 if($sort eq 'reservedate') {
77 @all_holds = sort {$b->$sort cmp $a->$sort} @all_holds;
79 my ($obj, $col) = split /\./, $sort;
80 @all_holds = sort { ( $a->$obj && $a->$obj->$col || '' ) cmp ( $b->$obj && $b->$obj->$col || '' ) } @all_holds;
84 @all_holds = splice(@all_holds, 0, 50);
88 holdshistoryview
=> 1,
95 output_html_with_http_headers
$query, $cookie, $template->output, undef, { force_no_caching
=> 1 };