View | Details | Raw Unified | Return to bug 14591
Collapse All | Expand All

(-)a/C4/Circulation.pm (-7 / +1 lines)
Lines 1759-1765 sub GetBranchItemRule { Link Here
1759
=head2 AddReturn
1759
=head2 AddReturn
1760
1760
1761
  ($doreturn, $messages, $iteminformation, $borrower) =
1761
  ($doreturn, $messages, $iteminformation, $borrower) =
1762
      &AddReturn( $barcode, $branch [,$exemptfine] [,$dropbox] [,$returndate] );
1762
      &AddReturn( $barcode, $branch [,$exemptfine] [,$returndate] );
1763
1763
1764
Returns a book.
1764
Returns a book.
1765
1765
Lines 1772-1783 Returns a book. Link Here
1772
=item C<$exemptfine> indicates that overdue charges for the item will be
1772
=item C<$exemptfine> indicates that overdue charges for the item will be
1773
removed. Optional.
1773
removed. Optional.
1774
1774
1775
=item C<$dropbox> indicates that the check-in date is assumed to be
1776
yesterday, or the last non-holiday as defined in C4::Calendar .  If
1777
overdue charges are applied and C<$dropbox> is true, the last charge
1778
will be removed.  This assumes that the fines accrual script has run
1779
for _today_. Optional.
1780
1781
=item C<$return_date> allows the default return date to be overridden
1775
=item C<$return_date> allows the default return date to be overridden
1782
by the given return date. Optional.
1776
by the given return date. Optional.
1783
1777
(-)a/C4/SIP/ILS/Transaction/Checkin.pm (-2 / +1 lines)
Lines 65-71 sub do_checkin { Link Here
65
                   . substr( $return_date, 16, 2 );
65
                   . substr( $return_date, 16, 2 );
66
66
67
    $debug and warn "do_checkin() calling AddReturn($barcode, $branch)";
67
    $debug and warn "do_checkin() calling AddReturn($barcode, $branch)";
68
    my ($return, $messages, $issue, $borrower) = AddReturn($barcode, $branch, undef, undef, $return_date);
68
    my ($return, $messages, $issue, $borrower) = AddReturn($barcode, $branch, undef, $return_date);
69
    $self->alert(!$return);
69
    $self->alert(!$return);
70
    # ignoring messages: NotIssued, WasLost, WasTransfered
70
    # ignoring messages: NotIssued, WasLost, WasTransfered
71
71
72
- 

Return to bug 14591