-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MODAUD-177 Added the virtual item lookup if item is missing in Invent…
…ory (#157) * UICIRCLOG-149 Make a call to circulation-item module if the item is not present * UICIRCLOG-149 Adding permission * UICIRCLOG-149 Adding new module in module descriptor * UICIRCLOG-149 Adding test cases
- Loading branch information
1 parent
cddd4bd
commit 8ea3cb6
Showing
8 changed files
with
64 additions
and
3 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
4 changes: 4 additions & 0 deletions
4
mod-audit-server/src/test/resources/mocks/circulation-item.json
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,4 @@ | ||
{ | ||
"barcode": "virtualItem", | ||
"holdingsRecordId" : "e3ff6133-b9a2-4d4c-a1c9-dc1867d4df19" | ||
} |
20 changes: 20 additions & 0 deletions
20
mod-audit-server/src/test/resources/payloads/fee_fine_billed_automated_virtual_item.json
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,20 @@ | ||
{ | ||
"logEventType":"FEE_FINE", | ||
"payload": { | ||
"userId":"6f36265e-722a-490a-b436-806e63af2ea7", | ||
"userBarcode":"693787594998493", | ||
"itemBarcode":"virtualItem", | ||
"itemId":"100d10bf-2f06-4aa0-be15-0b95b2d9f9e4", | ||
"action":"Billed", | ||
"comments": "Comments from Staff", | ||
"date":"2020-10-15T12:17:38.627Z", | ||
"servicePointId":"7c5abc9f-f3d7-4856-b8d7-6712462ca007", | ||
"source":"ADMINISTRATOR, DIKU", | ||
"feeFineId":"7ad9dfa0-6ee9-43ba-8db5-7a034ce05838", | ||
"feeFineOwner":"sample owner", | ||
"loanId":"0", | ||
"automated":true, | ||
"type":"manual charge", | ||
"amount":10.0 | ||
} | ||
} |