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=0155dfd6552f07a2780cae082cb35fc35fb2c1d8;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 cdf287598a..80c9bfce27 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 @@ -1283,6 +1283,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, @@ -1291,6 +1292,7 @@ function($scope , $routeParams , $q , $uibModal , $window , egCore , 'au.first_given_name' : 3, 'au.family_name' : 3, 'au.ident_type' : 3, + 'au.ident_value' : 3, 'au.ident_type2' : 2, 'au.home_ou' : 3, 'au.profile' : 3,