@@ -, +, @@ patron --- C4/Circulation.pm | 6 ++++++ 1 file changed, 6 insertions(+) --- a/C4/Circulation.pm +++ a/C4/Circulation.pm @@ -827,6 +827,12 @@ sub CanBookBeIssued { location => $item_object->location, } ); + + #increment items.localuse + my $localuse_count = $item_object->localuse; + $localuse_count++; + $item_object->localuse( $localuse_count )->store; + ModDateLastSeen( $item_object->itemnumber ); # FIXME Move to Koha::Item return( { STATS => 1 }, {}); } --