Bug 24840: Replace DateTime->now with dt_from_string
[koha.git] / circ / returns.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #           2006 SAN-OP
5 #           2007-2010 BibLibre, Paul POULAIN
6 #           2010 Catalyst IT
7 #           2011 PTFS-Europe Ltd.
8 #
9 # This file is part of Koha.
10 #
11 # Koha is free software; you can redistribute it and/or modify it
12 # under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 3 of the License, or
14 # (at your option) any later version.
15 #
16 # Koha is distributed in the hope that it will be useful, but
17 # WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with Koha; if not, see <http://www.gnu.org/licenses>.
23
24 =head1 returns.pl
25
26 script to execute returns of books
27
28 =cut
29
30 use Modern::Perl;
31
32 # FIXME There are weird things going on with $patron and $borrowernumber in this script
33
34 use CGI qw ( -utf8 );
35 use DateTime;
36
37 use C4::Auth qw/:DEFAULT get_session/;
38 use C4::Output;
39 use C4::Circulation;
40 use C4::Reserves;
41 use C4::Biblio;
42 use C4::Circulation;
43 use C4::Context;
44 use C4::Items;
45 use C4::Koha;   # FIXME : is it still useful ?
46 use C4::Members::Messaging;
47 use C4::Members;
48 use C4::Output;
49 use C4::Reserves;
50 use C4::RotatingCollections;
51 use Koha::AuthorisedValues;
52 use Koha::BiblioFrameworks;
53 use Koha::Calendar;
54 use Koha::Checkouts;
55 use Koha::DateUtils;
56 use Koha::Holds;
57 use Koha::Items;
58 use Koha::Patrons;
59
60 my $query = new CGI;
61
62 #getting the template
63 my ( $template, $librarian, $cookie, $flags ) = get_template_and_user(
64     {
65         template_name   => "circ/returns.tt",
66         query           => $query,
67         type            => "intranet",
68         authnotrequired => 0,
69         flagsrequired   => { circulate => "circulate_remaining_permissions" },
70     }
71 );
72
73 my $sessionID = $query->cookie("CGISESSID");
74 my $session = get_session($sessionID);
75
76 # Print a reserve slip on this page
77 if ( $query->param('print_slip') ) {
78     $template->param(
79         print_slip     => 1,
80         borrowernumber => scalar $query->param('borrowernumber'), # FIXME We should send a Koha::Patron and raise an error if not exist.
81         biblionumber   => scalar $query->param('biblionumber'),
82         itemnumber     => scalar $query->param('itemnumber'),
83     );
84 }
85
86 #####################
87 #Global vars
88 my $userenv = C4::Context->userenv;
89 my $userenv_branch = $userenv->{'branch'} // '';
90 my $forgivemanualholdsexpire = $query->param('forgivemanualholdsexpire');
91
92 my $overduecharges = (C4::Context->preference('finesMode') && C4::Context->preference('finesMode') ne 'off');
93
94 # Set up the item stack ....
95 my %returneditems;
96 my %riduedate;
97 my %riborrowernumber;
98 my @inputloop;
99 foreach ( $query->param ) {
100     my $counter;
101     if (/ri-(\d*)/) {
102         $counter = $1;
103         if ($counter > 20) {
104             next;
105         }
106     }
107     else {
108         next;
109     }
110
111     my %input;
112     my $barcode        = $query->param("ri-$counter");
113     my $duedate        = $query->param("dd-$counter");
114     my $borrowernumber = $query->param("bn-$counter");
115     $counter++;
116
117     # decode barcode    ## Didn't we already decode them before passing them back last time??
118     $barcode =~ s/^\s*|\s*$//g; # remove leading/trailing whitespace
119     $barcode = barcodedecode($barcode) if(C4::Context->preference('itemBarcodeInputFilter'));
120
121     ######################
122     #Are these lines still useful ?
123     $returneditems{$counter}    = $barcode;
124     $riduedate{$counter}        = $duedate;
125     $riborrowernumber{$counter} = $borrowernumber;
126
127     #######################
128     $input{counter}        = $counter;
129     $input{barcode}        = $barcode;
130     $input{duedate}        = $duedate;
131     $input{borrowernumber} = $borrowernumber;
132     push( @inputloop, \%input );
133 }
134
135 ############
136 # Deal with the requests....
137
138 if ($query->param('WT-itemNumber')){
139         updateWrongTransfer ($query->param('WT-itemNumber'),$query->param('WT-waitingAt'),$query->param('WT-From'));
140 }
141
142 if ( $query->param('reserve_id') ) {
143     my $itemnumber     = $query->param('itemnumber');
144     my $borrowernumber = $query->param('borrowernumber');
145     my $reserve_id     = $query->param('reserve_id');
146     my $diffBranchReturned = $query->param('diffBranch');
147     my $cancel_reserve = $query->param('cancel_reserve');
148     # fix up item type for display
149     my $item = Koha::Items->find( $itemnumber );
150     my $biblio = $item->biblio;
151
152     if ( $cancel_reserve ) {
153         my $hold = Koha::Holds->find( $reserve_id );
154         if ( $hold ) {
155             $hold->cancel( { charge_cancel_fee => !$forgivemanualholdsexpire } );
156         } # FIXME else?
157     } else {
158         my $diffBranchSend = ($userenv_branch ne $diffBranchReturned) ? $diffBranchReturned : undef;
159         # diffBranchSend tells ModReserveAffect whether document is expected in this library or not,
160         # i.e., whether to apply waiting status
161         ModReserveAffect( $itemnumber, $borrowernumber, $diffBranchSend, $reserve_id );
162     }
163 #   check if we have other reserves for this document, if we have a return send the message of transfer
164     my ( $messages, $nextreservinfo ) = GetOtherReserves($itemnumber);
165
166     my $patron = Koha::Patrons->find( $nextreservinfo );
167     my $name   = $patron ? $patron->surname . ", " . $patron->title . " " . $patron->firstname : '';
168     if ( $messages->{'transfert'} ) {
169         $template->param(
170             itemtitle      => $biblio->title,
171             itemnumber     => $item->itemnumber,
172             itembiblionumber => $biblio->biblionumber,
173             iteminfo       => $biblio->author,
174             name           => $name,
175             patron         => $patron,
176             diffbranch     => 1,
177         );
178     }
179 }
180
181 my $borrower;
182 my $returned = 0;
183 my $messages;
184 my $issue;
185 my $itemnumber;
186 my $barcode     = $query->param('barcode');
187 my $exemptfine  = $query->param('exemptfine');
188 if (
189   $exemptfine &&
190   !C4::Auth::haspermission(C4::Context->userenv->{'id'}, {'updatecharges' => 'writeoff'})
191 ) {
192     # silently prevent unauthorized operator from forgiving overdue
193     # fines by manually tweaking form parameters
194     undef $exemptfine;
195 }
196 my $dropboxmode = $query->param('dropboxmode');
197 my $dotransfer  = $query->param('dotransfer');
198 my $canceltransfer = $query->param('canceltransfer');
199 my $dest = $query->param('dest');
200 #dropbox: get last open day (today - 1)
201 my $dropboxdate = Koha::Checkouts::calculate_dropbox_date();
202
203 my $return_date_override = $query->param('return_date_override');
204 my $return_date_override_dt;
205 my $return_date_override_remember =
206   $query->param('return_date_override_remember');
207 if ($return_date_override) {
208     if ( C4::Context->preference('SpecifyReturnDate') ) {
209         $return_date_override_dt = eval {dt_from_string( $return_date_override ) };
210         if ( $return_date_override_dt ) {
211             # note that we've overriden the return date
212             $template->param( return_date_was_overriden => 1);
213             # Save the original format if we are remembering for this series
214             $template->param(
215                 return_date_override          => $return_date_override,
216                 return_date_override_remember => 1
217             ) if ($return_date_override_remember);
218
219             $return_date_override =
220               DateTime::Format::MySQL->format_datetime( $return_date_override_dt );
221         }
222     }
223     else {
224         $return_date_override = q{};
225     }
226 }
227
228 if ($dotransfer){
229 # An item has been returned to a branch other than the homebranch, and the librarian has chosen to initiate a transfer
230     my $transferitem = $query->param('transferitem');
231     my $tobranch     = $query->param('tobranch');
232     my $trigger      = $query->param('trigger');
233     ModItemTransfer($transferitem, $userenv_branch, $tobranch, $trigger);
234 }
235
236 if ($canceltransfer){
237     $itemnumber=$query->param('itemnumber');
238     DeleteTransfer($itemnumber);
239     if($dest eq "ttr"){
240         print $query->redirect("/cgi-bin/koha/circ/transferstoreceive.pl");
241         exit;
242     } else {
243         $template->param( transfercancelled => 1);
244     }
245 }
246
247 # actually return book and prepare item table.....
248 my $returnbranch;
249 if ($barcode) {
250     $barcode =~ s/^\s*|\s*$//g; # remove leading/trailing whitespace
251     $barcode = barcodedecode($barcode) if C4::Context->preference('itemBarcodeInputFilter');
252     my $item = Koha::Items->find({ barcode => $barcode });
253
254     if ( $item ) {
255         $itemnumber = $item->itemnumber;
256         # Check if we should display a checkin message, based on the the item
257         # type of the checked in item
258         my $itemtype = Koha::ItemTypes->find( $item->effective_itemtype );
259         if ( $itemtype && $itemtype->checkinmsg ) {
260             $template->param(
261                 checkinmsg     => $itemtype->checkinmsg,
262                 checkinmsgtype => $itemtype->checkinmsgtype,
263             );
264         }
265
266         # make sure return branch respects home branch circulation rules, default to homebranch
267         my $hbr = GetBranchItemRule($item->homebranch, $itemtype ? $itemtype->itemtype : undef )->{'returnbranch'} || "homebranch";
268         $returnbranch = $hbr ne 'noreturn' ? $item->$hbr : $userenv_branch; # can be noreturn, homebranch or holdingbranch
269
270         my $materials = $item->materials;
271         my $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => '', kohafield =>'items.materials', authorised_value => $materials });
272         $materials = $descriptions->{lib} // $materials;
273
274         my $checkout = $item->checkout;
275         my $biblio   = $item->biblio;
276         $template->param(
277             title            => $biblio->title,
278             homebranch       => $item->homebranch,
279             holdingbranch    => $item->holdingbranch,
280             returnbranch     => $returnbranch,
281             author           => $biblio->author,
282             itembarcode      => $item->barcode,
283             itemtype         => $item->effective_itemtype,
284             ccode            => $item->ccode,
285             itembiblionumber => $biblio->biblionumber,
286             biblionumber     => $biblio->biblionumber,
287             additional_materials => $materials,
288             issue            => $checkout,
289         );
290     } # FIXME else we should not call AddReturn but set BadBarcode directly instead
291
292     my %input = (
293         counter => 0,
294         first   => 1,
295         barcode => $barcode,
296     );
297
298     my $return_date = $dropboxmode ? $dropboxdate : $return_date_override_dt;
299
300     # do the return
301     ( $returned, $messages, $issue, $borrower ) =
302       AddReturn( $barcode, $userenv_branch, $exemptfine, $return_date );
303
304     if ($returned) {
305         my $time_now = dt_from_string()->truncate( to => 'minute');
306         my $date_due_dt = dt_from_string( $issue->date_due, 'sql' );
307         my $duedate = $date_due_dt->strftime('%Y-%m-%d %H:%M');
308         $returneditems{0}      = $barcode;
309         $riborrowernumber{0}   = $borrower->{'borrowernumber'};
310         $riduedate{0}          = $duedate;
311         $input{borrowernumber} = $borrower->{'borrowernumber'};
312         $input{duedate}        = $duedate;
313         unless ( $dropboxmode ) {
314             $input{return_overdue} = 1 if (DateTime->compare($date_due_dt, dt_from_string()) == -1);
315         } else {
316             $input{return_overdue} = 1 if (DateTime->compare($date_due_dt, $dropboxdate) == -1);
317         }
318         push( @inputloop, \%input );
319
320         if ( C4::Context->preference("FineNotifyAtCheckin") ) {
321             my $patron = Koha::Patrons->find( $borrower->{borrowernumber} );
322             my $balance = $patron->account->balance;
323
324             if ($balance > 0) {
325                 $template->param( fines => sprintf("%.2f", $balance) );
326                 $template->param( fineborrowernumber => $borrower->{'borrowernumber'} );
327             }
328         }
329
330         if (C4::Context->preference("WaitingNotifyAtCheckin") ) {
331             #Check for waiting holds
332             my $patron = Koha::Patrons->find( $borrower->{borrowernumber} );
333             my $waiting_holds = $patron->holds->search({ found => 'W', branchcode => $userenv_branch })->count;
334             if ($waiting_holds > 0) {
335                 $template->param(
336                     waiting_holds       => $waiting_holds,
337                     holdsborrowernumber => $borrower->{'borrowernumber'},
338                     holdsfirstname => $borrower->{'firstname'},
339                     holdssurname => $borrower->{'surname'},
340                 );
341             }
342         }
343     } elsif ( C4::Context->preference('ShowAllCheckins') and !$messages->{'BadBarcode'} ) {
344         $input{duedate}   = 0;
345         $returneditems{0} = $barcode;
346         $riduedate{0}     = 0;
347         push( @inputloop, \%input );
348     }
349     $template->param( privacy => $borrower->{privacy} );
350 }
351 $template->param( inputloop => \@inputloop );
352
353 my $found    = 0;
354 my $waiting  = 0;
355 my $reserved = 0;
356
357 # new op dev : we check if the document must be returned to his homebranch directly,
358 #  if the document is transferred, we have warning message .
359
360 if ( $messages->{'WasTransfered'} ) {
361     $template->param(
362         found          => 1,
363         transfer       => 1,
364         itemnumber     => $itemnumber,
365     );
366 }
367
368 if ( $messages->{'NeedsTransfer'} ){
369     $template->param(
370         found          => 1,
371         needstransfer  => $messages->{'NeedsTransfer'},
372         trigger        => $messages->{'TransferTrigger'},
373         itemnumber     => $itemnumber,
374     );
375 }
376
377 if ( $messages->{'Wrongbranch'} ){
378     $template->param(
379         wrongbranch => 1,
380         rightbranch => $messages->{'Wrongbranch'}->{'Rightbranch'},
381     );
382 }
383
384 # case of wrong transfert, if the document wasn't transferred to the right library (according to branchtransfer (tobranch) BDD)
385
386 if ( $messages->{'WrongTransfer'} and not $messages->{'WasTransfered'}) {
387     $template->param(
388         WrongTransfer  => 1,
389         TransferWaitingAt => $messages->{'WrongTransfer'},
390         WrongTransferItem => $messages->{'WrongTransferItem'},
391         itemnumber => $itemnumber,
392     );
393
394     my $reserve    = $messages->{'ResFound'};
395     if ( $reserve ) {
396         my $patron = Koha::Patrons->find( $reserve->{'borrowernumber'} );
397         my $name = $patron->surname . ", " . $patron->title . " " . $patron->firstname;
398         $template->param(
399             patron => $patron,
400         );
401     }
402     $template->param(
403         wtransfertFrom  => $userenv_branch,
404     );
405 }
406
407 #
408 # reserve found and item arrived at the expected branch
409 #
410 if ( $messages->{'ResFound'}) {
411     my $reserve    = $messages->{'ResFound'};
412     my $patron = Koha::Patrons->find( $reserve->{borrowernumber} );
413     my $holdmsgpreferences =  C4::Members::Messaging::GetMessagingPreferences( { borrowernumber => $reserve->{'borrowernumber'}, message_name   => 'Hold_Filled' } );
414     my $branchCheck = ( $userenv_branch eq $reserve->{branchcode} );
415     if ( $reserve->{'ResFound'} eq "Reserved" && C4::Context->preference('HoldsAutoFill') ) {
416         my $item = Koha::Items->find( $itemnumber );
417         my $biblio = $item->biblio;
418
419         my $diffBranchSend = !$branchCheck ? $reserve->{branchcode} : undef;
420         ModReserveAffect( $reserve->{itemnumber}, $reserve->{borrowernumber}, $diffBranchSend, $reserve->{reserve_id} );
421         my ( $messages, $nextreservinfo ) = GetOtherReserves($reserve->{itemnumber});
422
423         my $patron = Koha::Patrons->find( $nextreservinfo );
424
425         $template->param(
426             hold_auto_filled => 1,
427             print_slip       => C4::Context->preference('HoldsAutoFillPrintSlip'),
428             patron           => $patron,
429             borrowernumber   => $patron->id,
430             biblionumber     => $biblio->id,
431         );
432
433         if ( $messages->{'transfert'} ) {
434             $template->param(
435                 itemtitle      => $biblio->title,
436                 itemnumber     => $item->itemnumber,
437                 itembiblionumber => $biblio->biblionumber,
438                 iteminfo       => $biblio->author,
439                 diffbranch     => 1,
440             );
441         }
442     }
443     elsif ( $reserve->{'ResFound'} eq "Waiting" or $reserve->{'ResFound'} eq "Reserved" ) {
444         if ( $reserve->{'ResFound'} eq "Waiting" ) {
445             $template->param(
446                 waiting      => $branchCheck ? 1 : undef,
447             );
448         } elsif ( $reserve->{'ResFound'} eq "Reserved" ) {
449             $template->param(
450                 intransit    => $branchCheck ? undef : 1,
451                 transfertodo => $branchCheck ? undef : 1,
452                 reserve_id   => $reserve->{reserve_id},
453                 reserved     => 1,
454             );
455         }
456
457     } # else { ; }  # error?
458
459     # same params for Waiting or Reserved
460     $template->param(
461         found          => 1,
462         patron         => $patron,
463         barcode        => $barcode,
464         destbranch     => $reserve->{'branchcode'},
465         itemnumber     => $reserve->{'itemnumber'},
466         reservenotes   => $reserve->{'reservenotes'},
467         reserve_id     => $reserve->{reserve_id},
468         bormessagepref => $holdmsgpreferences->{'transports'},
469     );
470 }
471
472 # Error Messages
473 my @errmsgloop;
474 foreach my $code ( keys %$messages ) {
475     my %err;
476     my $exit_required_p = 0;
477     if ( $code eq 'BadBarcode' ) {
478         $err{badbarcode} = 1;
479         $err{msg}        = $messages->{'BadBarcode'};
480     }
481     elsif ( $code eq 'NotIssued' ) {
482         $err{notissued} = 1;
483         $err{msg} = '';
484     }
485     elsif ( $code eq 'LocalUse' ) {
486         $err{localuse} = 1;
487     }
488     elsif ( $code eq 'WasLost' ) {
489         $err{waslost} = 1;
490         $exit_required_p = 1 if C4::Context->preference("BlockReturnOfLostItems");
491     }
492     elsif ( $code eq 'LostItemFeeRefunded' ) {
493         $template->param( LostItemFeeRefunded => 1 );
494     }
495     elsif ( $code eq 'ResFound' ) {
496         ;    # FIXME... anything to do here?
497     }
498     elsif ( $code eq 'WasReturned' ) {
499         ;    # FIXME... anything to do here?
500     }
501     elsif ( $code eq 'WasTransfered' ) {
502         ;    # FIXME... anything to do here?
503     }
504     elsif ( $code eq 'withdrawn' ) {
505         $err{withdrawn} = 1;
506         $exit_required_p = 1 if C4::Context->preference("BlockReturnOfWithdrawnItems");
507     }
508     elsif ( $code eq 'WrongTransfer' ) {
509         ;    # FIXME... anything to do here?
510     }
511     elsif ( $code eq 'WrongTransferItem' ) {
512         ;    # FIXME... anything to do here?
513     }
514     elsif ( $code eq 'NeedsTransfer' ) {
515     }
516     elsif ( $code eq 'Wrongbranch' ) {
517     }
518     elsif ( $code eq 'Debarred' ) {
519         $err{debarred}            = $messages->{'Debarred'};
520         $err{debarcardnumber}     = $borrower->{cardnumber};
521         $err{debarborrowernumber} = $borrower->{borrowernumber};
522         $err{debarname}           = "$borrower->{firstname} $borrower->{surname}";
523     }
524     elsif ( $code eq 'PrevDebarred' ) {
525         $err{prevdebarred}        = $messages->{'PrevDebarred'};
526     }
527     elsif ( $code eq 'ForeverDebarred' ) {
528         $err{foreverdebarred}        = $messages->{'ForeverDebarred'};
529     }
530     elsif ( $code eq 'ItemLocationUpdated' ) {
531         $err{ItemLocationUpdated} = $messages->{ItemLocationUpdated};
532     }
533     elsif ( $code eq 'NotForLoanStatusUpdated' ) {
534         $err{NotForLoanStatusUpdated} = $messages->{NotForLoanStatusUpdated};
535     }
536     elsif ( $code eq 'DataCorrupted' ) {
537         $err{data_corrupted} = 1;
538     }
539     elsif ( $code eq 'ReturnClaims' ) {
540         $template->param( ReturnClaims => $messages->{ReturnClaims} );
541     } else {
542         die "Unknown error code $code";    # note we need all the (empty) elsif's above, or we die.
543         # This forces the issue of staying in sync w/ Circulation.pm
544     }
545     if (%err) {
546         push( @errmsgloop, \%err );
547     }
548     last if $exit_required_p;
549 }
550 $template->param( errmsgloop => \@errmsgloop );
551
552 #set up so only the last 8 returned items display (make for faster loading pages)
553 my $returned_counter = ( C4::Context->preference('numReturnedItemsToShow') ) ? C4::Context->preference('numReturnedItemsToShow') : 8;
554 my $count = 0;
555 my @riloop;
556 my $shelflocations =
557   { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => '', kohafield => 'items.location' } ) };
558 foreach ( sort { $a <=> $b } keys %returneditems ) {
559     my %ri;
560     if ( $count++ < $returned_counter ) {
561         my $bar_code = $returneditems{$_};
562         if ($riduedate{$_}) {
563             my $duedate = dt_from_string( $riduedate{$_}, 'sql');
564             $ri{year}  = $duedate->year();
565             $ri{month} = $duedate->month();
566             $ri{day}   = $duedate->day();
567             $ri{hour}   = $duedate->hour();
568             $ri{minute}   = $duedate->minute();
569             $ri{duedate} = output_pref($duedate);
570             my $patron = Koha::Patrons->find( $riborrowernumber{$_} );
571             unless ( $dropboxmode ) {
572                 $ri{return_overdue} = 1 if (DateTime->compare($duedate, dt_from_string()) == -1);
573             } else {
574                 $ri{return_overdue} = 1 if (DateTime->compare($duedate, $dropboxdate) == -1);
575             }
576             $ri{patron} = $patron,
577             $ri{borissuescount} = $patron->checkouts->count;
578         }
579         else {
580             $ri{borrowernumber} = $riborrowernumber{$_};
581         }
582
583         my $item = Koha::Items->find({ barcode => $bar_code });
584         next unless $item; # FIXME The item has been deleted in the meantime,
585                            # we could handle that better displaying a message in the template
586
587         my $biblio = $item->biblio;
588         # FIXME pass $item to the template and we are done here...
589         $ri{itembiblionumber}    = $biblio->biblionumber;
590         $ri{itemtitle}           = $biblio->title;
591         $ri{subtitle}            = $biblio->subtitle;
592         $ri{part_name}           = $biblio->part_name;
593         $ri{part_number}         = $biblio->part_number;
594         $ri{itemauthor}          = $biblio->author;
595         $ri{itemcallnumber}      = $item->itemcallnumber;
596         $ri{dateaccessioned}     = $item->dateaccessioned;
597         $ri{recordtype}          = $biblio->itemtype;
598         $ri{itemtype}            = $item->itype;
599         $ri{itemnote}            = $item->itemnotes;
600         $ri{itemnotes_nonpublic} = $item->itemnotes_nonpublic;
601         $ri{ccode}               = $item->ccode;
602         $ri{enumchron}           = $item->enumchron;
603         $ri{itemnumber}          = $item->itemnumber;
604         $ri{barcode}             = $bar_code;
605         $ri{homebranch}          = $item->homebranch;
606         $ri{holdingbranch}       = $item->holdingbranch;
607
608         $ri{location} = $item->location;
609         my $shelfcode = $ri{'location'};
610         $ri{'location'} = $shelflocations->{$shelfcode} if ( defined( $shelfcode ) && defined($shelflocations) && exists( $shelflocations->{$shelfcode} ) );
611
612     }
613     else {
614         last;
615     }
616     push @riloop, \%ri;
617 }
618
619 $template->param(
620     riloop         => \@riloop,
621     errmsgloop     => \@errmsgloop,
622     exemptfine     => $exemptfine,
623     dropboxmode    => $dropboxmode,
624     dropboxdate    => $dropboxdate,
625     forgivemanualholdsexpire => $forgivemanualholdsexpire,
626     overduecharges => $overduecharges,
627     AudioAlerts        => C4::Context->preference("AudioAlerts"),
628 );
629
630 if ( $barcode ) {
631     my $item_from_barcode = Koha::Items->find({barcode => $barcode }); # How many times do we fetch this item?!?
632     if ( $item_from_barcode ) {
633         $itemnumber = $item_from_barcode->itemnumber;
634         my ( $holdingBranch, $collectionBranch ) = GetCollectionItemBranches( $itemnumber );
635         if ( $holdingBranch and $collectionBranch ) {
636             $holdingBranch //= '';
637             $collectionBranch //= $returnbranch;
638             if ( ! ( $holdingBranch eq $collectionBranch ) ) {
639                 $template->param(
640                   collectionItemNeedsTransferred => 1,
641                   collectionBranch => $collectionBranch,
642                   itemnumber => $itemnumber,
643                 );
644             }
645         }
646     }
647 }
648
649 # Checking if there is a Fast Cataloging Framework
650 $template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find( 'FA' );
651
652 # actually print the page!
653 output_html_with_http_headers $query, $cookie, $template->output;