From 5d6461d4fda6d00bab6fc4ae94dbc61ccb397a12 Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Fri, 26 Oct 2018 20:32:38 -0400 Subject: [PATCH] Try fixing checkin and renew --- Open-ILS/web/js/ui/default/staff/circ/checkin/app.js | 2 +- Open-ILS/web/js/ui/default/staff/circ/renew/app.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/web/js/ui/default/staff/circ/checkin/app.js b/Open-ILS/web/js/ui/default/staff/circ/checkin/app.js index de5861fda7..e9f9f51361 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/checkin/app.js +++ b/Open-ILS/web/js/ui/default/staff/circ/checkin/app.js @@ -339,7 +339,7 @@ function($scope , $q , $window , $location , $timeout , egCore , checkinSvc , eg var copies = []; angular.forEach(items, function(item) { if (item.acp) { - copies.push(item.acp); + copies.push(egCore.idl.toHash(item.acp)); } }); if (copies.length) { diff --git a/Open-ILS/web/js/ui/default/staff/circ/renew/app.js b/Open-ILS/web/js/ui/default/staff/circ/renew/app.js index 29bc81bb50..e4b7858faf 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/renew/app.js +++ b/Open-ILS/web/js/ui/default/staff/circ/renew/app.js @@ -185,7 +185,7 @@ function($scope , $window , $location , egCore , egGridDataProvider , egCirc) { $scope.showMarkDiscard = function(items) { var copyies = []; angular.forEach(items, function(item) { - if (item.acp) copies.push(item.acp); + if (item.acp) copies.push(egCore.idl.toHash(item.acp)); }); if (copies.length) { -- 2.11.0