[GIT] Evergreen ILS branch rel_3_14 updated. d2e6a09d931796915cdb8c83acae2fe24cf6711d

This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Evergreen ILS". The branch, rel_3_14 has been updated via d2e6a09d931796915cdb8c83acae2fe24cf6711d (commit) from 1997324a0167ef67848e29d8bc72cb132dedd78b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit d2e6a09d931796915cdb8c83acae2fe24cf6711d Author: Ian Skelskey <ianskelskey@gmail.com> Date: Tue Jun 17 20:17:29 2025 -0400 LP#1952388: fix adding to Record Bucket from Item Status Detail View Correct the method call in the app.js file to ensure that items can be added to a Record Bucket from the Item Status Detail View. This resolves the issue where \"Add to Record Bucket\" fails silently due to a TypeError. - Change `itemSvc.add_records_to_bucket` to `itemSvc.add_copies_to_bucket` in the `add_records_to_bucket` function. Release-Note: fix inability to add items to Record Bucket from Item Status Detail View. Signed-off-by: Ian Skelskey <ianskelskey@gmail.com> Signed-off-by: Jane Sandberg <js7389@princeton.edu> Signed-off-by: Steven Mayo <smayo@georgialibraries.org> Signed-off-by: Shula Link <slink@gchrl.org> Signed-off-by: Michele Morgan <mmorgan@noblenet.org> Signed-off-by: Ruth Frasur Davis <redavis4974@gmail.com> diff --git a/Open-ILS/web/js/ui/default/staff/cat/item/app.js b/Open-ILS/web/js/ui/default/staff/cat/item/app.js index 146bad26b2..f76058619d 100644 --- a/Open-ILS/web/js/ui/default/staff/cat/item/app.js +++ b/Open-ILS/web/js/ui/default/staff/cat/item/app.js @@ -87,7 +87,7 @@ function($scope , $q , $window , $location , $timeout , egCore , egNet , egGridD } $scope.add_records_to_bucket = function() { - itemSvc.add_records_to_bucket([$scope.args.recordId], 'biblio'); + itemSvc.add_copies_to_bucket([$scope.args.recordId], 'biblio'); } $scope.show_in_catalog = function() { ----------------------------------------------------------------------- Summary of changes: Open-ILS/web/js/ui/default/staff/cat/item/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- Evergreen ILS
participants (1)
-
Git User