Koha/api/v1/swagger/definitions/bundle_link.yaml
Julian Maurice 6561cd84b6
Bug 33021: Show an alert when adding a reserved item to an item bundle
Test plan:
1. Create an item bundle (see bug 28854 comment 458)
2. Create a biblio with one item and place a hold for this item.
3. Try to add the reserved item to the bundle
   You should see a message saying that the item is reserved. Next to
   this message should be a button "Ignore holds and add to bundle".
4. Click on the button. There should be a message saying that the item
   was added to the bundle.
5. Close the modal window and verify that the item was correctly
   added to the bundle

Signed-off-by: Lucas Gass <lucas@bywatersolutiosn.com>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-03-27 12:50:05 +02:00

22 lines
351 B
YAML

---
type: object
properties:
item_id:
type:
- integer
- "null"
description: Internal item identifier
external_id:
type:
- string
- "null"
description: Item barcode
force_checkin:
type:
- boolean
- "null"
ignore_holds:
type:
- boolean
- "null"
additionalProperties: false