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