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>.
38 use Koha
::BiblioFrameworks
;
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",
59 flagsrequired
=> { circulate
=> "circulate_remaining_permissions" },
64 my $default = C4
::Context
->userenv->{'branch'};
66 my $transfer_when_cancel_all = C4
::Context
->preference('TransferWhenCancelAllWaitingHolds');
67 $template->param( TransferWhenCancelAllWaitingHolds
=> 1 ) if $transfer_when_cancel_all;
70 # if we have a return from the form we cancel the holds
72 my $res = cancel
( $item, $borrowernumber, $fbr, $tbr );
73 push @cancel_result, $res if $res;
76 if ( C4
::Context
->preference('IndependentBranches') ) {
79 $template->param( all_branches_link
=> '/cgi-bin/koha/circ/waitingreserves.pl' . '?allbranches=1' )
82 $template->param( all_branches
=> 1 ) if $all_branches;
84 my (@reservloop, @overloop);
85 my ($reservcount, $overcount);
86 # FIXME - Is priority => 0 useful? If yes it must be moved to waiting, otherwise we need to remove it from here.
87 my $holds = Koha
::Holds
->waiting->search({ priority
=> 0, ( $all_branches ?
() : ( branchcode
=> $default ) ) }, { order_by
=> ['waitingdate'] });
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 while ( my $hold = $holds->next ) {
94 next unless ($hold->waitingdate && $hold->waitingdate ne '0000-00-00');
96 my $item = $hold->item;
97 my $patron = $hold->borrower;
98 my $biblio = $item->biblio;
99 my $holdingbranch = $item->holdingbranch;
100 my $homebranch = $item->homebranch;
103 title
=> $biblio->title,
104 itemnumber
=> $item->itemnumber,
105 waitingdate
=> $hold->waitingdate,
106 reservedate
=> $hold->reservedate,
107 borrowernum
=> $patron->borrowernumber,
108 biblionumber
=> $biblio->biblionumber,
109 barcode
=> $item->barcode,
110 homebranch
=> $homebranch,
111 holdingbranch
=> $item->holdingbranch,
112 itemcallnumber
=> $item->itemcallnumber,
113 enumchron
=> $item->enumchron,
114 copynumber
=> $item->copynumber,
115 borrowername
=> $patron->surname, # FIXME Let's send $patron to the template
116 borrowerfirstname
=> $patron->firstname,
117 borrowerphone
=> $patron->phone,
120 my $itemtype = Koha
::ItemTypes
->find( $item->effective_itemtype );
121 my ( $expire_year, $expire_month, $expire_day ) = split (/-/, $hold->expirationdate);
122 my $calcDate = Date_to_Days
( $expire_year, $expire_month, $expire_day );
124 $getreserv{'itemtype'} = $itemtype->description; # FIXME Should not it be translated_description?
125 $getreserv{'subtitle'} = GetRecordValue
(
127 GetMarcBiblio
({ biblionumber
=> $biblio->biblionumber }),
128 $biblio->frameworkcode);
129 if ( $homebranch ne $holdingbranch ) {
130 $getreserv{'dotransfer'} = 1;
133 $getreserv{patron
} = $patron;
135 if ($today > $calcDate) {
137 my $res = cancel
( $item->itemnumber, $patron->borrowernumber, $holdingbranch, $homebranch, !$transfer_when_cancel_all );
138 push @cancel_result, $res if $res;
141 push @overloop, \
%getreserv;
145 push @reservloop, \
%getreserv;
151 $template->param(cancel_result
=> \
@cancel_result) if @cancel_result;
154 reserveloop
=> \
@reservloop,
155 reservecount
=> $reservcount,
156 overloop
=> \
@overloop,
157 overcount
=> $overcount,
158 show_date
=> output_pref
({ dt
=> dt_from_string
, dateformat
=> 'iso', dateonly
=> 1 }),
159 ReservesMaxPickUpDelay
=> $max_pickup_delay,
163 # Checking if there is a Fast Cataloging Framework
164 $template->param( fast_cataloging
=> 1 ) if Koha
::BiblioFrameworks
->find( 'FA' );
166 if ($item && $tab eq 'holdsover' && !@cancel_result) {
167 print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl#holdsover");
168 } elsif ($cancelall) {
169 print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl");
171 output_html_with_http_headers
$input, $cookie, $template->output;
177 my ($item, $borrowernumber, $fbr, $tbr, $skip_transfers ) = @_;
179 my $transfer = $fbr ne $tbr; # XXX && !$nextreservinfo;
181 return if $transfer && $skip_transfers;
183 my ( $messages, $nextreservinfo ) = ModReserveCancelAll
( $item, $borrowernumber );
185 # if the document is not in his homebranch location and there is not reservation after, we transfer it
186 if ($transfer && !$nextreservinfo) {
187 ModItemTransfer
( $item, $fbr, $tbr );
189 # if we have a result
190 if ($nextreservinfo) {
192 my $patron = Koha
::Patrons
->find( $nextreservinfo );
193 my $title = Koha
::Items
->find( $item )->biblio->title;
194 if ( $messages->{'transfert'} ) {
195 $res{messagetransfert
} = $messages->{'transfert'};
196 $res{branchcode
} = $messages->{'transfert'};
200 $res{nextreservnumber
} = $nextreservinfo;
201 $res{nextreservsurname
} = $patron->surname;
202 $res{nextreservfirstname
} = $patron->firstname;
203 $res{nextreservitem
} = $item;
204 $res{nextreservtitle
} = $title;
205 $res{waiting
} = $messages->{'waiting'} ?
1 : 0;