Revert "LP#1332651 do not strip internal spaces in barcode"
authorGalen Charlton <gmc@equinoxinitiative.org>
Mon, 24 Aug 2020 14:49:12 +0000 (10:49 -0400)
committerKyle Huckins <khuckins@catalyte.io>
Fri, 19 Mar 2021 17:26:08 +0000 (17:26 +0000)
This reverts commit 10a0680e782a6cb7646d4f7d925c8feba44865c4.

Open-ILS/web/js/ui/default/staff/circ/patron/app.js

index 736c938..d6a6a1e 100644 (file)
@@ -480,8 +480,7 @@ function($scope , $location , egCore , egConfirmDialog , egUser , patronSvc , $u
         $scope.bcNotFound = null;
         $scope.optInRestricted = false;
         if (!args.barcode) return;
-        args.barcode = args.barcode.replace(/^\s/g,'');
-        args.barcode = args.barcode.replace(/\s$/g,'');
+        args.barcode = args.barcode.replace(/\s/g,'');
         // blur so next time it's set to true it will re-apply select()
         $scope.selectMe = false;