@@ -, +, @@ --- C4/Circulation.pm | 8 +------- C4/SIP/ILS/Transaction/Checkin.pm | 2 +- 2 files changed, 2 insertions(+), 8 deletions(-) --- a/C4/Circulation.pm +++ a/C4/Circulation.pm @@ -1759,7 +1759,7 @@ sub GetBranchItemRule { =head2 AddReturn ($doreturn, $messages, $iteminformation, $borrower) = - &AddReturn( $barcode, $branch [,$exemptfine] [,$dropbox] [,$returndate] ); + &AddReturn( $barcode, $branch [,$exemptfine] [,$returndate] ); Returns a book. @@ -1772,12 +1772,6 @@ Returns a book. =item C<$exemptfine> indicates that overdue charges for the item will be removed. Optional. -=item C<$dropbox> indicates that the check-in date is assumed to be -yesterday, or the last non-holiday as defined in C4::Calendar . If -overdue charges are applied and C<$dropbox> is true, the last charge -will be removed. This assumes that the fines accrual script has run -for _today_. Optional. - =item C<$return_date> allows the default return date to be overridden by the given return date. Optional. --- a/C4/SIP/ILS/Transaction/Checkin.pm +++ a/C4/SIP/ILS/Transaction/Checkin.pm @@ -65,7 +65,7 @@ sub do_checkin { . substr( $return_date, 16, 2 ); $debug and warn "do_checkin() calling AddReturn($barcode, $branch)"; - my ($return, $messages, $issue, $borrower) = AddReturn($barcode, $branch, undef, undef, $return_date); + my ($return, $messages, $issue, $borrower) = AddReturn($barcode, $branch, undef, $return_date); $self->alert(!$return); # ignoring messages: NotIssued, WasLost, WasTransfered --