Skip to content

Commit

Permalink
When freezing selected or all holds, do not show a prompt for reactiv…
Browse files Browse the repository at this point in the history
…ation date
  • Loading branch information
mdnoble73 committed Jun 10, 2024
1 parent cc79f4b commit 0268cb2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions code/web/release_notes/24.06.00.MD
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@
- When linking to ILS course reserves, use the Vendor Opac Url in the Account Profile rather than the URL in config.ini. (Ticket 131388) (*MDN*)
- When using the "Pickup at" setting within the Format Map, properly load available locations when the location code is not the entire location code of the item. (Tickets 128864, 130706) (*MDN*)
- Add additional handling for looking up titles for holds and checkouts if the item id cannot be found in Aspen. (Ticket 130159) (*MDN*)
- When freezing selected or all holds, do not show a prompt for reactivation date. (Tickets 133197, 131688) (*MDN*)
- Create a new Under Consideration status that can be used for order items that the library has not committed to purchase. (Ticket 128096) (*MDN*)
- Libraries can select which status code is used to generate the new status.
- Titles with a status of Under Consideration will be displayed after all titles that are On Order or that have been previously purchased when sorting by Date Purchased.
Expand Down
6 changes: 6 additions & 0 deletions code/web/services/MyAccount/AJAX.php
Original file line number Diff line number Diff line change
Expand Up @@ -1006,6 +1006,9 @@ function confirmFreezeHoldSelected(): array {
]);

$promptForReactivationDate = $_REQUEST['reactivationDate'] ?? false;
if ($promptForReactivationDate === "false") {
$promptForReactivationDate = false;
}

if($promptForReactivationDate) {
global $interface;
Expand Down Expand Up @@ -1168,6 +1171,9 @@ function confirmFreezeHoldAll(): array {
]);

$promptForReactivationDate = $_REQUEST['reactivationDate'] ?? false;
if ($promptForReactivationDate === "false") {
$promptForReactivationDate = false;
}

if($promptForReactivationDate) {
global $interface;
Expand Down

0 comments on commit 0268cb2

Please sign in to comment.