From: Jason Etheridge Date: Fri, 4 Aug 2017 17:51:36 +0000 (-0400) Subject: webstaff: disable initials field for serial notes X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=15d5420ca7514076c584b270703f67672bf34c8b;p=working%2FEvergreen.git webstaff: disable initials field for serial notes needs its own org setting among other things if we folks want to implement it Signed-off-by: Jason Etheridge --- diff --git a/Open-ILS/web/js/ui/default/staff/serials/directives/subscription_manager.js b/Open-ILS/web/js/ui/default/staff/serials/directives/subscription_manager.js index d7edbb8acd..afb33502df 100644 --- a/Open-ILS/web/js/ui/default/staff/serials/directives/subscription_manager.js +++ b/Open-ILS/web/js/ui/default/staff/serials/directives/subscription_manager.js @@ -886,11 +886,12 @@ function($scope , $uibModalInstance , egCore , note_type , rows , notes ) { }; $scope.require_initials = false; + /* FIXME -- not yet implemented egCore.org.settings([ 'ui.staff.require_initials.copy_notes' ]).then(function(set) { $scope.require_initials = Boolean(set['ui.staff.require_initials.copy_notes']); - }); + });*/ $scope.note_list = notes; diff --git a/Open-ILS/web/js/ui/default/staff/serials/directives/view-items-grid.js b/Open-ILS/web/js/ui/default/staff/serials/directives/view-items-grid.js index f1b1b9c755..7be9fe37ec 100644 --- a/Open-ILS/web/js/ui/default/staff/serials/directives/view-items-grid.js +++ b/Open-ILS/web/js/ui/default/staff/serials/directives/view-items-grid.js @@ -491,11 +491,12 @@ function($scope , $uibModalInstance , egCore , note_type , rows , notes ) { }; $scope.require_initials = false; + /* FIXME -- not yet implemented egCore.org.settings([ 'ui.staff.require_initials.copy_notes' ]).then(function(set) { $scope.require_initials = Boolean(set['ui.staff.require_initials.copy_notes']); - }); + });*/ $scope.note_list = notes;