-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'refs/heads/UXPROD-5001' into UXPROD-5001_improvement
# Conflicts: # src/main/java/org/folio/dcb/listener/kafka/CirculationEventListener.java # src/main/java/org/folio/dcb/listener/kafka/EventData.java # src/main/java/org/folio/dcb/service/impl/CirculationServiceImpl.java
- Loading branch information
Showing
19 changed files
with
179 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 0 additions & 20 deletions
20
src/main/resources/swagger.api/schemas/DcbTransactionUpdate.yaml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
DcbUpdateItem: | ||
description: Item metadata required for updating the existing transaction | ||
type: object | ||
properties: | ||
barcode: | ||
description: The barcode of the item as specified in the lending library | ||
type: string | ||
materialType: | ||
description: The “hub-normalized” form of the item item type, used in the circulation rules for determining the correct loan policy. | ||
type: string | ||
lendingLibraryCode: | ||
description: The code which identifies the lending library | ||
type: string | ||
additionalProperties: false | ||
required: | ||
- barcode | ||
- materialType | ||
- lendingLibraryCode |
6 changes: 6 additions & 0 deletions
6
src/main/resources/swagger.api/schemas/dcbUpdateTransaction.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
DcbUpdateTransaction: | ||
type: object | ||
properties: | ||
item: | ||
$ref: 'dcbUpdateItem.yaml#/DcbUpdateItem' | ||
|
Oops, something went wrong.