
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 fe5463be4ce73b6cc3cd6031165fba2878addf5f (commit) from d1c36459a6e15fe0443dc5e55c638b140c80f5a4 (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 fe5463be4ce73b6cc3cd6031165fba2878addf5f Author: Dan Briem <dbriem@harrisonpl.org> Date: Sun Feb 23 21:46:36 2025 +0000 LP#2098903 Item Status Focus Is After Barcode When Not Found If a barcode is not found after an item status search, the focus remains in the input after the barcode. This allows for a model change so the input contents will be selected after item status searches. Signed-off-by: Dan Briem <dbriem@harrisonpl.org> Signed-off-by: Stephanie Leary <stephanie.leary@equinoxoli.org> 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 fc2d6a20d1..146bad26b2 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 @@ -421,6 +421,9 @@ function($scope , $q , $window , $location , $timeout , egCore , egNet , egGridD if (!args.barcode) return $q.when(); $scope.context.itemNotFound = false; + // reset so the input can be auto-selected after the search + $scope.context.selectBarcode = false; + //check to see if there are multiple barcodes in CSV format var barcodes = []; //split on commas and clean up barcodes ----------------------------------------------------------------------- Summary of changes: Open-ILS/web/js/ui/default/staff/cat/item/app.js | 3 +++ 1 file changed, 3 insertions(+) hooks/post-receive -- Evergreen ILS