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

(-)a/C4/Circulation.pm (-1 / +3 lines)
Lines 801-806 sub CanBookBeIssued { Link Here
801
                     ccode => $item_object->ccode}
801
                     ccode => $item_object->ccode}
802
                    );
802
                    );
803
        ModDateLastSeen( $item_object->itemnumber ); # FIXME Move to Koha::Item
803
        ModDateLastSeen( $item_object->itemnumber ); # FIXME Move to Koha::Item
804
        if ( $item_object->onloan ) {
805
            AddReturn( $item_object->barcode, C4::Context->userenv->{'branch'} );
806
        }
804
        return( { STATS => 1 }, {});
807
        return( { STATS => 1 }, {});
805
    }
808
    }
806
809
807
- 

Return to bug 27992