Bug 26529: Remove warning
[koha.git] / circ / waitingreserves.pl
blob772477b62e755aa93683e62664927f66b814ec9f
1 #!/usr/bin/perl
3 # Copyright 2000-2002 Katipo Communications
4 # parts copyright 2010 BibLibre
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21 use Modern::Perl;
22 use CGI qw ( -utf8 );
23 use C4::Context;
24 use C4::Output;
25 use C4::Auth;
26 use C4::Circulation;
27 use C4::Members;
28 use C4::Biblio;
29 use C4::Items;
30 use Date::Calc qw(
31 Today
32 Add_Delta_Days
33 Date_to_Days
35 use C4::Reserves;
36 use C4::Koha;
37 use Koha::DateUtils;
38 use Koha::BiblioFrameworks;
39 use Koha::Items;
40 use Koha::ItemTypes;
41 use Koha::Patrons;
43 my $input = new CGI;
45 my $item = $input->param('itemnumber');
46 my $borrowernumber = $input->param('borrowernumber');
47 my $fbr = $input->param('fbr') || '';
48 my $tbr = $input->param('tbr') || '';
49 my $all_branches = $input->param('allbranches') || '';
50 my $cancelall = $input->param('cancelall');
51 my $tab = $input->param('tab');
53 my ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user(
55 template_name => "circ/waitingreserves.tt",
56 query => $input,
57 type => "intranet",
58 flagsrequired => { circulate => "circulate_remaining_permissions" },
59 debug => 1,
63 my $default = C4::Context->userenv->{'branch'};
65 my $transfer_when_cancel_all = C4::Context->preference('TransferWhenCancelAllWaitingHolds');
66 $template->param( TransferWhenCancelAllWaitingHolds => 1 ) if $transfer_when_cancel_all;
68 my @cancel_result;
69 # if we have a return from the form we cancel the holds
70 if ($item) {
71 my $res = cancel( $item, $borrowernumber, $fbr, $tbr );
72 push @cancel_result, $res if $res;
75 if ( C4::Context->preference('IndependentBranches') ) {
76 undef $all_branches;
77 } else {
78 $template->param( all_branches_link => '/cgi-bin/koha/circ/waitingreserves.pl' . '?allbranches=1' )
79 unless $all_branches;
81 $template->param( all_branches => 1 ) if $all_branches;
83 my (@reserve_loop, @over_loop);
84 # FIXME - Is priority => 0 useful? If yes it must be moved to waiting, otherwise we need to remove it from here.
85 my $holds = Koha::Holds->waiting->search({ priority => 0, ( $all_branches ? () : ( branchcode => $default ) ) }, { order_by => ['waitingdate'] });
87 # get reserves for the branch we are logged into, or for all branches
89 my $today = Date_to_Days(&Today);
91 while ( my $hold = $holds->next ) {
92 next unless ($hold->waitingdate && $hold->waitingdate ne '0000-00-00');
94 my ( $expire_year, $expire_month, $expire_day ) = split (/-/, $hold->expirationdate);
95 my $calcDate = Date_to_Days( $expire_year, $expire_month, $expire_day );
97 if ($today > $calcDate) {
98 if ($cancelall) {
99 my $res = cancel( $hold->item->itemnumber, $hold->borrowernumber, $hold->item->holdingbranch, $hold->item->homebranch, !$transfer_when_cancel_all );
100 push @cancel_result, $res if $res;
101 next;
102 } else {
103 push @over_loop, $hold;
105 }else{
106 push @reserve_loop, $hold;
111 $template->param(cancel_result => \@cancel_result) if @cancel_result;
113 $template->param(
114 reserveloop => \@reserve_loop,
115 reservecount => scalar @reserve_loop,
116 overloop => \@over_loop,
117 overcount => scalar @over_loop,
118 show_date => output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }),
119 tab => $tab,
122 # Checking if there is a Fast Cataloging Framework
123 $template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find( 'FA' );
125 if ($item && $tab eq 'holdsover' && !@cancel_result) {
126 print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl#holdsover");
127 } elsif ($cancelall) {
128 print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl");
129 } else {
130 output_html_with_http_headers $input, $cookie, $template->output;
133 exit;
135 sub cancel {
136 my ($item, $borrowernumber, $fbr, $tbr, $skip_transfers ) = @_;
138 my $transfer = $fbr ne $tbr; # XXX && !$nextreservinfo;
140 return if $transfer && $skip_transfers;
142 my ( $messages, $nextreservinfo ) = ModReserveCancelAll( $item, $borrowernumber );
144 # if the document is not in his homebranch location and there is not reservation after, we transfer it
145 if ($transfer && !$nextreservinfo) {
146 ModItemTransfer( $item, $fbr, $tbr, 'CancelReserve' );
148 # if we have a result
149 if ($nextreservinfo) {
150 my %res;
151 my $patron = Koha::Patrons->find( $nextreservinfo );
152 my $title = Koha::Items->find( $item )->biblio->title;
153 if ( $messages->{'transfert'} ) {
154 $res{messagetransfert} = $messages->{'transfert'};
155 $res{branchcode} = $messages->{'transfert'};
158 $res{message} = 1;
159 $res{nextreservnumber} = $nextreservinfo;
160 $res{nextreservsurname} = $patron->surname;
161 $res{nextreservfirstname} = $patron->firstname;
162 $res{nextreservitem} = $item;
163 $res{nextreservtitle} = $title;
164 $res{waiting} = $messages->{'waiting'} ? 1 : 0;
166 return \%res;
169 return;