Skip to content

Commit

Permalink
Add the possibility to do "Claim returned" from action menu (#2585)
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-blazhko authored Nov 9, 2023
1 parent 27c788e commit 8753d38
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* Fix bug with Edit form Expand/collapse all shortcuts not working. Refs UIU-2959.
* Update patron groups retrieval in user search to hold `maxUnpagedResourceCount`. Refs UIU-2973.
* Update resourceData and queryParams in `UserSearchContainer.js` to escape special characters in tags filter. Refs. UIU-2995.
* Lost item fees not suspended when item is claimed returned from the ellipses in action menu. Refs UIU-2993.

## [10.0.3](https://github.com/folio-org/ui-users/tree/v10.0.3) (2023-10-23)
[Full Changelog](https://github.com/folio-org/ui-users/compare/v10.0.1...v10.0.3)
Expand Down
26 changes: 26 additions & 0 deletions src/routes/LoansListingContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,32 @@ import { LoansListing } from '../views';

class LoansListingContainer extends React.Component {
static manifest = Object.freeze({
accounts: {
type: 'okapi',
records: 'accounts',
PUT: {
path: 'accounts/%{activeAccount.id}'
},
fetch: false,
accumulate: true,
},
feefineactions: {
type: 'okapi',
records: 'feefineactions',
path: 'feefineactions',
fetch: false,
accumulate: true,
},
loanstorage: {
type: 'okapi',
PUT: {
path: 'loan-storage/loans/%{activeLoanStorage.id}'
},
fetch: false,
accumulate: true,
},
activeAccount: {},
activeLoanStorage: {},
query: {},
selUser: {
type: 'okapi',
Expand Down

0 comments on commit 8753d38

Please sign in to comment.