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
34 $SIG{ __DIE__
} = sub { Carp
::confess
( @_ ) };
39 use C4
::Auth qw
/:DEFAULT get_session/;
47 use C4
::Members
::Messaging
;
48 use C4
::Koha
; # FIXME : is it still useful ?
49 use C4
::RotatingCollections
;
50 use Koha
::AuthorisedValues
;
54 use Koha
::BiblioFrameworks
;
59 my ( $template, $librarian, $cookie, $flags ) = get_template_and_user
(
61 template_name
=> "circ/returns.tt",
65 flagsrequired
=> { circulate
=> "circulate_remaining_permissions" },
69 my $sessionID = $query->cookie("CGISESSID");
70 my $session = get_session
($sessionID);
71 if ($session->param('branch') eq 'NO_LIBRARY_SET'){
72 # no branch set we can't return
73 print $query->redirect("/cgi-bin/koha/circ/selectbranchprinter.pl");
77 # Print a reserve slip on this page
78 if ( $query->param('print_slip') ) {
81 borrowernumber
=> scalar $query->param('borrowernumber'),
82 biblionumber
=> scalar $query->param('biblionumber'),
88 my $printers = GetPrinters
();
89 my $userenv = C4
::Context
->userenv;
90 my $userenv_branch = $userenv->{'branch'} // '';
91 my $printer = $userenv->{'branchprinter'} // '';
92 my $forgivemanualholdsexpire = $query->param('forgivemanualholdsexpire');
94 my $overduecharges = (C4
::Context
->preference('finesMode') && C4
::Context
->preference('finesMode') ne 'off');
96 # Some code to handle the error if there is no branch or printer setting.....
99 # Set up the item stack ....
102 my %riborrowernumber;
104 foreach ( $query->param ) {
117 my $barcode = $query->param("ri-$counter");
118 my $duedate = $query->param("dd-$counter");
119 my $borrowernumber = $query->param("bn-$counter");
122 # decode barcode ## Didn't we already decode them before passing them back last time??
123 $barcode =~ s/^\s*|\s*$//g; # remove leading/trailing whitespace
124 $barcode = barcodedecode
($barcode) if(C4
::Context
->preference('itemBarcodeInputFilter'));
126 ######################
127 #Are these lines still useful ?
128 $returneditems{$counter} = $barcode;
129 $riduedate{$counter} = $duedate;
130 $riborrowernumber{$counter} = $borrowernumber;
132 #######################
133 $input{counter
} = $counter;
134 $input{barcode
} = $barcode;
135 $input{duedate
} = $duedate;
136 $input{borrowernumber
} = $borrowernumber;
137 push( @inputloop, \
%input );
141 # Deal with the requests....
143 if ($query->param('WT-itemNumber')){
144 updateWrongTransfer
($query->param('WT-itemNumber'),$query->param('WT-waitingAt'),$query->param('WT-From'));
147 if ( $query->param('reserve_id') ) {
148 my $item = $query->param('itemnumber');
149 my $borrowernumber = $query->param('borrowernumber');
150 my $reserve_id = $query->param('reserve_id');
151 my $diffBranchReturned = $query->param('diffBranch');
152 my $iteminfo = GetBiblioFromItemNumber
($item);
153 my $cancel_reserve = $query->param('cancel_reserve');
154 # fix up item type for display
155 $iteminfo->{'itemtype'} = C4
::Context
->preference('item-level_itypes') ?
$iteminfo->{'itype'} : $iteminfo->{'itemtype'};
157 if ( $cancel_reserve ) {
158 CancelReserve
({ reserve_id
=> $reserve_id, charge_cancel_fee
=> !$forgivemanualholdsexpire });
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
( $item, $borrowernumber, $diffBranchSend, $reserve_id );
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
($item);
168 my $borr = GetMember
( borrowernumber
=> $nextreservinfo );
169 my $name = $borr->{'surname'} . ", " . $borr->{'title'} . " " . $borr->{'firstname'};
170 if ( $messages->{'transfert'} ) {
172 itemtitle
=> $iteminfo->{'title'},
173 itemnumber
=> $iteminfo->{'itemnumber'},
174 itembiblionumber
=> $iteminfo->{'biblionumber'},
175 iteminfo
=> $iteminfo->{'author'},
177 borrowernumber
=> $borrowernumber,
178 borcnum
=> $borr->{'cardnumber'},
179 borfirstname
=> $borr->{'firstname'},
180 borsurname
=> $borr->{'surname'},
181 borcategory
=> $borr->{'description'},
190 my $issueinformation;
192 my $barcode = $query->param('barcode');
193 my $exemptfine = $query->param('exemptfine');
196 !C4
::Auth
::haspermission
(C4
::Context
->userenv->{'id'}, {'updatecharges' => 'writeoff'})
198 # silently prevent unauthorized operator from forgiving overdue
199 # fines by manually tweaking form parameters
202 my $dropboxmode = $query->param('dropboxmode');
203 my $dotransfer = $query->param('dotransfer');
204 my $canceltransfer = $query->param('canceltransfer');
205 my $dest = $query->param('dest');
206 my $calendar = Koha
::Calendar
->new( branchcode
=> $userenv_branch );
207 #dropbox: get last open day (today - 1)
208 my $today = DateTime
->now( time_zone
=> C4
::Context
->tz());
209 my $dropboxdate = $calendar->addDate($today, -1);
211 my $return_date_override = $query->param('return_date_override');
212 my $return_date_override_remember =
213 $query->param('return_date_override_remember');
214 if ($return_date_override) {
215 if ( C4
::Context
->preference('SpecifyReturnDate') ) {
216 my $return_date_override_dt = eval {dt_from_string
( $return_date_override ) };
217 if ( $return_date_override_dt ) {
218 # note that we've overriden the return date
219 $template->param( return_date_was_overriden
=> 1);
220 # Save the original format if we are remembering for this series
222 return_date_override
=> $return_date_override,
223 return_date_override_remember
=> 1
224 ) if ($return_date_override_remember);
226 $return_date_override =
227 DateTime
::Format
::MySQL
->format_datetime( $return_date_override_dt );
231 $return_date_override = q{};
236 # An item has been returned to a branch other than the homebranch, and the librarian has chosen to initiate a transfer
237 my $transferitem = $query->param('transferitem');
238 my $tobranch = $query->param('tobranch');
239 ModItemTransfer
($transferitem, $userenv_branch, $tobranch);
242 if ($canceltransfer){
243 $itemnumber=$query->param('itemnumber');
244 DeleteTransfer
($itemnumber);
246 print $query->redirect("/cgi-bin/koha/circ/transferstoreceive.pl");
249 $template->param( transfercancelled
=> 1);
253 # actually return book and prepare item table.....
256 $barcode =~ s/^\s*|\s*$//g; # remove leading/trailing whitespace
257 $barcode = barcodedecode
($barcode) if C4
::Context
->preference('itemBarcodeInputFilter');
258 $itemnumber = GetItemnumberFromBarcode
($barcode);
264 # get biblio description
265 my $biblio = GetBiblioFromItemNumber
($itemnumber);
266 # fix up item type for display
267 $biblio->{'itemtype'} = C4
::Context
->preference('item-level_itypes') ?
$biblio->{'itype'} : $biblio->{'itemtype'};
269 # Check if we should display a checkin message, based on the the item
270 # type of the checked in item
271 my $itemtype = Koha
::ItemTypes
->find( $biblio->{'itemtype'} );
272 if ( $itemtype && $itemtype->checkinmsg ) {
274 checkinmsg
=> $itemtype->checkinmsg,
275 checkinmsgtype
=> $itemtype->checkinmsgtype,
279 # make sure return branch respects home branch circulation rules, default to homebranch
280 my $hbr = GetBranchItemRule
($biblio->{'homebranch'}, $itemtype ?
$itemtype->itemtype : undef )->{'returnbranch'} || "homebranch";
281 $returnbranch = $biblio->{$hbr};
283 my $materials = $biblio->{'materials'};
284 my $descriptions = Koha
::AuthorisedValues
->get_description_by_koha_field({frameworkcode
=> '', kohafield
=>'items.materials', authorised_value
=> $materials });
285 $materials = $descriptions->{lib
} // $materials;
287 my $issue = Koha
::Checkouts
->find( { itemnumber
=> $itemnumber } );
290 title
=> $biblio->{'title'},
291 homebranch
=> $biblio->{'homebranch'},
292 holdingbranch
=> $biblio->{'holdingbranch'},
293 returnbranch
=> $returnbranch,
294 author
=> $biblio->{'author'},
295 itembarcode
=> $biblio->{'barcode'},
296 itemtype
=> $biblio->{'itemtype'},
297 ccode
=> $biblio->{'ccode'},
298 itembiblionumber
=> $biblio->{'biblionumber'},
299 biblionumber
=> $biblio->{'biblionumber'},
300 borrower
=> $borrower,
301 additional_materials
=> $materials,
312 ( $returned, $messages, $issueinformation, $borrower ) =
313 AddReturn
( $barcode, $userenv_branch, $exemptfine, $dropboxmode, $return_date_override, $dropboxdate );
316 my $time_now = DateTime
->now( time_zone
=> C4
::Context
->tz )->truncate( to
=> 'minute');
317 my $duedate = $issueinformation->{date_due
}->strftime('%Y-%m-%d %H:%M');
318 $returneditems{0} = $barcode;
319 $riborrowernumber{0} = $borrower->{'borrowernumber'};
320 $riduedate{0} = $duedate;
321 $input{borrowernumber
} = $borrower->{'borrowernumber'};
322 $input{duedate
} = $duedate;
323 unless ( $dropboxmode ) {
324 $input{return_overdue
} = 1 if (DateTime
->compare($issueinformation->{date_due
}, DateTime
->now()) == -1);
326 $input{return_overdue
} = 1 if (DateTime
->compare($issueinformation->{date_due
}, $dropboxdate) == -1);
328 push( @inputloop, \
%input );
330 if ( C4
::Context
->preference("FineNotifyAtCheckin") ) {
331 my $patron = Koha
::Patrons
->find( $borrower->{borrowernumber
} );
332 my $balance = $patron->account->balance;
335 $template->param( fines
=> sprintf("%.2f", $balance) );
336 $template->param( fineborrowernumber
=> $borrower->{'borrowernumber'} );
340 if (C4
::Context
->preference("WaitingNotifyAtCheckin") ) {
341 #Check for waiting holds
342 my @reserves = GetReservesFromBorrowernumber
($borrower->{'borrowernumber'});
343 my $waiting_holds = 0;
344 foreach my $num_res (@reserves) {
345 if ( $num_res->{'found'} eq 'W' && $num_res->{'branchcode'} eq $userenv_branch) {
349 if ($waiting_holds > 0) {
351 waiting_holds
=> $waiting_holds,
352 holdsborrowernumber
=> $borrower->{'borrowernumber'},
353 holdsfirstname
=> $borrower->{'firstname'},
354 holdssurname
=> $borrower->{'surname'},
358 } elsif ( C4
::Context
->preference('ShowAllCheckins') and !$messages->{'BadBarcode'} ) {
360 $returneditems{0} = $barcode;
362 push( @inputloop, \
%input );
364 $template->param( privacy
=> $borrower->{privacy
} );
366 $template->param( inputloop
=> \
@inputloop );
372 # new op dev : we check if the document must be returned to his homebranch directly,
373 # if the document is transfered, we have warning message .
375 if ( $messages->{'WasTransfered'} ) {
379 itemnumber
=> $itemnumber,
383 if ( $messages->{'NeedsTransfer'} ){
386 needstransfer
=> $messages->{'NeedsTransfer'},
387 itemnumber
=> $itemnumber,
391 if ( $messages->{'Wrongbranch'} ){
394 rightbranch
=> $messages->{'Wrongbranch'}->{'Rightbranch'},
398 # case of wrong transfert, if the document wasn't transfered to the right library (according to branchtransfer (tobranch) BDD)
400 if ( $messages->{'WrongTransfer'} and not $messages->{'WasTransfered'}) {
403 TransferWaitingAt
=> $messages->{'WrongTransfer'},
404 WrongTransferItem
=> $messages->{'WrongTransferItem'},
405 itemnumber
=> $itemnumber,
408 my $reserve = $messages->{'ResFound'};
409 my $borr = C4
::Members
::GetMember
( borrowernumber
=> $reserve->{'borrowernumber'} );
410 my $name = $borr->{'surname'} . ", " . $borr->{'title'} . " " . $borr->{'firstname'};
413 wborfirstname
=> $borr->{'firstname'},
414 wborsurname
=> $borr->{'surname'},
415 wborcategory
=> $borr->{'description'},
416 wbortitle
=> $borr->{'title'},
417 wborphone
=> $borr->{'phone'},
418 wboremail
=> $borr->{'email'},
419 streetnumber
=> $borr->{streetnumber
},
420 streettype
=> $borr->{streettype
},
421 address
=> $borr->{'address'},
422 address2
=> $borr->{'address2'},
423 city
=> $borr->{'city'},
424 zipcode
=> $borr->{'zipcode'},
425 state => $borr->{'state'},
426 country
=> $borr->{'country'},
427 wborrowernumber
=> $reserve->{'borrowernumber'},
428 wborcnum
=> $borr->{'cardnumber'},
429 wtransfertFrom
=> $userenv_branch,
434 # reserve found and item arrived at the expected branch
436 if ( $messages->{'ResFound'}) {
437 my $reserve = $messages->{'ResFound'};
438 my $borr = C4
::Members
::GetMember
( borrowernumber
=> $reserve->{'borrowernumber'} );
439 my $holdmsgpreferences = C4
::Members
::Messaging
::GetMessagingPreferences
( { borrowernumber
=> $reserve->{'borrowernumber'}, message_name
=> 'Hold_Filled' } );
440 if ( $reserve->{'ResFound'} eq "Waiting" or $reserve->{'ResFound'} eq "Reserved" ) {
441 if ( $reserve->{'ResFound'} eq "Waiting" ) {
443 waiting
=> ($userenv_branch eq $reserve->{'branchcode'} ?
1 : 0 ),
445 } elsif ( $reserve->{'ResFound'} eq "Reserved" ) {
447 intransit
=> ($userenv_branch eq $reserve->{'branchcode'} ?
0 : 1 ),
448 transfertodo
=> ($userenv_branch eq $reserve->{'branchcode'} ?
0 : 1 ),
449 reserve_id
=> $reserve->{reserve_id
},
454 # same params for Waiting or Reserved
457 name
=> $borr->{'surname'} . ", " . $borr->{'title'} . " " . $borr->{'firstname'},
458 borfirstname
=> $borr->{'firstname'},
459 borsurname
=> $borr->{'surname'},
460 borcategory
=> $borr->{'description'},
461 bortitle
=> $borr->{'title'},
462 borphone
=> $borr->{'phone'},
463 boremail
=> $borr->{'email'},
464 streetnumber
=> $borr->{streetnumber
},
465 streettype
=> $borr->{streettype
},
466 address
=> $borr->{'address'},
467 address2
=> $borr->{'address2'},
468 city
=> $borr->{'city'},
469 zipcode
=> $borr->{'zipcode'},
470 state => $borr->{'state'},
471 country
=> $borr->{'country'},
472 borcnum
=> $borr->{'cardnumber'},
473 debarred
=> $borr->{'debarred'},
474 gonenoaddress
=> $borr->{'gonenoaddress'},
476 destbranch
=> $reserve->{'branchcode'},
477 borrowernumber
=> $reserve->{'borrowernumber'},
478 itemnumber
=> $reserve->{'itemnumber'},
479 reservenotes
=> $reserve->{'reservenotes'},
480 reserve_id
=> $reserve->{reserve_id
},
481 bormessagepref
=> $holdmsgpreferences->{'transports'},
483 } # else { ; } # error?
488 foreach my $code ( keys %$messages ) {
490 my $exit_required_p = 0;
491 if ( $code eq 'BadBarcode' ) {
492 $err{badbarcode
} = 1;
493 $err{msg
} = $messages->{'BadBarcode'};
495 elsif ( $code eq 'NotIssued' ) {
498 $err{msg
} = $messages->{'IsPermanent'} if $messages->{'IsPermanent'};
500 elsif ( $code eq 'LocalUse' ) {
503 elsif ( $code eq 'WasLost' ) {
506 elsif ( $code eq 'LostItemFeeRefunded' ) {
507 $template->param( LostItemFeeRefunded
=> 1 );
509 elsif ( $code eq 'ResFound' ) {
510 ; # FIXME... anything to do here?
512 elsif ( $code eq 'WasReturned' ) {
513 ; # FIXME... anything to do here?
515 elsif ( $code eq 'WasTransfered' ) {
516 ; # FIXME... anything to do here?
518 elsif ( $code eq 'withdrawn' ) {
520 $exit_required_p = 1 if C4
::Context
->preference("BlockReturnOfWithdrawnItems");
522 elsif ( ( $code eq 'IsPermanent' ) && ( not $messages->{'ResFound'} ) ) {
523 if ( $messages->{'IsPermanent'} ne $userenv_branch ) {
524 $err{ispermanent
} = 1;
525 $err{msg
} = $messages->{'IsPermanent'};
528 elsif ( $code eq 'WrongTransfer' ) {
529 ; # FIXME... anything to do here?
531 elsif ( $code eq 'WrongTransferItem' ) {
532 ; # FIXME... anything to do here?
534 elsif ( $code eq 'NeedsTransfer' ) {
536 elsif ( $code eq 'Wrongbranch' ) {
538 elsif ( $code eq 'Debarred' ) {
539 $err{debarred
} = $messages->{'Debarred'};
540 $err{debarcardnumber
} = $borrower->{cardnumber
};
541 $err{debarborrowernumber
} = $borrower->{borrowernumber
};
542 $err{debarname
} = "$borrower->{firstname} $borrower->{surname}";
544 elsif ( $code eq 'PrevDebarred' ) {
545 $err{prevdebarred
} = $messages->{'PrevDebarred'};
547 elsif ( $code eq 'ForeverDebarred' ) {
548 $err{foreverdebarred
} = $messages->{'ForeverDebarred'};
550 elsif ( $code eq 'NotForLoanStatusUpdated' ) {
551 $err{NotForLoanStatusUpdated
} = $messages->{NotForLoanStatusUpdated
};
554 die "Unknown error code $code"; # note we need all the (empty) elsif's above, or we die.
555 # This forces the issue of staying in sync w/ Circulation.pm
558 push( @errmsgloop, \
%err );
560 last if $exit_required_p;
562 $template->param( errmsgloop
=> \
@errmsgloop );
564 #set up so only the last 8 returned items display (make for faster loading pages)
565 my $returned_counter = ( C4
::Context
->preference('numReturnedItemsToShow') ) ? C4
::Context
->preference('numReturnedItemsToShow') : 8;
569 { map { $_->{authorised_value
} => $_->{lib
} } Koha
::AuthorisedValues
->get_descriptions_by_koha_field( { frameworkcode
=> '', kohafield
=> 'items.location' } ) };
570 foreach ( sort { $a <=> $b } keys %returneditems ) {
572 if ( $count++ < $returned_counter ) {
573 my $bar_code = $returneditems{$_};
574 if ($riduedate{$_}) {
575 my $duedate = dt_from_string
( $riduedate{$_}, 'sql');
576 $ri{year
} = $duedate->year();
577 $ri{month
} = $duedate->month();
578 $ri{day
} = $duedate->day();
579 $ri{hour
} = $duedate->hour();
580 $ri{minute
} = $duedate->minute();
581 $ri{duedate
} = output_pref
($duedate);
582 my $b = C4
::Members
::GetMember
( borrowernumber
=> $riborrowernumber{$_} );
583 unless ( $dropboxmode ) {
584 $ri{return_overdue
} = 1 if (DateTime
->compare($duedate, DateTime
->now()) == -1);
586 $ri{return_overdue
} = 1 if (DateTime
->compare($duedate, $dropboxdate) == -1);
588 $ri{borrowernumber
} = $b->{'borrowernumber'};
589 $ri{borcnum
} = $b->{'cardnumber'};
590 $ri{borfirstname
} = $b->{'firstname'};
591 $ri{borsurname
} = $b->{'surname'};
592 $ri{bortitle
} = $b->{'title'};
593 $ri{bornote
} = $b->{'borrowernotes'};
594 $ri{borcategorycode
}= $b->{'categorycode'};
595 $ri{borissuescount
} = Koha
::Checkouts
->count( { borrowernumber
=> $b->{'borrowernumber'} } );
598 $ri{borrowernumber
} = $riborrowernumber{$_};
602 my $biblio = GetBiblioFromItemNumber
(GetItemnumberFromBarcode
($bar_code));
603 my $item = GetItem
( GetItemnumberFromBarcode
($bar_code) );
604 # fix up item type for display
605 $biblio->{'itemtype'} = C4
::Context
->preference('item-level_itypes') ?
$biblio->{'itype'} : $biblio->{'itemtype'};
606 $ri{itembiblionumber
} = $biblio->{'biblionumber'};
607 $ri{itemtitle
} = $biblio->{'title'};
608 $ri{itemauthor
} = $biblio->{'author'};
609 $ri{itemcallnumber
} = $biblio->{'itemcallnumber'};
610 $ri{dateaccessioned
} = $item->{dateaccessioned
};
611 $ri{itemtype
} = $biblio->{'itemtype'};
612 $ri{itemnote
} = $biblio->{'itemnotes'};
613 $ri{itemnotes_nonpublic
} = $item->{'itemnotes_nonpublic'};
614 $ri{ccode
} = $biblio->{'ccode'};
615 $ri{enumchron
} = $biblio->{'enumchron'};
616 $ri{itemnumber
} = $biblio->{'itemnumber'};
617 $ri{barcode
} = $bar_code;
618 $ri{homebranch
} = $item->{'homebranch'};
619 $ri{holdingbranch
} = $item->{'holdingbranch'};
621 $ri{location
} = $biblio->{'location'};
622 my $shelfcode = $ri{'location'};
623 $ri{'location'} = $shelflocations->{$shelfcode} if ( defined( $shelfcode ) && defined($shelflocations) && exists( $shelflocations->{$shelfcode} ) );
635 errmsgloop
=> \
@errmsgloop,
636 exemptfine
=> $exemptfine,
637 dropboxmode
=> $dropboxmode,
638 dropboxdate
=> output_pref
($dropboxdate),
639 forgivemanualholdsexpire
=> $forgivemanualholdsexpire,
640 overduecharges
=> $overduecharges,
641 AudioAlerts
=> C4
::Context
->preference("AudioAlerts"),
642 BlockReturnOfWithdrawnItems
=> C4
::Context
->preference("BlockReturnOfWithdrawnItems"),
645 $itemnumber = GetItemnumberFromBarcode
( $barcode );
647 my ( $holdingBranch, $collectionBranch ) = GetCollectionItemBranches
( $itemnumber );
648 if ( $holdingBranch and $collectionBranch ) {
649 $holdingBranch //= '';
650 $collectionBranch //= $returnbranch;
651 if ( ! ( $holdingBranch eq $collectionBranch ) ) {
653 collectionItemNeedsTransferred
=> 1,
654 collectionBranch
=> $collectionBranch,
655 itemnumber
=> $itemnumber,
661 # Checking if there is a Fast Cataloging Framework
662 $template->param( fast_cataloging
=> 1 ) if Koha
::BiblioFrameworks
->find( 'FA' );
664 # actually print the page!
665 output_html_with_http_headers
$query, $cookie, $template->output;