From: Jason Etheridge Date: Mon, 27 Mar 2017 19:01:48 +0000 (-0400) Subject: webstaff: warning sound for Item Not Found in Item Status X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=868fbc145bffd255757194c3d43b0c4e92d10db2;p=working%2FEvergreen.git webstaff: warning sound for Item Not Found in Item Status Signed-off-by: Jason Etheridge --- 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 5468daf8c3..b19143b340 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 @@ -206,6 +206,7 @@ function($scope , $q , $routeParams , $location , $timeout , $window , egCore , $scope.args.barcode = ''; } else { $scope.context.itemNotFound = true; + egCore.audio.play('warning.item_status.itemNotFound'); } $scope.context.selectBarcode = true; }) @@ -995,6 +996,7 @@ function($scope , $q , $location , $routeParams , $timeout , $window , egCore , if (!res) { copyId = null; $scope.context.itemNotFound = true; + egCore.audio.play('warning.item_status.itemNotFound'); deferred.reject(); // avoid propagation of data fetch calls return; }