Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


RolePersonComments
Solution ArchitectApproved
Java Lead
UI Lead
Product Owner


Jira Legacy
serverSystem JiraJIRA
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverId01505d01-b853-3c2e-90f1-ee9b165564fc
keyUXPROD-137
 - Transfer/Relink  Move Holdings and/or Items

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
bordertrue
viewerToolbartrue
fitWindowfalse
diagramNameInstance-Holding-Item
simpleViewerfalse
diagramWidth631
revision1

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

MethodPathProvided permissionsRequestResponseDescriptionNotes
POST

inventory/items/move

inventory.items.move.item.postMove201 CREATEDMove items to new holding


POSTinventory/holdings/moveinventory.holdings.move.item.postMove201 CREATEDMove holdings to new instance

Flow details

Sequence diagram:

Drawio
bordertrue
diagramNameItems_holdings_bulk_operations
simpleViewerfalse
linksauto
tbstyletop
lboxtrue
diagramWidth511
revision45


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:

FieldTypeRequiredNote
toUUIDtrueUnique identifier of instance/holding to which holdings/items to be moved
idsArray<UUID>trueArray of holding/item unique identifiers which will be moved to the new instance/holding

...