Role | Person | Comments |
---|---|---|
Solution Architect | Approved | |
Java Lead | ||
UI Lead | ||
Product Owner |
- Transfer/Relink Move Holdings and/or Items Jira Legacy server System JiraJIRA columns key,summary,type,created,updated,due,assignee,reporter,priority,status,resolution serverId 01505d01-b853-3c2e-90f1-ee9b165564fc key UXPROD-137
Requirements
This feature covers ability to move attached records and maintain existing relationships. When moving holdings to another instance, all associated items have to be transferred as moved as well. Bulk moving items and holdings. Ease of linking/relinking bib/holdings/item data. Part of the refined UX design of Inventory. Drag and drop is one possible solution.
BE Design
Connections between items, instances, holdings.
Drawio border true viewerToolbar true fitWindow false diagramName Instance-Holding-Item simpleViewer false diagramWidth 631 revision 1
Possible scenarios and implementation:
1) Move item(s) between holdings
...
This case looks the same to 1). Changing of each moved item with new item.holdingsRecordId.
Bulk operation approach
High-level description
The UI-client sends a collection of items/holdings in a single update move request to endpoints PUT POST /inventory/items/move or inventory/holdings/move API. The mod-inventory processes this request and , retrieves each item/holding from item/holdings-storage, prepares a request for each item/holding in the array update and sends it asynchronously to the mod-inventory-storagetstorage. The mod-inventory waits for all responses from mod-inventory-storage to be completed and populates a response. In case of errors in some of the updating requests in the mod-inventory-storage, the mod-inventory returns a response containing a list of errors for not updated items/holdings.
APIs
Method | Path | Provided permissions | Request | Response | Description | Notes |
---|---|---|---|---|---|---|
POST | inventory/items/move | inventory.items.move.item.post | Move | 201 CREATED | Move items to new holding | |
POST | inventory/holdings/move | inventory.holdings.move.item.post | Move | 201 CREATED | Move holdings to new instance |
Flow details
Sequence diagram:
Drawio border true diagramName Items_holdings_bulk_operations simpleViewer false links auto tbstyle top lbox true diagramWidth 511 revision 45
Steps:
1) Send transfer request move request (it contains id of holding to which items should be moved and items ids).
2) Send GET items collection form item-storage.
...
5) Return response to UI client.
6) Send transfer request move request (it contains id of instance to which holdings should be moved and holdings ids).
...
10) Return response to UI client.
Transfer Move schema:
Field | Type | Required | Note |
---|---|---|---|
to | UUID | true | Unique identifier of instance/holding to which holdings/items to be moved |
ids | Array<UUID> | true | Array of holding/item unique identifiers which will be moved to the new instance/holding |
...