434 |
C4::Reserves::AddReserve($patron->branchcode, $patron->borrowernumber, $item->biblionumber ); |
434 |
C4::Reserves::AddReserve({ branchcode => $patron->branchcode, borrowernumber => $patron->borrowernumber, biblionumber => $item->biblionumber }); |
435 |
is( $item->safe_to_delete, 'last_item_for_hold', 'Item cannot be deleted if a biblio-level is placed on the biblio and there is only 1 item attached to the biblio' ); |
435 |
is( $item->safe_to_delete, 'last_item_for_hold', 'Item cannot be deleted if a biblio-level is placed on the biblio and there is only 1 item attached to the biblio' ); |
437 |
# With another item attached to the biblio, the item can be deleted |
437 |
# With another item attached to the biblio, the item can be deleted |