[GIT] Evergreen ILS branch main updated. 4605e1f5e89e93f34a2e6471496424381f4448a1

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, main has been updated via 4605e1f5e89e93f34a2e6471496424381f4448a1 (commit) from abdba83ff404d2a3291950d07b17a4c39b3123e5 (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 4605e1f5e89e93f34a2e6471496424381f4448a1 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