From: Terran McCanna Date: Thu, 21 Dec 2017 20:40:46 +0000 (-0500) Subject: PINES Customization: Require patron identification X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=8a6115a1a07957d0444125919025dc66a5f3fbbf;p=evergreen%2Fpines.git PINES Customization: Require patron identification Requires something to be entered in the ID value field Signed-off-by: Terran McCanna --- diff --git a/Open-ILS/web/js/ui/default/staff/circ/patron/regctl.js b/Open-ILS/web/js/ui/default/staff/circ/patron/regctl.js index 31bc4fe2af..6941f86879 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/patron/regctl.js +++ b/Open-ILS/web/js/ui/default/staff/circ/patron/regctl.js @@ -1538,6 +1538,7 @@ function($scope , $routeParams , $q , $uibModal , $window , egCore , // 3 == value universally required // 2 == field is visible by default // 1 == field is suggested by default + // PINES Customization: Make au.ident_value required var field_visibility = {}; var default_field_visibility = { 'ac.barcode' : 3, @@ -1548,6 +1549,7 @@ function($scope , $routeParams , $q , $uibModal , $window , egCore , 'au.pref_first_given_name' : 2, 'au.pref_family_name' : 2, 'au.ident_type' : 3, + 'au.ident_value' : 3, 'au.ident_type2' : 2, 'au.photo_url' : 2, 'au.locale' : 2,