Lines 2466-2472
sub AddReturn {
Link Here
|
2466 |
ccode => $item->ccode, |
2466 |
ccode => $item->ccode, |
2467 |
categorycode => $categorycode, |
2467 |
categorycode => $categorycode, |
2468 |
interface => C4::Context->interface, |
2468 |
interface => C4::Context->interface, |
2469 |
}) unless ( $skip_localuse && $stat_type eq 'localuse' ); |
2469 |
}) unless ( $skip_localuse && !$issue ); |
2470 |
|
2470 |
|
2471 |
# Send a check-in slip. # NOTE: borrower may be undef. Do not try to send messages then. |
2471 |
# Send a check-in slip. # NOTE: borrower may be undef. Do not try to send messages then. |
2472 |
if ( $patron ) { |
2472 |
if ( $patron ) { |
2473 |
- |
|
|