@@ -, +, @@ --- C4/Reserves.pm | 2 +- Koha/REST/V1/Holds.pm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) --- a/C4/Reserves.pm +++ a/C4/Reserves.pm @@ -388,7 +388,7 @@ sub CanItemBeReserved { # we retrieve borrowers and items informations # # item->{itype} will come for biblioitems if necessery - my $biblio = $item->biblio; + my $biblio = $item->biblio; my $borrower = $patron->unblessed; # If an item is damaged and we don't allow holds on damaged items, we can stop right here --- a/Koha/REST/V1/Holds.pm +++ a/Koha/REST/V1/Holds.pm @@ -165,7 +165,7 @@ sub add { ) unless $valid_pickup_location || $can_override; my $can_place_hold - = $item_id + = $item ? C4::Reserves::CanItemBeReserved( $patron, $item ) : C4::Reserves::CanBookBeReserved( $patron_id, $biblio_id ); @@ -192,7 +192,7 @@ sub add { { branchcode => $pickup_library_id, borrowernumber => $patron_id, - biblionumber => $biblio_id, + biblionumber => $biblio->id, priority => $priority, reservation_date => $hold_date, expiration_date => $expiration_date, --