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

(-)a/C4/Circulation.pm (-1 / +6 lines)
Lines 827-832 sub CanBookBeIssued { Link Here
827
                location       => $item_object->location,
827
                location       => $item_object->location,
828
            }
828
            }
829
        );
829
        );
830
831
        #increment items.localuse
832
        my $localuse_count = $item_object->localuse;
833
        $localuse_count++;
834
        $item_object->localuse( $localuse_count )->store;
835
830
        ModDateLastSeen( $item_object->itemnumber ); # FIXME Move to Koha::Item
836
        ModDateLastSeen( $item_object->itemnumber ); # FIXME Move to Koha::Item
831
        return( { STATS => 1 }, {});
837
        return( { STATS => 1 }, {});
832
    }
838
    }
833
- 

Return to bug 16122