3 # Copyright 2000-2002 Katipo Communications
5 # 2007-2010 BibLibre, Paul POULAIN
7 # 2011 PTFS-Europe Ltd.
9 # This file is part of Koha.
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.
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.
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>.
26 script to execute returns of books
32 # FIXME There are weird things going on with $patron and $borrowernumber in this script
37 use C4
::Auth qw
/:DEFAULT get_session/;
45 use C4
::Koha
; # FIXME : is it still useful ?
46 use C4
::Members
::Messaging
;
50 use C4
::RotatingCollections
;
51 use Koha
::AuthorisedValues
;
52 use Koha
::BiblioFrameworks
;
63 my ( $template, $librarian, $cookie, $flags ) = get_template_and_user
(
65 template_name
=> "circ/returns.tt",
68 flagsrequired
=> { circulate
=> "circulate_remaining_permissions" },
72 my $sessionID = $query->cookie("CGISESSID");
73 my $session = get_session
($sessionID);
75 # Print a reserve slip on this page
76 if ( $query->param('print_slip') ) {
79 reserve_id
=> scalar $query->param('reserve_id'),
85 my $userenv = C4
::Context
->userenv;
86 my $userenv_branch = $userenv->{'branch'} // '';
87 my $forgivemanualholdsexpire = $query->param('forgivemanualholdsexpire');
89 my $overduecharges = (C4
::Context
->preference('finesMode') && C4
::Context
->preference('finesMode') ne 'off');
91 # Set up the item stack ....
96 foreach ( $query->param ) {
109 my $barcode = $query->param("ri-$counter");
110 my $duedate = $query->param("dd-$counter");
111 my $borrowernumber = $query->param("bn-$counter");
114 # decode barcode ## Didn't we already decode them before passing them back last time??
115 $barcode =~ s/^\s*|\s*$//g; # remove leading/trailing whitespace
116 $barcode = barcodedecode
($barcode) if(C4
::Context
->preference('itemBarcodeInputFilter'));
118 ######################
119 #Are these lines still useful ?
120 $returneditems{$counter} = $barcode;
121 $riduedate{$counter} = $duedate;
122 $riborrowernumber{$counter} = $borrowernumber;
124 #######################
125 $input{counter
} = $counter;
126 $input{barcode
} = $barcode;
127 $input{duedate
} = $duedate;
128 $input{borrowernumber
} = $borrowernumber;
129 push( @inputloop, \
%input );
133 # Deal with the requests....
135 if ($query->param('WT-itemNumber')){
136 updateWrongTransfer
($query->param('WT-itemNumber'),$query->param('WT-waitingAt'),$query->param('WT-From'));
139 my $itemnumber = $query->param('itemnumber');
140 if ( $query->param('reserve_id') ) {
141 my $borrowernumber = $query->param('borrowernumber');
142 my $reserve_id = $query->param('reserve_id');
143 my $diffBranchReturned = $query->param('diffBranch');
144 my $cancel_reserve = $query->param('cancel_reserve');
145 # fix up item type for display
146 my $item = Koha
::Items
->find( $itemnumber );
147 my $biblio = $item->biblio;
149 if ( $cancel_reserve ) {
150 my $hold = Koha
::Holds
->find( $reserve_id );
152 $hold->cancel( { charge_cancel_fee
=> !$forgivemanualholdsexpire } );
155 my $diffBranchSend = ($userenv_branch ne $diffBranchReturned) ?
$diffBranchReturned : undef;
156 # diffBranchSend tells ModReserveAffect whether document is expected in this library or not,
157 # i.e., whether to apply waiting status
158 ModReserveAffect
( $itemnumber, $borrowernumber, $diffBranchSend, $reserve_id );
160 # check if we have other reserves for this document, if we have a return send the message of transfer
161 my ( $messages, $nextreservinfo ) = GetOtherReserves
($itemnumber);
163 my $patron = Koha
::Patrons
->find( $nextreservinfo );
164 my $name = $patron ?
$patron->surname . ", " . $patron->title . " " . $patron->firstname : '';
165 if ( $messages->{'transfert'} ) {
167 itemtitle
=> $biblio->title,
168 itembiblionumber
=> $biblio->biblionumber,
169 iteminfo
=> $biblio->author,
181 my $barcode = $query->param('barcode');
182 my $exemptfine = $query->param('exemptfine');
185 !C4
::Auth
::haspermission
(C4
::Context
->userenv->{'id'}, {'updatecharges' => 'writeoff'})
187 # silently prevent unauthorized operator from forgiving overdue
188 # fines by manually tweaking form parameters
191 my $dropboxmode = $query->param('dropboxmode');
192 my $dotransfer = $query->param('dotransfer');
193 my $canceltransfer = $query->param('canceltransfer');
194 my $dest = $query->param('dest');
195 #dropbox: get last open day (today - 1)
196 my $dropboxdate = Koha
::Checkouts
::calculate_dropbox_date
();
198 my $return_date_override = $query->param('return_date_override');
199 my $return_date_override_dt;
200 my $return_date_override_remember =
201 $query->param('return_date_override_remember');
202 if ($return_date_override) {
203 if ( C4
::Context
->preference('SpecifyReturnDate') ) {
204 $return_date_override_dt = eval {dt_from_string
( $return_date_override ) };
205 if ( $return_date_override_dt ) {
206 # note that we've overriden the return date
207 $template->param( return_date_was_overriden
=> 1);
208 # Save the original format if we are remembering for this series
210 return_date_override
=> $return_date_override,
211 return_date_override_remember
=> 1
212 ) if ($return_date_override_remember);
214 $return_date_override =
215 DateTime
::Format
::MySQL
->format_datetime( $return_date_override_dt );
219 $return_date_override = q{};
224 # An item has been returned to a branch other than the homebranch, and the librarian has chosen to initiate a transfer
225 my $transferitem = $query->param('transferitem');
226 my $tobranch = $query->param('tobranch');
227 my $trigger = $query->param('trigger');
228 ModItemTransfer
($transferitem, $userenv_branch, $tobranch, $trigger);
231 if ($canceltransfer){
232 DeleteTransfer
($itemnumber);
234 print $query->redirect("/cgi-bin/koha/circ/transferstoreceive.pl");
237 $template->param( transfercancelled
=> 1);
241 # actually return book and prepare item table.....
244 $barcode =~ s/^\s*|\s*$//g; # remove leading/trailing whitespace
245 $barcode = barcodedecode
($barcode) if C4
::Context
->preference('itemBarcodeInputFilter');
246 my $item = Koha
::Items
->find({ barcode
=> $barcode });
249 $itemnumber = $item->itemnumber;
250 # Check if we should display a checkin message, based on the the item
251 # type of the checked in item
252 my $itemtype = Koha
::ItemTypes
->find( $item->effective_itemtype );
253 if ( $itemtype && $itemtype->checkinmsg ) {
255 checkinmsg
=> $itemtype->checkinmsg,
256 checkinmsgtype
=> $itemtype->checkinmsgtype,
260 # make sure return branch respects home branch circulation rules, default to homebranch
261 my $hbr = GetBranchItemRule
($item->homebranch, $itemtype ?
$itemtype->itemtype : undef )->{'returnbranch'} || "homebranch";
262 $returnbranch = $hbr ne 'noreturn' ?
$item->$hbr : $userenv_branch; # can be noreturn, homebranch or holdingbranch
264 my $materials = $item->materials;
265 my $descriptions = Koha
::AuthorisedValues
->get_description_by_koha_field({frameworkcode
=> '', kohafield
=>'items.materials', authorised_value
=> $materials });
266 $materials = $descriptions->{lib
} // $materials;
268 my $checkout = $item->checkout;
269 my $biblio = $item->biblio;
271 title
=> $biblio->title,
272 homebranch
=> $item->homebranch,
273 holdingbranch
=> $item->holdingbranch,
274 returnbranch
=> $returnbranch,
275 author
=> $biblio->author,
276 itembarcode
=> $item->barcode,
277 itemtype
=> $item->effective_itemtype,
278 ccode
=> $item->ccode,
279 itembiblionumber
=> $biblio->biblionumber,
280 biblionumber
=> $biblio->biblionumber,
281 additional_materials
=> $materials,
284 } # FIXME else we should not call AddReturn but set BadBarcode directly instead
292 my $return_date = $dropboxmode ?
$dropboxdate : $return_date_override_dt;
294 # Block return if multi-part and confirm has not been received
296 C4
::Context
->preference("CircConfirmItemParts")
299 && !$query->param('multiple_confirm');
300 $template->param( 'multiple_confirmed' => 1 )
301 if $query->param('multiple_confirm');
304 ( $returned, $messages, $issue, $borrower ) =
305 AddReturn
( $barcode, $userenv_branch, $exemptfine, $return_date )
306 unless $needs_confirm;
309 my $time_now = dt_from_string
()->truncate( to
=> 'minute');
310 my $date_due_dt = dt_from_string
( $issue->date_due, 'sql' );
311 my $duedate = $date_due_dt->strftime('%Y-%m-%d %H:%M');
312 $returneditems{0} = $barcode;
313 $riborrowernumber{0} = $borrower->{'borrowernumber'};
314 $riduedate{0} = $duedate;
315 $input{borrowernumber
} = $borrower->{'borrowernumber'};
316 $input{duedate
} = $duedate;
317 unless ( $dropboxmode ) {
318 $input{return_overdue
} = 1 if (DateTime
->compare($date_due_dt, dt_from_string
()) == -1);
320 $input{return_overdue
} = 1 if (DateTime
->compare($date_due_dt, $dropboxdate) == -1);
322 push( @inputloop, \
%input );
324 if ( C4
::Context
->preference("FineNotifyAtCheckin") ) {
325 my $patron = Koha
::Patrons
->find( $borrower->{borrowernumber
} );
326 my $balance = $patron->account->balance;
329 $template->param( fines
=> sprintf("%.2f", $balance) );
330 $template->param( fineborrowernumber
=> $borrower->{'borrowernumber'} );
334 if (C4
::Context
->preference("WaitingNotifyAtCheckin") ) {
335 #Check for waiting holds
336 my $patron = Koha
::Patrons
->find( $borrower->{borrowernumber
} );
337 my $waiting_holds = $patron->holds->search({ found
=> 'W', branchcode
=> $userenv_branch })->count;
338 if ($waiting_holds > 0) {
340 waiting_holds
=> $waiting_holds,
341 holdsborrowernumber
=> $borrower->{'borrowernumber'},
342 holdsfirstname
=> $borrower->{'firstname'},
343 holdssurname
=> $borrower->{'surname'},
347 } elsif ( C4
::Context
->preference('ShowAllCheckins') and !$messages->{'BadBarcode'} and !$needs_confirm ) {
349 $returneditems{0} = $barcode;
351 push( @inputloop, \
%input );
353 $template->param( privacy
=> $borrower->{privacy
} );
355 if ( $needs_confirm ) {
356 $template->param( needs_confirm
=> $needs_confirm );
359 $template->param( inputloop
=> \
@inputloop );
365 # new op dev : we check if the document must be returned to his homebranch directly,
366 # if the document is transferred, we have warning message .
368 if ( $messages->{'WasTransfered'} ) {
375 if ( $messages->{'NeedsTransfer'} ){
378 needstransfer
=> $messages->{'NeedsTransfer'},
379 trigger
=> $messages->{'TransferTrigger'},
383 if ( $messages->{'Wrongbranch'} ){
386 rightbranch
=> $messages->{'Wrongbranch'}->{'Rightbranch'},
390 # case of wrong transfert, if the document wasn't transferred to the right library (according to branchtransfer (tobranch) BDD)
392 if ( $messages->{'WrongTransfer'} and not $messages->{'WasTransfered'}) {
395 TransferWaitingAt
=> $messages->{'WrongTransfer'},
396 WrongTransferItem
=> $messages->{'WrongTransferItem'},
399 my $reserve = $messages->{'ResFound'};
401 my $patron = Koha
::Patrons
->find( $reserve->{'borrowernumber'} );
402 my $name = $patron->surname . ", " . $patron->title . " " . $patron->firstname;
408 wtransfertFrom
=> $userenv_branch,
413 # reserve found and item arrived at the expected branch
415 if ( $messages->{'ResFound'}) {
416 my $reserve = $messages->{'ResFound'};
417 my $patron = Koha
::Patrons
->find( $reserve->{borrowernumber
} );
418 my $holdmsgpreferences = C4
::Members
::Messaging
::GetMessagingPreferences
( { borrowernumber
=> $reserve->{'borrowernumber'}, message_name
=> 'Hold_Filled' } );
419 my $branchCheck = ( $userenv_branch eq $reserve->{branchcode
} );
420 if ( $reserve->{'ResFound'} eq "Reserved" && C4
::Context
->preference('HoldsAutoFill') ) {
421 my $item = Koha
::Items
->find( $itemnumber );
422 my $biblio = $item->biblio;
424 my $diffBranchSend = !$branchCheck ?
$reserve->{branchcode
} : undef;
425 ModReserveAffect
( $reserve->{itemnumber
}, $reserve->{borrowernumber
}, $diffBranchSend, $reserve->{reserve_id
} );
426 my ( $messages, $nextreservinfo ) = GetOtherReserves
($reserve->{itemnumber
});
429 hold_auto_filled
=> 1,
430 print_slip
=> C4
::Context
->preference('HoldsAutoFillPrintSlip'),
431 reserve_id
=> $nextreservinfo->{reserve_id
},
434 if ( $messages->{'transfert'} ) {
436 itemtitle
=> $biblio->title,
437 itembiblionumber
=> $biblio->biblionumber,
438 iteminfo
=> $biblio->author,
442 } elsif ( $reserve->{'ResFound'} eq "Waiting" ) {
444 waiting
=> $branchCheck ?
1 : undef,
446 } elsif ( $reserve->{'ResFound'} eq "Reserved" || $reserve->{'ResFound'} eq "Processing" ) {
448 intransit
=> $branchCheck ?
undef : 1,
449 transfertodo
=> $branchCheck ?
undef : 1,
450 reserve_id
=> $reserve->{reserve_id
},
453 } # else { ; } # error?
455 # same params for Waiting or Reserved
460 destbranch
=> $reserve->{'branchcode'},
461 reservenotes
=> $reserve->{'reservenotes'},
462 reserve_id
=> $reserve->{reserve_id
},
463 bormessagepref
=> $holdmsgpreferences->{'transports'},
469 foreach my $code ( keys %$messages ) {
471 my $exit_required_p = 0;
472 if ( $code eq 'BadBarcode' ) {
473 $err{badbarcode
} = 1;
474 $err{msg
} = $messages->{'BadBarcode'};
476 elsif ( $code eq 'NotIssued' ) {
480 elsif ( $code eq 'LocalUse' ) {
483 elsif ( $code eq 'WasLost' ) {
485 $exit_required_p = 1 if C4
::Context
->preference("BlockReturnOfLostItems");
487 elsif ( $code eq 'LostItemFeeRefunded' ) {
488 $template->param( LostItemFeeRefunded
=> 1 );
490 elsif ( $code eq 'ResFound' ) {
491 ; # FIXME... anything to do here?
493 elsif ( $code eq 'WasReturned' ) {
494 ; # FIXME... anything to do here?
496 elsif ( $code eq 'WasTransfered' ) {
497 ; # FIXME... anything to do here?
499 elsif ( $code eq 'withdrawn' ) {
501 $exit_required_p = 1 if C4
::Context
->preference("BlockReturnOfWithdrawnItems");
503 elsif ( $code eq 'WrongTransfer' ) {
504 ; # FIXME... anything to do here?
506 elsif ( $code eq 'WrongTransferItem' ) {
507 ; # FIXME... anything to do here?
509 elsif ( $code eq 'NeedsTransfer' ) {
511 elsif ( $code eq 'TransferTrigger' ) {
512 ; # Handled alongside NeedsTransfer
514 elsif ( $code eq 'TransferArrived' ) {
515 $err{transferred
} = $messages->{'TransferArrived'};
517 elsif ( $code eq 'Wrongbranch' ) {
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}";
525 elsif ( $code eq 'PrevDebarred' ) {
526 $err{prevdebarred
} = $messages->{'PrevDebarred'};
528 elsif ( $code eq 'ForeverDebarred' ) {
529 $err{foreverdebarred
} = $messages->{'ForeverDebarred'};
531 elsif ( $code eq 'ItemLocationUpdated' ) {
532 $err{ItemLocationUpdated
} = $messages->{ItemLocationUpdated
};
534 elsif ( $code eq 'NotForLoanStatusUpdated' ) {
535 $err{NotForLoanStatusUpdated
} = $messages->{NotForLoanStatusUpdated
};
537 elsif ( $code eq 'DataCorrupted' ) {
538 $err{data_corrupted
} = 1;
540 elsif ( $code eq 'ReturnClaims' ) {
541 $template->param( ReturnClaims
=> $messages->{ReturnClaims
} );
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
547 push( @errmsgloop, \
%err );
549 last if $exit_required_p;
551 $template->param( errmsgloop
=> \
@errmsgloop );
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;
558 { map { $_->{authorised_value
} => $_->{lib
} } Koha
::AuthorisedValues
->get_descriptions_by_koha_field( { frameworkcode
=> '', kohafield
=> 'items.location' } ) };
559 foreach ( sort { $a <=> $b } keys %returneditems ) {
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);
575 $ri{return_overdue
} = 1 if (DateTime
->compare($duedate, $dropboxdate) == -1);
577 $ri{patron
} = $patron,
578 $ri{borissuescount
} = $patron->checkouts->count;
581 $ri{borrowernumber
} = $riborrowernumber{$_};
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
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;
610 $ri{location
} = $item->location;
611 my $shelfcode = $ri{'location'};
612 $ri{'location'} = $shelflocations->{$shelfcode} if ( defined( $shelfcode ) && defined($shelflocations) && exists( $shelflocations->{$shelfcode} ) );
623 errmsgloop
=> \
@errmsgloop,
624 exemptfine
=> $exemptfine,
625 dropboxmode
=> $dropboxmode,
626 dropboxdate
=> $dropboxdate,
627 forgivemanualholdsexpire
=> $forgivemanualholdsexpire,
628 overduecharges
=> $overduecharges,
629 AudioAlerts
=> C4
::Context
->preference("AudioAlerts"),
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 ) ) {
642 collectionItemNeedsTransferred
=> 1,
643 collectionBranch
=> $collectionBranch,
650 $template->param( itemnumber
=> $itemnumber );
652 # Checking if there is a Fast Cataloging Framework
653 $template->param( fast_cataloging
=> 1 ) if Koha
::BiblioFrameworks
->find( 'FA' );
655 # actually print the page!
656 output_html_with_http_headers
$query, $cookie, $template->output;