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

(-)a/C4/Circulation.pm (-1 / +3 lines)
Lines 827-832 sub CanBookBeIssued { Link Here
827
            }
827
            }
828
        );
828
        );
829
        ModDateLastSeen( $item_object->itemnumber ); # FIXME Move to Koha::Item
829
        ModDateLastSeen( $item_object->itemnumber ); # FIXME Move to Koha::Item
830
        if ( $item_object->onloan ) {
831
            AddReturn( $item_object->barcode, C4::Context->userenv->{'branch'} );
832
        }
830
        return( { STATS => 1 }, {});
833
        return( { STATS => 1 }, {});
831
    }
834
    }
832
835
833
- 

Return to bug 27992