From 15d5420ca7514076c584b270703f67672bf34c8b Mon Sep 17 00:00:00 2001 From: Jason Etheridge Date: Fri, 4 Aug 2017 13:51:36 -0400 Subject: [PATCH] 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 --- .../web/js/ui/default/staff/serials/directives/subscription_manager.js | 3 ++- Open-ILS/web/js/ui/default/staff/serials/directives/view-items-grid.js | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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; -- 2.11.0