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=39c3b8d34cb910fa8eaa6c5b54ded702452b3702;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 bcfbab817d..da69308fe5 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 @@ -1454,6 +1454,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, @@ -1464,6 +1465,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.home_ou' : 3, 'au.profile' : 3,