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