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

(-)a/C4/Circulation.pm (-2 / +1 lines)
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
- 

Return to bug 37505