Bug 16522: (follow-up) MARC display templates and get_marc_host fixes
[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( get_template_and_user get_session haspermission );
38 use C4::Circulation qw( barcodedecode GetBranchItemRule AddReturn updateWrongTransfer LostItem );
39 use C4::Context;
40 use C4::Items qw( ModItemTransfer );
41 use C4::Members::Messaging;
42 use C4::Members;
43 use C4::Output qw( output_html_with_http_headers );
44 use C4::Reserves qw( ModReserve ModReserveAffect GetOtherReserves );
45 use C4::RotatingCollections;
46 use Koha::AuthorisedValues;
47 use Koha::BiblioFrameworks;
48 use Koha::Calendar;
49 use Koha::Checkouts;
50 use Koha::CirculationRules;
51 use Koha::DateUtils qw( dt_from_string );
52 use Koha::Holds;
53 use Koha::Item::Transfers;
54 use Koha::Items;
55 use Koha::Patrons;
56 use Koha::Recalls;
57
58 my $query = CGI->new;
59
60 #getting the template
61 my ( $template, $librarian, $cookie, $flags ) = get_template_and_user(
62     {
63         template_name   => "circ/returns.tt",
64         query           => $query,
65         type            => "intranet",
66         flagsrequired   => { circulate => "circulate_remaining_permissions" },
67     }
68 );
69
70 my $sessionID = $query->cookie("CGISESSID");
71 my $session = get_session($sessionID);
72 my $desk_id = C4::Context->userenv->{"desk_id"} || '';
73
74 # Print a reserve slip on this page
75 if ( $query->param('print_slip') ) {
76     $template->param(
77         print_slip     => 1,
78         reserve_id => scalar $query->param('reserve_id'),
79     );
80 }
81
82 # print a recall slip
83 if ( $query->param('recall_slip') ) {
84     $template->param(
85         recall_slip => 1,
86         recall_id => scalar $query->param('recall_id'),
87     );
88 }
89
90
91 #####################
92 #Global vars
93 my $userenv = C4::Context->userenv;
94 my $userenv_branch = $userenv->{'branch'} // '';
95 my $forgivemanualholdsexpire = $query->param('forgivemanualholdsexpire');
96
97 my $overduecharges = (C4::Context->preference('finesMode') && C4::Context->preference('finesMode') eq 'production');
98
99 #set up so only the last 8 returned items display (make for faster loading pages)
100 my $returned_counter = C4::Context->preference('numReturnedItemsToShow') || 8;
101
102 # Set up the item stack ....
103 my %returneditems;
104 my %riduedate;
105 my %riborrowernumber;
106 my @inputloop;
107 foreach ( $query->param ) {
108     my $counter;
109     if (/ri-(\d*)/) {
110         $counter = $1;
111         if ($counter > $returned_counter) {
112             next;
113         }
114     }
115     else {
116         next;
117     }
118
119     my %input;
120     my $barcode        = $query->param("ri-$counter");
121     my $duedate        = $query->param("dd-$counter");
122     my $borrowernumber = $query->param("bn-$counter");
123     $counter++;
124
125     # decode barcode    ## Didn't we already decode them before passing them back last time??
126     $barcode = barcodedecode($barcode) if $barcode;
127
128     ######################
129     #Are these lines still useful ?
130     $returneditems{$counter}    = $barcode;
131     $riduedate{$counter}        = $duedate;
132     $riborrowernumber{$counter} = $borrowernumber;
133
134     #######################
135     $input{counter}        = $counter;
136     $input{barcode}        = $barcode;
137     $input{duedate}        = $duedate;
138     $input{borrowernumber} = $borrowernumber;
139     push( @inputloop, \%input );
140 }
141
142 ############
143 # Deal with the requests....
144 my $itemnumber = $query->param('itemnumber');
145 if ( $query->param('reserve_id') ) {
146     my $borrowernumber = $query->param('borrowernumber');
147     my $reserve_id     = $query->param('reserve_id');
148     my $diffBranchReturned = $query->param('diffBranch');
149     my $cancel_reserve = $query->param('cancel_reserve');
150     # fix up item type for display
151     my $item = Koha::Items->find( $itemnumber );
152     my $biblio = $item->biblio;
153
154     if ( $cancel_reserve ) {
155         my $hold = Koha::Holds->find( $reserve_id );
156         if ( $hold ) {
157             $hold->cancel( { charge_cancel_fee => !$forgivemanualholdsexpire } );
158         } # FIXME else?
159     } else {
160         my $diffBranchSend = ($userenv_branch ne $diffBranchReturned) ? $diffBranchReturned : undef;
161         # diffBranchSend tells ModReserveAffect whether document is expected in this library or not,
162         # i.e., whether to apply waiting status
163         ModReserveAffect( $itemnumber, $borrowernumber, $diffBranchSend, $reserve_id, $desk_id );
164     }
165 #   check if we have other reserves for this document, if we have a return send the message of transfer
166     my ( $messages, $nextreservinfo ) = GetOtherReserves($itemnumber);
167
168     my $patron = Koha::Patrons->find( $nextreservinfo );
169     if ( $messages->{'transfert'} ) {
170         $template->param(
171             itemtitle      => $biblio->title,
172             itembiblionumber => $biblio->biblionumber,
173             iteminfo       => $biblio->author,
174             patron         => $patron,
175             diffbranch     => 1,
176         );
177     }
178 }
179
180 if ( $query->param('recall_id') ) {
181     my $recall = Koha::Recalls->find( scalar $query->param('recall_id') );
182     my $itemnumber = $query->param('itemnumber');
183     my $return_branch = $query->param('returnbranch');
184
185     if ($recall) {
186         my $item;
187         if ( !$recall->item_level ) {
188             $item = Koha::Items->find( $itemnumber );
189         }
190
191         if ( $recall->pickup_library_id ne $return_branch ) {
192             $recall->start_transfer({ item => $item }) if !$recall->in_transit;
193         } else {
194             my $expirationdate = $recall->calc_expirationdate;
195             $recall->set_waiting({ item => $item, expirationdate => $expirationdate }) if !$recall->waiting;
196         }
197     }
198 }
199
200 my $borrower;
201 my $returned = 0;
202 my $messages;
203 my $issue;
204 my $barcode     = $query->param('barcode');
205 my $exemptfine  = $query->param('exemptfine');
206 if (
207   $exemptfine &&
208   !C4::Auth::haspermission(C4::Context->userenv->{'id'}, {'updatecharges' => 'writeoff'})
209 ) {
210     # silently prevent unauthorized operator from forgiving overdue
211     # fines by manually tweaking form parameters
212     undef $exemptfine;
213 }
214 my $dropboxmode = $query->param('dropboxmode');
215 my $dotransfer  = $query->param('dotransfer');
216 my $canceltransfer = $query->param('canceltransfer');
217 my $transit = $query->param('transit');
218 my $dest = $query->param('dest');
219 #dropbox: get last open day (today - 1)
220 my $dropboxdate = Koha::Checkouts::calculate_dropbox_date();
221
222 my $return_date_override = $query->param('return_date_override') || q{};
223 if ($return_date_override) {
224     if ( C4::Context->preference('SpecifyReturnDate') ) {
225
226         # note that we've overriden the return date
227         $template->param( return_date_was_overriden => 1 );
228
229         my $return_date_override_remember =
230           $query->param('return_date_override_remember');
231
232         # Save the original format if we are remembering for this series
233         $template->param(
234             return_date_override          => $return_date_override,
235             return_date_override_remember => 1
236         ) if ($return_date_override_remember);
237     }
238 }
239
240 if ($dotransfer){
241 # An item has been returned to a branch other than the homebranch, and the librarian has chosen to initiate a transfer
242     my $transferitem = $query->param('transferitem');
243     my $tobranch     = $query->param('tobranch');
244     my $trigger      = $query->param('trigger');
245     ModItemTransfer($transferitem, $userenv_branch, $tobranch, $trigger);
246 }
247
248 if ($transit) {
249     my $transfer = Koha::Item::Transfers->find($transit);
250     if ( $canceltransfer ) {
251         $transfer->cancel({ reason => 'Manual', force => 1});
252         if ( C4::Context->preference('UseRecalls') ) {
253             my $recall_transfer_deleted = Koha::Recalls->find({ item_id => $itemnumber, status => 'in_transit' });
254             if ( defined $recall_transfer_deleted ) {
255                 $recall_transfer_deleted->revert_transfer;
256             }
257         }
258         $template->param( transfercancelled => 1);
259     } else {
260         $transfer->transit;
261     }
262 } elsif ($canceltransfer){
263     my $item = Koha::Items->find($itemnumber);
264     my $transfer = $item->get_transfer;
265     $transfer->cancel({ reason => 'Manual', force => 1});
266     if ( C4::Context->preference('UseRecalls') ) {
267         my $recall_transfer_deleted = Koha::Recalls->find({ item_id => $itemnumber, status => 'in_transit' });
268         if ( defined $recall_transfer_deleted ) {
269             $recall_transfer_deleted->revert_transfer;
270         }
271     }
272     if($dest eq "ttr"){
273         print $query->redirect("/cgi-bin/koha/circ/transferstoreceive.pl");
274         exit;
275     } else {
276         $template->param( transfercancelled => 1);
277     }
278 }
279
280
281 # actually return book and prepare item table.....
282 my $returnbranch;
283 if ($barcode) {
284     $barcode = barcodedecode($barcode) if $barcode;
285     my $item = Koha::Items->find({ barcode => $barcode });
286
287     if ( $item ) {
288         $itemnumber = $item->itemnumber;
289         # Check if we should display a checkin message, based on the the item
290         # type of the checked in item
291         my $itemtype = Koha::ItemTypes->find( $item->effective_itemtype );
292         if ( $itemtype && $itemtype->checkinmsg ) {
293             $template->param(
294                 checkinmsg     => $itemtype->checkinmsg,
295                 checkinmsgtype => $itemtype->checkinmsgtype,
296             );
297         }
298
299         # make sure return branch respects home branch circulation rules, default to homebranch
300         my $hbr = Koha::CirculationRules->get_return_branch_policy($item);
301         $returnbranch = $hbr ne 'noreturn' ? $item->$hbr : $userenv_branch; # can be noreturn, homebranch or holdingbranch
302
303         my $materials = $item->materials;
304         my $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => '', kohafield =>'items.materials', authorised_value => $materials });
305         $materials = $descriptions->{lib} // $materials;
306
307         my $checkout = $item->checkout;
308         my $biblio   = $item->biblio;
309         $template->param(
310             title                => $biblio->title,
311             returnbranch         => $returnbranch,
312             author               => $biblio->author,
313             itembiblionumber     => $biblio->biblionumber,
314             biblionumber         => $biblio->biblionumber,
315             additional_materials => $materials,
316             issue                => $checkout,
317             item                 => $item,
318         );
319     } # FIXME else we should not call AddReturn but set BadBarcode directly instead
320
321     my %input = (
322         counter => 0,
323         first   => 1,
324         barcode => $barcode,
325     );
326
327     my $return_date =
328         $dropboxmode
329       ? $dropboxdate
330       : dt_from_string( $return_date_override );
331
332     # Block return if multi-part and confirm has not been received
333     my $needs_confirm =
334          C4::Context->preference("CircConfirmItemParts")
335       && $item
336       && $item->materials
337       && !$query->param('multiple_confirm');
338     $template->param( 'multiple_confirmed' => 1 )
339       if $query->param('multiple_confirm');
340
341     # Block return if bundle and confirm has not been received
342     my $bundle_confirm =
343          $item
344       && $item->is_bundle
345       && !$query->param('confirm_items_bundle_return');
346     $template->param( 'confirm_items_bundle_returned' => 1 )
347       if $query->param('confirm_items_bundle_return');
348
349     # is there a waiting hold for the item, for which cancellation
350     # has been requested?
351     if ($item) {
352         my $waiting_holds_to_be_cancelled = $item->holds->waiting->filter_by_has_cancellation_requests;
353         while ( my $hold = $waiting_holds_to_be_cancelled->next ) {
354             $hold->cancel;
355         }
356     }
357
358     # do the return
359     ( $returned, $messages, $issue, $borrower ) =
360       AddReturn( $barcode, $userenv_branch, $exemptfine, $return_date )
361           unless ( $needs_confirm || $bundle_confirm );
362
363     if ($returned) {
364         my $time_now = dt_from_string()->truncate( to => 'minute');
365         my $date_due_dt = dt_from_string( $issue->date_due, 'sql' );
366         my $duedate = $date_due_dt->strftime('%Y-%m-%d %H:%M');
367         $returneditems{0}      = $barcode;
368         $riborrowernumber{0}   = $borrower->{'borrowernumber'};
369         $riduedate{0}          = $duedate;
370         $input{borrowernumber} = $borrower->{'borrowernumber'};
371         $input{duedate}        = $duedate;
372         unless ( $dropboxmode ) {
373             $input{return_overdue} = 1 if (DateTime->compare($date_due_dt, dt_from_string()) == -1);
374         } else {
375             $input{return_overdue} = 1 if (DateTime->compare($date_due_dt, $dropboxdate) == -1);
376         }
377         push( @inputloop, \%input );
378
379         if ( C4::Context->preference("FineNotifyAtCheckin") ) {
380             my $patron = Koha::Patrons->find( $borrower->{borrowernumber} );
381             my $balance = $patron->account->balance;
382
383             if ($balance > 0) {
384                 $template->param( fines => sprintf("%.2f", $balance) );
385                 $template->param( fineborrowernumber => $borrower->{'borrowernumber'} );
386             }
387         }
388
389         if (C4::Context->preference("WaitingNotifyAtCheckin") ) {
390             #Check for waiting holds
391             my $patron = Koha::Patrons->find( $borrower->{borrowernumber} );
392             my $waiting_holds = $patron->holds->search({ found => 'W', branchcode => $userenv_branch })->count;
393             if ($waiting_holds > 0) {
394                 $template->param(
395                     waiting_holds       => $waiting_holds,
396                     holdsborrowernumber => $borrower->{'borrowernumber'},
397                     holdsfirstname => $borrower->{'firstname'},
398                     holdssurname => $borrower->{'surname'},
399                 );
400             }
401         }
402
403     } elsif ( C4::Context->preference('ShowAllCheckins') and !$messages->{'BadBarcode'} and !$needs_confirm and !$bundle_confirm ) {
404         $input{duedate}   = 0;
405         $returneditems{0} = $barcode;
406         $riduedate{0}     = 0;
407         push( @inputloop, \%input );
408     }
409     $template->param( privacy => $borrower->{privacy} );
410
411     if ( $needs_confirm ) {
412         $template->param( needs_confirm => $needs_confirm );
413     }
414
415     if ( $bundle_confirm ) {
416         $template->param(
417             items_bundle_return_confirmation => 1,
418         );
419     }
420
421     # Mark missing bundle items as lost and report unexpected items
422     if ( $item && $item->is_bundle && $query->param('confirm_items_bundle_return') ) {
423         my $BundleLostValue = C4::Context->preference('BundleLostValue');
424         my $barcodes = $query->param('verify-items-bundle-contents-barcodes');
425         my @barcodes = map { s/^\s+|\s+$//gr } ( split /\n/, $barcodes );
426         my $expected_items = { map { $_->barcode => $_ } $item->bundle_items->as_list };
427         my $verify_items = Koha::Items->search( { barcode => { 'in' => \@barcodes } } );
428         my @unexpected_items;
429         my @missing_items;
430         my @bundle_items;
431         while ( my $verify_item = $verify_items->next ) {
432             # Fix and lost statuses
433             $verify_item->itemlost(0);
434
435             # Update last_seen
436             $verify_item->datelastseen( dt_from_string()->ymd() );
437
438             # Update last_borrowed if actual checkin
439             $verify_item->datelastborrowed( dt_from_string()->ymd() ) if $issue;
440
441             # Expected item, remove from lookup table
442             if ( delete $expected_items->{$verify_item->barcode} ) {
443                 push @bundle_items, $verify_item;
444             }
445             # Unexpected item, warn and remove from bundle
446             else {
447                 $verify_item->remove_from_bundle;
448                 push @unexpected_items, $verify_item;
449             }
450
451             # Store results
452             $verify_item->store();
453         }
454         for my $missing_item ( keys %{$expected_items} ) {
455             my $bundle_item = $expected_items->{$missing_item};
456             # Mark as lost if it's not already lost
457             if ( !$bundle_item->itemlost ) {
458                 $bundle_item->itemlost($BundleLostValue)->store();
459
460                 # Add return_claim record if this is an actual checkin
461                 if ($issue) {
462                     $bundle_item->_result->create_related(
463                         'return_claims',
464                         {
465                             issue_id       => $issue->issue_id,
466                             itemnumber     => $bundle_item->itemnumber,
467                             borrowernumber => $issue->borrowernumber,
468                             created_by     => C4::Context->userenv()->{number},
469                             created_on     => dt_from_string
470                         }
471                     );
472                 }
473                 push @missing_items, $bundle_item;
474
475                 # NOTE: We cannot use C4::LostItem here because the item itself doesn't have a checkout
476                 # and thus would not get charged.. it's checked out as part of the bundle.
477                 if ( C4::Context->preference('WhenLostChargeReplacementFee') && $issue ) {
478                     C4::Accounts::chargelostitem(
479                         $issue->borrowernumber,
480                         $bundle_item->itemnumber,
481                         $bundle_item->replacementprice,
482                         sprintf( "%s %s %s",
483                             $bundle_item->biblio->title  || q{},
484                             $bundle_item->barcode        || q{},
485                             $bundle_item->itemcallnumber || q{},
486                         ),
487                     );
488                 }
489             }
490         }
491         $template->param(
492             unexpected_items => \@unexpected_items,
493             missing_items    => \@missing_items,
494             bundle_items     => \@bundle_items
495         );
496     }
497 }
498 $template->param( inputloop => \@inputloop );
499
500 my $found    = 0;
501 my $waiting  = 0;
502 my $reserved = 0;
503 my $recalled = 0;
504
505 # new op dev : we check if the document must be returned to his homebranch directly,
506 #  if the document is transferred, we have warning message .
507
508 if ( $messages->{'WasTransfered'} ) {
509     $template->param(
510         found          => 1,
511         transfer       => $messages->{'WasTransfered'},
512         trigger        => $messages->{'TransferTrigger'},
513         itemnumber     => $itemnumber,
514     );
515 }
516
517 if ( $messages->{'NeedsTransfer'} ){
518     $template->param(
519         found          => 1,
520         needstransfer  => $messages->{'NeedsTransfer'},
521         trigger        => $messages->{'TransferTrigger'},
522     );
523 }
524
525 if ( $messages->{'Wrongbranch'} ){
526     $template->param(
527         wrongbranch => 1,
528         rightbranch => $messages->{'Wrongbranch'}->{'Rightbranch'},
529     );
530 }
531
532 # case of wrong transfert, if the document wasn't transferred to the right library (according to branchtransfer (tobranch) BDD)
533
534 if ( $messages->{'WrongTransfer'} and not $messages->{'WasTransfered'}) {
535
536     # Trigger modal to prompt librarian
537     $template->param(
538         WrongTransfer  => 1,
539         TransferWaitingAt => $messages->{'WrongTransfer'},
540         WrongTransferItem => $messages->{'WrongTransferItem'},
541         trigger           => $messages->{'TransferTrigger'},
542     );
543
544     # Update the transfer to reflect the new item holdingbranch
545     my $new_transfer = updateWrongTransfer($messages->{'WrongTransferItem'},$messages->{'WrongTransfer'}, $userenv_branch);
546     $template->param(
547         NewTransfer => $new_transfer->id
548     );
549
550     my $reserve    = $messages->{'ResFound'};
551     if ( $reserve ) {
552         my $patron = Koha::Patrons->find( $reserve->{'borrowernumber'} );
553         $template->param(
554             patron => $patron,
555         );
556     }
557 }
558
559 #
560 # reserve found and item arrived at the expected branch
561 #
562 if ( $messages->{'ResFound'} ) {
563     my $reserve    = $messages->{'ResFound'};
564     my $patron = Koha::Patrons->find( $reserve->{borrowernumber} );
565     my $holdmsgpreferences =  C4::Members::Messaging::GetMessagingPreferences( { borrowernumber => $reserve->{'borrowernumber'}, message_name   => 'Hold_Filled' } );
566     my $branchCheck = ( $userenv_branch eq $reserve->{branchcode} );
567     if ( $reserve->{'ResFound'} eq "Waiting" ) {
568         $template->param(
569             waiting      => $branchCheck ? 1 : undef,
570         );
571     } elsif ( C4::Context->preference('HoldsAutoFill') ) {
572         my $item = Koha::Items->find( $itemnumber );
573         my $biblio = $item->biblio;
574
575         my $diffBranchSend = !$branchCheck ? $reserve->{branchcode} : undef;
576         ModReserveAffect( $itemnumber, $reserve->{borrowernumber}, $diffBranchSend, $reserve->{reserve_id}, $desk_id );
577         my ( $messages, $nextreservinfo ) = GetOtherReserves($reserve->{itemnumber});
578
579         $template->param(
580             hold_auto_filled => 1,
581             print_slip       => C4::Context->preference('HoldsAutoFillPrintSlip'),
582             reserve_id       => $nextreservinfo->{reserve_id},
583         );
584
585         if ( $messages->{'transfert'} ) {
586             $template->param(
587                 itemtitle        => $biblio->title,
588                 itembiblionumber => $biblio->biblionumber,
589                 iteminfo         => $biblio->author,
590                 diffbranch       => 1,
591             );
592         }
593     } else {
594         $template->param(
595             intransit    => $branchCheck ? undef : 1,
596             transfertodo => $branchCheck ? undef : 1,
597             reserve_id   => $reserve->{reserve_id},
598             reserved     => 1,
599         );
600     }
601
602     # same params for Waiting or Reserved
603     $template->param(
604         found          => 1,
605         patron         => $patron,
606         barcode        => $barcode,
607         destbranch     => $reserve->{'branchcode'},
608         reservenotes   => $reserve->{'reservenotes'},
609         reserve_id     => $reserve->{reserve_id},
610         bormessagepref => $holdmsgpreferences->{'transports'},
611     );
612 }
613
614 if ( $messages->{RecallFound} ) {
615     my $recall = $messages->{RecallFound};
616     if ( dt_from_string( $recall->timestamp ) == dt_from_string ) {
617         # we just updated this recall
618         $template->param( recall => $recall );
619     } else {
620         my $transferbranch = $messages->{RecallNeedsTransfer};
621         my $transfertodo = ( !$transferbranch or $transferbranch eq $recall->library->branchcode ) ? undef : 1;
622         $template->param(
623             found => 1,
624             recall => $recall,
625             recalled => $recall->waiting ? 0 : 1,
626             transfertodo => $transfertodo,
627             waitingrecall => $recall->waiting ? 1 : 0,
628         );
629     }
630 }
631
632 if ( $messages->{TransferredRecall} ) {
633     my $recall = $messages->{TransferredRecall};
634
635     # confirm transfer has arrived at the branch
636     my $transfer = Koha::Item::Transfers->search({ datearrived => { '!=' => undef }, itemnumber => $recall->item_id }, { order_by => { -desc => 'datearrived' } })->next;
637
638     # if transfer has completed, show popup to confirm as waiting
639     if ( defined $transfer and $transfer->tobranch eq $recall->pickup_library_id ) {
640         $template->param(
641             found => 1,
642             recall => $recall,
643             recalled => 1,
644         );
645     }
646 }
647
648 # Error Messages
649 my @errmsgloop;
650 foreach my $code ( keys %$messages ) {
651     my %err;
652     my $exit_required_p = 0;
653     if ( $code eq 'BadBarcode' ) {
654         $err{badbarcode} = 1;
655         $err{msg}        = $messages->{'BadBarcode'};
656     }
657     elsif ( $code eq 'NotIssued' ) {
658         $err{notissued} = 1;
659         $err{msg} = '';
660     }
661     elsif ( $code eq 'LocalUse' ) {
662         $err{localuse} = 1;
663     }
664     elsif ( $code eq 'WasLost' ) {
665         $err{waslost} = 1;
666         $exit_required_p = 1 if C4::Context->preference("BlockReturnOfLostItems");
667     }
668     elsif ( $code eq 'LostItemFeeRefunded' ) {
669         $template->param( LostItemFeeRefunded => 1 );
670     }
671     elsif ( $code eq 'LostItemFeeCharged' ) {
672         $template->param( LostItemFeeCharged => 1 );
673     }
674     elsif ( $code eq 'LostItemFeeRestored' ) {
675         $template->param( LostItemFeeRestored => 1 );
676     }
677     elsif ( $code eq 'ProcessingFeeRefunded' ) {
678         $template->param( ProcessingFeeRefunded => 1 );
679     }
680     elsif ( $code eq 'ResFound' ) {
681         ;    # FIXME... anything to do here?
682     }
683     elsif ( $code eq 'WasReturned' ) {
684         ;    # FIXME... anything to do here?
685     }
686     elsif ( $code eq 'WasTransfered' ) {
687         ;    # FIXME... anything to do here?
688     }
689     elsif ( $code eq 'withdrawn' ) {
690         $err{withdrawn} = 1;
691         $exit_required_p = 1 if C4::Context->preference("BlockReturnOfWithdrawnItems");
692     }
693     elsif ( $code eq 'WrongTransfer' ) {
694         ;    # FIXME... anything to do here?
695     }
696     elsif ( $code eq 'WrongTransferItem' ) {
697         ;    # FIXME... anything to do here?
698     }
699     elsif ( $code eq 'NeedsTransfer' ) {
700     }
701     elsif ( $code eq 'TransferTrigger' ) {
702         ;    # Handled alongside NeedsTransfer
703     }
704     elsif ( $code eq 'TransferArrived' ) {
705         $err{transferred} = $messages->{'TransferArrived'};
706     }
707     elsif ( $code eq 'Wrongbranch' ) {
708     }
709     elsif ( $code eq 'Debarred' ) {
710         $err{debarred}            = $messages->{'Debarred'};
711         $err{debarcardnumber}     = $borrower->{cardnumber};
712         $err{debarborrowernumber} = $borrower->{borrowernumber};
713         $err{debarname}           = "$borrower->{firstname} $borrower->{surname}";
714     }
715     elsif ( $code eq 'PrevDebarred' ) {
716         $err{prevdebarred}        = $messages->{'PrevDebarred'};
717     }
718     elsif ( $code eq 'ForeverDebarred' ) {
719         $err{foreverdebarred}        = $messages->{'ForeverDebarred'};
720     }
721     elsif ( $code eq 'ItemLocationUpdated' ) {
722         $err{ItemLocationUpdated} = $messages->{ItemLocationUpdated};
723     }
724     elsif ( $code eq 'NotForLoanStatusUpdated' ) {
725         $err{NotForLoanStatusUpdated} = $messages->{NotForLoanStatusUpdated};
726     }
727     elsif ( $code eq 'DataCorrupted' ) {
728         $err{data_corrupted} = 1;
729     }
730     elsif ( $code eq 'ReturnClaims' ) {
731         $template->param( ReturnClaims => $messages->{ReturnClaims} );
732     } elsif ( $code eq 'RecallFound' ) {
733         ;
734     } elsif ( $code eq 'RecallNeedsTransfer' ) {
735         ;
736     } elsif ( $code eq 'TransferredRecall' ) {
737         ;
738     } elsif ( $code eq 'InBundle' ) {
739         $template->param( InBundle => $messages->{InBundle} );
740     } else {
741         die "Unknown error code $code";    # note we need all the (empty) elsif's above, or we die.
742         # This forces the issue of staying in sync w/ Circulation.pm
743     }
744     if (%err) {
745         push( @errmsgloop, \%err );
746     }
747     last if $exit_required_p;
748 }
749 $template->param( errmsgloop => \@errmsgloop );
750
751 my $count = 0;
752 my @riloop;
753 my $shelflocations =
754   { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => '', kohafield => 'items.location' } ) };
755 foreach ( sort { $a <=> $b } keys %returneditems ) {
756     my %ri;
757     if ( $count++ < $returned_counter ) {
758         my $bar_code = $returneditems{$_};
759         if ($riduedate{$_}) {
760             my $duedate = dt_from_string( $riduedate{$_}, 'sql');
761             $ri{year}  = $duedate->year();
762             $ri{month} = $duedate->month();
763             $ri{day}   = $duedate->day();
764             $ri{hour}   = $duedate->hour();
765             $ri{minute}   = $duedate->minute();
766             $ri{duedate} = $duedate;
767             my $patron = Koha::Patrons->find( $riborrowernumber{$_} );
768             unless ( $dropboxmode ) {
769                 $ri{return_overdue} = 1 if (DateTime->compare($duedate, dt_from_string()) == -1);
770             } else {
771                 $ri{return_overdue} = 1 if (DateTime->compare($duedate, $dropboxdate) == -1);
772             }
773             $ri{patron} = $patron,
774             $ri{borissuescount} = $patron->checkouts->count;
775         }
776         else {
777             $ri{borrowernumber} = $riborrowernumber{$_};
778         }
779
780         my $item = Koha::Items->find({ barcode => $bar_code });
781         next unless $item; # FIXME The item has been deleted in the meantime,
782                            # we could handle that better displaying a message in the template
783
784         my $biblio = $item->biblio;
785         # FIXME pass $item to the template and we are done here...
786         $ri{itembiblionumber}    = $biblio->biblionumber;
787         $ri{itemtitle}           = $biblio->title;
788         $ri{subtitle}            = $biblio->subtitle;
789         $ri{part_name}           = $biblio->part_name;
790         $ri{part_number}         = $biblio->part_number;
791         $ri{itemauthor}          = $biblio->author;
792         $ri{itemcallnumber}      = $item->itemcallnumber;
793         $ri{dateaccessioned}     = $item->dateaccessioned;
794         $ri{recordtype}          = $biblio->itemtype;
795         $ri{itemtype}            = $item->itype;
796         $ri{itemnote}            = $item->itemnotes;
797         $ri{itemnotes_nonpublic} = $item->itemnotes_nonpublic;
798         $ri{ccode}               = $item->ccode;
799         $ri{enumchron}           = $item->enumchron;
800         $ri{itemnumber}          = $item->itemnumber;
801         $ri{barcode}             = $bar_code;
802         $ri{homebranch}          = $item->homebranch;
803         $ri{transferbranch}      = $item->get_transfer ? $item->get_transfer->tobranch : '';
804         $ri{damaged}             = $item->damaged;
805
806         $ri{location} = $item->location;
807         my $shelfcode = $ri{'location'};
808         $ri{'location'} = $shelflocations->{$shelfcode} if ( defined( $shelfcode ) && defined($shelflocations) && exists( $shelflocations->{$shelfcode} ) );
809
810     }
811     else {
812         last;
813     }
814     push @riloop, \%ri;
815 }
816
817 $template->param(
818     riloop         => \@riloop,
819     errmsgloop     => \@errmsgloop,
820     exemptfine     => $exemptfine,
821     dropboxmode    => $dropboxmode,
822     dropboxdate    => $dropboxdate,
823     forgivemanualholdsexpire => $forgivemanualholdsexpire,
824     overduecharges => $overduecharges,
825     AudioAlerts        => C4::Context->preference("AudioAlerts"),
826 );
827
828 if ( $barcode ) {
829     my $item_from_barcode = Koha::Items->find({barcode => $barcode }); # How many times do we fetch this item?!?
830     if ( $item_from_barcode ) {
831         $itemnumber = $item_from_barcode->itemnumber;
832         my ( $holdingBranch, $collectionBranch ) = GetCollectionItemBranches( $itemnumber );
833         if ( $holdingBranch and $collectionBranch ) {
834             $holdingBranch //= '';
835             $collectionBranch //= $returnbranch;
836             if ( ! ( $holdingBranch eq $collectionBranch ) ) {
837                 $template->param(
838                   collectionItemNeedsTransferred => 1,
839                   collectionBranch => $collectionBranch,
840                 );
841             }
842         }
843     }
844 }
845
846 $template->param( itemnumber => $itemnumber );
847
848 # Checking if there is a Fast Cataloging Framework
849 $template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find( 'FA' );
850
851 # actually print the page!
852 output_html_with_http_headers $query, $cookie, $template->output;