|
Lines 1634-1640
sub GetBranchItemRule {
Link Here
|
| 1634 |
=head2 AddReturn |
1634 |
=head2 AddReturn |
| 1635 |
|
1635 |
|
| 1636 |
($doreturn, $messages, $iteminformation, $borrower) = |
1636 |
($doreturn, $messages, $iteminformation, $borrower) = |
| 1637 |
&AddReturn($barcode, $branch, $exemptfine, $dropbox, $returndate); |
1637 |
&AddReturn( $barcode, $branch [,$exemptfine] [,$dropbox] [,$returndate] ); |
| 1638 |
|
1638 |
|
| 1639 |
Returns a book. |
1639 |
Returns a book. |
| 1640 |
|
1640 |
|
|
Lines 1645-1660
Returns a book.
Link Here
|
| 1645 |
=item C<$branch> is the code of the branch where the book is being returned. |
1645 |
=item C<$branch> is the code of the branch where the book is being returned. |
| 1646 |
|
1646 |
|
| 1647 |
=item C<$exemptfine> indicates that overdue charges for the item will be |
1647 |
=item C<$exemptfine> indicates that overdue charges for the item will be |
| 1648 |
removed. |
1648 |
removed. Optional. |
| 1649 |
|
1649 |
|
| 1650 |
=item C<$dropbox> indicates that the check-in date is assumed to be |
1650 |
=item C<$dropbox> indicates that the check-in date is assumed to be |
| 1651 |
yesterday, or the last non-holiday as defined in C4::Calendar . If |
1651 |
yesterday, or the last non-holiday as defined in C4::Calendar . If |
| 1652 |
overdue charges are applied and C<$dropbox> is true, the last charge |
1652 |
overdue charges are applied and C<$dropbox> is true, the last charge |
| 1653 |
will be removed. This assumes that the fines accrual script has run |
1653 |
will be removed. This assumes that the fines accrual script has run |
| 1654 |
for _today_. |
1654 |
for _today_. Optional. |
| 1655 |
|
1655 |
|
| 1656 |
=item C<$return_date> allows the default return date to be overridden |
1656 |
=item C<$return_date> allows the default return date to be overridden |
| 1657 |
by the given return date. |
1657 |
by the given return date. Optional. |
| 1658 |
|
1658 |
|
| 1659 |
=back |
1659 |
=back |
| 1660 |
|
1660 |
|