Skip to content

Commit

Permalink
DIS-34 - Local ILL
Browse files Browse the repository at this point in the history
Add Out of Hold Group Message to APIs
  • Loading branch information
mdnoble73 committed Dec 31, 2024
1 parent fc68419 commit 7bbd351
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions code/web/release_notes/25.01.00.MD
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
### Github Updates
- Move Aspen LiDA to it's own repository at https://github.com/Aspen-Discovery/aspen-lida. (*MDN*)

### Local ILL
- Show Out of Hold Group Message when available. (DIS-34) (*MDN*)

## Aspen Discovery Updates
//mark
### Account Updates
Expand All @@ -12,6 +15,9 @@
- Add a "select all" and "deselect all" button to all lists of objects where the select checkbox shows. (DIS-37) (*MDN*)
- When showing selected values for multiselect lists within a table, only show the first 3 values. (*MDN*)

### API Updates
- Add Out of Hold Group Message to getPatronHolds API. (DIS-34) (*MDN*)

### Indexing Updates
- When indexing the 100, 700 and 800 fields to load information about authors and contributors include subfield c to distinguish between authors where titles and additional information is important. (DIS-161) (*MDN*)
- When checking for Yoto players, check to be sure yoto is found with word boundaries on either side to avoid matching Kyoto. (DIS-154) (*MDN*)
Expand Down
1 change: 1 addition & 0 deletions code/web/sys/User/Hold.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ public function getArrayForAPIs() {
$hold['isIll'] = (boolean)$this->isIll;
$hold['position'] = (int)$hold['position'];
$hold['pendingCancellation'] = $this->pendingCancellation;
$hold['outOfHoldGroupMessage'] = $this->outOfHoldGroupMessage;
return $hold;
}

Expand Down

0 comments on commit 7bbd351

Please sign in to comment.