@@ -, +, @@ not for loan items when checking renewability 1) Enable AllowRenewalIfOtherItemsAvailable 2) Create a record with two items 3) Check out one item to a patron 4) Ensure the item is renewable 5) Place a hold on the record 6) The item should now be non-renewable 7) Add a second item to the record, but with a not for loan value < 0 8) Note the checkout is still renewable 9) Apply this patch --- C4/Circulation.pm | 1 + 1 file changed, 1 insertion(+) --- a/C4/Circulation.pm +++ a/C4/Circulation.pm @@ -2693,6 +2693,7 @@ sub CanBookBeRenewed { { biblionumber => $resrec->{biblionumber}, onloan => undef, + notforloan => 0, -not => { itemnumber => $itemnumber } }, { columns => 'itemnumber' } --