Bug 28482: Unit test
[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       => 1,
367     );
368 }
369
370 if ( $messages->{'NeedsTransfer'} ){
371     $template->param(
372         found          => 1,
373         needstransfer  => $messages->{'NeedsTransfer'},
374         trigger        => $messages->{'TransferTrigger'},
375     );
376 }
377
378 if ( $messages->{'Wrongbranch'} ){
379     $template->param(
380         wrongbranch => 1,
381         rightbranch => $messages->{'Wrongbranch'}->{'Rightbranch'},
382     );
383 }
384
385 # case of wrong transfert, if the document wasn't transferred to the right library (according to branchtransfer (tobranch) BDD)
386
387 if ( $messages->{'WrongTransfer'} and not $messages->{'WasTransfered'}) {
388     $template->param(
389         WrongTransfer  => 1,
390         TransferWaitingAt => $messages->{'WrongTransfer'},
391         WrongTransferItem => $messages->{'WrongTransferItem'},
392     );
393
394     my $reserve    = $messages->{'ResFound'};
395     if ( $reserve ) {
396         my $patron = Koha::Patrons->find( $reserve->{'borrowernumber'} );
397         $template->param(
398             patron => $patron,
399         );
400     }
401     $template->param(
402         wtransfertFrom  => $userenv_branch,
403     );
404 }
405
406 #
407 # reserve found and item arrived at the expected branch
408 #
409 if ( $messages->{'ResFound'}) {
410     my $reserve    = $messages->{'ResFound'};
411     my $patron = Koha::Patrons->find( $reserve->{borrowernumber} );
412     my $holdmsgpreferences =  C4::Members::Messaging::GetMessagingPreferences( { borrowernumber => $reserve->{'borrowernumber'}, message_name   => 'Hold_Filled' } );
413     my $branchCheck = ( $userenv_branch eq $reserve->{branchcode} );
414     if ( $reserve->{'ResFound'} eq "Waiting" ) {
415         $template->param(
416             waiting      => $branchCheck ? 1 : undef,
417         );
418     } elsif ( C4::Context->preference('HoldsAutoFill') ) {
419         my $item = Koha::Items->find( $itemnumber );
420         my $biblio = $item->biblio;
421
422         my $diffBranchSend = !$branchCheck ? $reserve->{branchcode} : undef;
423         ModReserveAffect( $reserve->{itemnumber}, $reserve->{borrowernumber}, $diffBranchSend, $reserve->{reserve_id}, $desk_id );
424         my ( $messages, $nextreservinfo ) = GetOtherReserves($reserve->{itemnumber});
425
426         $template->param(
427             hold_auto_filled => 1,
428             print_slip       => C4::Context->preference('HoldsAutoFillPrintSlip'),
429             reserve_id       => $nextreservinfo->{reserve_id},
430         );
431
432         if ( $messages->{'transfert'} ) {
433             $template->param(
434                 itemtitle        => $biblio->title,
435                 itembiblionumber => $biblio->biblionumber,
436                 iteminfo         => $biblio->author,
437                 diffbranch       => 1,
438             );
439         }
440     } else {
441         $template->param(
442             intransit    => $branchCheck ? undef : 1,
443             transfertodo => $branchCheck ? undef : 1,
444             reserve_id   => $reserve->{reserve_id},
445             reserved     => 1,
446         );
447     }
448
449     # same params for Waiting or Reserved
450     $template->param(
451         found          => 1,
452         patron         => $patron,
453         barcode        => $barcode,
454         destbranch     => $reserve->{'branchcode'},
455         reservenotes   => $reserve->{'reservenotes'},
456         reserve_id     => $reserve->{reserve_id},
457         bormessagepref => $holdmsgpreferences->{'transports'},
458     );
459 }
460
461 # Error Messages
462 my @errmsgloop;
463 foreach my $code ( keys %$messages ) {
464     my %err;
465     my $exit_required_p = 0;
466     if ( $code eq 'BadBarcode' ) {
467         $err{badbarcode} = 1;
468         $err{msg}        = $messages->{'BadBarcode'};
469     }
470     elsif ( $code eq 'NotIssued' ) {
471         $err{notissued} = 1;
472         $err{msg} = '';
473     }
474     elsif ( $code eq 'LocalUse' ) {
475         $err{localuse} = 1;
476     }
477     elsif ( $code eq 'WasLost' ) {
478         $err{waslost} = 1;
479         $exit_required_p = 1 if C4::Context->preference("BlockReturnOfLostItems");
480     }
481     elsif ( $code eq 'LostItemFeeRefunded' ) {
482         $template->param( LostItemFeeRefunded => 1 );
483     }
484     elsif ( $code eq 'LostItemFeeCharged' ) {
485         $template->param( LostItemFeeCharged => 1 );
486     }
487     elsif ( $code eq 'LostItemFeeRestored' ) {
488         $template->param( LostItemFeeRestored => 1 );
489     }
490     elsif ( $code eq 'ResFound' ) {
491         ;    # FIXME... anything to do here?
492     }
493     elsif ( $code eq 'WasReturned' ) {
494         ;    # FIXME... anything to do here?
495     }
496     elsif ( $code eq 'WasTransfered' ) {
497         ;    # FIXME... anything to do here?
498     }
499     elsif ( $code eq 'withdrawn' ) {
500         $err{withdrawn} = 1;
501         $exit_required_p = 1 if C4::Context->preference("BlockReturnOfWithdrawnItems");
502     }
503     elsif ( $code eq 'WrongTransfer' ) {
504         ;    # FIXME... anything to do here?
505     }
506     elsif ( $code eq 'WrongTransferItem' ) {
507         ;    # FIXME... anything to do here?
508     }
509     elsif ( $code eq 'NeedsTransfer' ) {
510     }
511     elsif ( $code eq 'TransferTrigger' ) {
512         ;    # Handled alongside NeedsTransfer
513     }
514     elsif ( $code eq 'TransferArrived' ) {
515         $err{transferred} = $messages->{'TransferArrived'};
516     }
517     elsif ( $code eq 'Wrongbranch' ) {
518     }
519     elsif ( $code eq 'Debarred' ) {
520         $err{debarred}            = $messages->{'Debarred'};
521         $err{debarcardnumber}     = $borrower->{cardnumber};
522         $err{debarborrowernumber} = $borrower->{borrowernumber};
523         $err{debarname}           = "$borrower->{firstname} $borrower->{surname}";
524     }
525     elsif ( $code eq 'PrevDebarred' ) {
526         $err{prevdebarred}        = $messages->{'PrevDebarred'};
527     }
528     elsif ( $code eq 'ForeverDebarred' ) {
529         $err{foreverdebarred}        = $messages->{'ForeverDebarred'};
530     }
531     elsif ( $code eq 'ItemLocationUpdated' ) {
532         $err{ItemLocationUpdated} = $messages->{ItemLocationUpdated};
533     }
534     elsif ( $code eq 'NotForLoanStatusUpdated' ) {
535         $err{NotForLoanStatusUpdated} = $messages->{NotForLoanStatusUpdated};
536     }
537     elsif ( $code eq 'DataCorrupted' ) {
538         $err{data_corrupted} = 1;
539     }
540     elsif ( $code eq 'ReturnClaims' ) {
541         $template->param( ReturnClaims => $messages->{ReturnClaims} );
542     } else {
543         die "Unknown error code $code";    # note we need all the (empty) elsif's above, or we die.
544         # This forces the issue of staying in sync w/ Circulation.pm
545     }
546     if (%err) {
547         push( @errmsgloop, \%err );
548     }
549     last if $exit_required_p;
550 }
551 $template->param( errmsgloop => \@errmsgloop );
552
553 #set up so only the last 8 returned items display (make for faster loading pages)
554 my $returned_counter = ( C4::Context->preference('numReturnedItemsToShow') ) ? C4::Context->preference('numReturnedItemsToShow') : 8;
555 my $count = 0;
556 my @riloop;
557 my $shelflocations =
558   { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => '', kohafield => 'items.location' } ) };
559 foreach ( sort { $a <=> $b } keys %returneditems ) {
560     my %ri;
561     if ( $count++ < $returned_counter ) {
562         my $bar_code = $returneditems{$_};
563         if ($riduedate{$_}) {
564             my $duedate = dt_from_string( $riduedate{$_}, 'sql');
565             $ri{year}  = $duedate->year();
566             $ri{month} = $duedate->month();
567             $ri{day}   = $duedate->day();
568             $ri{hour}   = $duedate->hour();
569             $ri{minute}   = $duedate->minute();
570             $ri{duedate} = output_pref($duedate);
571             my $patron = Koha::Patrons->find( $riborrowernumber{$_} );
572             unless ( $dropboxmode ) {
573                 $ri{return_overdue} = 1 if (DateTime->compare($duedate, dt_from_string()) == -1);
574             } else {
575                 $ri{return_overdue} = 1 if (DateTime->compare($duedate, $dropboxdate) == -1);
576             }
577             $ri{patron} = $patron,
578             $ri{borissuescount} = $patron->checkouts->count;
579         }
580         else {
581             $ri{borrowernumber} = $riborrowernumber{$_};
582         }
583
584         my $item = Koha::Items->find({ barcode => $bar_code });
585         next unless $item; # FIXME The item has been deleted in the meantime,
586                            # we could handle that better displaying a message in the template
587
588         my $biblio = $item->biblio;
589         # FIXME pass $item to the template and we are done here...
590         $ri{itembiblionumber}    = $biblio->biblionumber;
591         $ri{itemtitle}           = $biblio->title;
592         $ri{subtitle}            = $biblio->subtitle;
593         $ri{part_name}           = $biblio->part_name;
594         $ri{part_number}         = $biblio->part_number;
595         $ri{itemauthor}          = $biblio->author;
596         $ri{itemcallnumber}      = $item->itemcallnumber;
597         $ri{dateaccessioned}     = $item->dateaccessioned;
598         $ri{recordtype}          = $biblio->itemtype;
599         $ri{itemtype}            = $item->itype;
600         $ri{itemnote}            = $item->itemnotes;
601         $ri{itemnotes_nonpublic} = $item->itemnotes_nonpublic;
602         $ri{ccode}               = $item->ccode;
603         $ri{enumchron}           = $item->enumchron;
604         $ri{itemnumber}          = $item->itemnumber;
605         $ri{barcode}             = $bar_code;
606         $ri{homebranch}          = $item->homebranch;
607         $ri{holdingbranch}       = $item->holdingbranch;
608         $ri{damaged}             = $item->damaged;
609
610         $ri{location} = $item->location;
611         my $shelfcode = $ri{'location'};
612         $ri{'location'} = $shelflocations->{$shelfcode} if ( defined( $shelfcode ) && defined($shelflocations) && exists( $shelflocations->{$shelfcode} ) );
613
614     }
615     else {
616         last;
617     }
618     push @riloop, \%ri;
619 }
620
621 $template->param(
622     riloop         => \@riloop,
623     errmsgloop     => \@errmsgloop,
624     exemptfine     => $exemptfine,
625     dropboxmode    => $dropboxmode,
626     dropboxdate    => $dropboxdate,
627     forgivemanualholdsexpire => $forgivemanualholdsexpire,
628     overduecharges => $overduecharges,
629     AudioAlerts        => C4::Context->preference("AudioAlerts"),
630 );
631
632 if ( $barcode ) {
633     my $item_from_barcode = Koha::Items->find({barcode => $barcode }); # How many times do we fetch this item?!?
634     if ( $item_from_barcode ) {
635         $itemnumber = $item_from_barcode->itemnumber;
636         my ( $holdingBranch, $collectionBranch ) = GetCollectionItemBranches( $itemnumber );
637         if ( $holdingBranch and $collectionBranch ) {
638             $holdingBranch //= '';
639             $collectionBranch //= $returnbranch;
640             if ( ! ( $holdingBranch eq $collectionBranch ) ) {
641                 $template->param(
642                   collectionItemNeedsTransferred => 1,
643                   collectionBranch => $collectionBranch,
644                 );
645             }
646         }
647     }
648 }
649
650 $template->param( itemnumber => $itemnumber );
651
652 # Checking if there is a Fast Cataloging Framework
653 $template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find( 'FA' );
654
655 # actually print the page!
656 output_html_with_http_headers $query, $cookie, $template->output;