Bug 19186: (QA follow-up) Insert syspref SelfCheckoutByLogin if missing
[koha.git] / circ / waitingreserves.pl
blob8527f2df9f0c11b3bbf2101b5dd4419b15955879
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 strict;
22 use warnings;
23 use CGI qw ( -utf8 );
24 use C4::Context;
25 use C4::Output;
26 use C4::Auth;
27 use C4::Circulation;
28 use C4::Members;
29 use C4::Biblio;
30 use C4::Items;
31 use Date::Calc qw(
32 Today
33 Add_Delta_Days
34 Date_to_Days
36 use C4::Reserves;
37 use C4::Koha;
38 use Koha::DateUtils;
39 use Koha::BiblioFrameworks;
40 use Koha::Items;
41 use Koha::ItemTypes;
42 use Koha::Patrons;
44 my $input = new CGI;
46 my $item = $input->param('itemnumber');
47 my $borrowernumber = $input->param('borrowernumber');
48 my $fbr = $input->param('fbr') || '';
49 my $tbr = $input->param('tbr') || '';
50 my $all_branches = $input->param('allbranches') || '';
51 my $cancelall = $input->param('cancelall');
52 my $tab = $input->param('tab');
54 my ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user(
56 template_name => "circ/waitingreserves.tt",
57 query => $input,
58 type => "intranet",
59 authnotrequired => 0,
60 flagsrequired => { circulate => "circulate_remaining_permissions" },
61 debug => 1,
65 my $default = C4::Context->userenv->{'branch'};
67 my $transfer_when_cancel_all = C4::Context->preference('TransferWhenCancelAllWaitingHolds');
68 $template->param( TransferWhenCancelAllWaitingHolds => 1 ) if $transfer_when_cancel_all;
70 my @cancel_result;
71 # if we have a return from the form we cancel the holds
72 if ($item) {
73 my $res = cancel( $item, $borrowernumber, $fbr, $tbr );
74 push @cancel_result, $res if $res;
77 if ( C4::Context->preference('IndependentBranches') ) {
78 undef $all_branches;
79 } else {
80 $template->param( all_branches_link => '/cgi-bin/koha/circ/waitingreserves.pl' . '?allbranches=1' )
81 unless $all_branches;
83 $template->param( all_branches => 1 ) if $all_branches;
85 my (@reservloop, @overloop);
86 my ($reservcount, $overcount);
87 my @getreserves = $all_branches ? GetReservesForBranch() : GetReservesForBranch($default);
88 # get reserves for the branch we are logged into, or for all branches
90 my $today = Date_to_Days(&Today);
91 my $max_pickup_delay = C4::Context->preference('ReservesMaxPickUpDelay');
93 foreach my $num (@getreserves) {
94 next unless ($num->{'waitingdate'} && $num->{'waitingdate'} ne '0000-00-00');
96 my $itemnumber = $num->{'itemnumber'};
97 my $item = Koha::Items->find( $itemnumber );
98 my $biblio = $item->biblio;
99 my $borrowernum = $num->{'borrowernumber'};
100 my $holdingbranch = $item->holdingbranch;
101 my $homebranch = $item->homebranch;
103 my %getreserv = (
104 itemnumber => $itemnumber,
105 borrowernum => $borrowernum,
108 my $patron = Koha::Patrons->find( $num->{borrowernumber} );
109 my $itemtype = Koha::ItemTypes->find( $item->effective_itemtype );
110 $getreserv{'waitingdate'} = $num->{'waitingdate'};
111 my ( $expire_year, $expire_month, $expire_day ) = split (/-/, $num->{'expirationdate'});
112 my $calcDate = Date_to_Days( $expire_year, $expire_month, $expire_day );
114 $getreserv{'itemtype'} = $itemtype->description; # FIXME Should not it be translated_description?
115 $getreserv{'title'} = $biblio->title;
116 $getreserv{'subtitle'} = GetRecordValue(
117 'subtitle',
118 GetMarcBiblio({ biblionumber => $biblio->biblionumber }),
119 $biblio->frameworkcode);
120 $getreserv{'biblionumber'} = $biblio->biblionumber;
121 $getreserv{'barcode'} = $item->barcode;
122 $getreserv{'homebranch'} = $homebranch;
123 $getreserv{'holdingbranch'} = $item->holdingbranch;
124 $getreserv{'itemcallnumber'} = $item->itemcallnumber;
125 $getreserv{'enumchron'} = $item->enumchron;
126 $getreserv{'copynumber'} = $item->copynumber;
127 if ( $homebranch ne $holdingbranch ) {
128 $getreserv{'dotransfer'} = 1;
130 $getreserv{'borrowername'} = $patron->surname;
131 $getreserv{'borrowerfirstname'} = $patron->firstname;
132 $getreserv{'borrowerphone'} = $patron->phone;
134 my $borEmail = GetFirstValidEmailAddress( $borrowernum );
136 if ( $borEmail ) {
137 $getreserv{'borrowermail'} = $borEmail;
140 if ($today > $calcDate) {
141 if ($cancelall) {
142 my $res = cancel( $itemnumber, $borrowernum, $holdingbranch, $homebranch, !$transfer_when_cancel_all );
143 push @cancel_result, $res if $res;
144 next;
145 } else {
146 push @overloop, \%getreserv;
147 $overcount++;
149 }else{
150 push @reservloop, \%getreserv;
151 $reservcount++;
156 $template->param(cancel_result => \@cancel_result) if @cancel_result;
157 $template->param(
158 reserveloop => \@reservloop,
159 reservecount => $reservcount,
160 overloop => \@overloop,
161 overcount => $overcount,
162 show_date => output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }),
163 ReservesMaxPickUpDelay => $max_pickup_delay,
164 tab => $tab,
167 # Checking if there is a Fast Cataloging Framework
168 $template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find( 'FA' );
170 if ($item && $tab eq 'holdsover' && !@cancel_result) {
171 print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl#holdsover");
172 } elsif ($cancelall) {
173 print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl");
174 } else {
175 output_html_with_http_headers $input, $cookie, $template->output;
178 exit;
180 sub cancel {
181 my ($item, $borrowernumber, $fbr, $tbr, $skip_transfers ) = @_;
183 my $transfer = $fbr ne $tbr; # XXX && !$nextreservinfo;
185 return if $transfer && $skip_transfers;
187 my ( $messages, $nextreservinfo ) = ModReserveCancelAll( $item, $borrowernumber );
189 # if the document is not in his homebranch location and there is not reservation after, we transfer it
190 if ($transfer && !$nextreservinfo) {
191 ModItemTransfer( $item, $fbr, $tbr );
193 # if we have a result
194 if ($nextreservinfo) {
195 my %res;
196 my $patron = Koha::Patrons->find( $nextreservinfo );
197 my $title = Koha::Items->find( $item )->biblio->title;
198 if ( $messages->{'transfert'} ) {
199 $res{messagetransfert} = $messages->{'transfert'};
200 $res{branchcode} = $messages->{'transfert'};
203 $res{message} = 1;
204 $res{nextreservnumber} = $nextreservinfo;
205 $res{nextreservsurname} = $patron->surname;
206 $res{nextreservfirstname} = $patron->firstname;
207 $res{nextreservitem} = $item;
208 $res{nextreservtitle} = $title;
209 $res{waiting} = $messages->{'waiting'} ? 1 : 0;
211 return \%res;
214 return;