From: Jason Stephenson Date: Sat, 27 Oct 2018 00:32:38 +0000 (-0400) Subject: Try fixing checkin and renew X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=5d6461d4fda6d00bab6fc4ae94dbc61ccb397a12;p=working%2FEvergreen.git Try fixing checkin and renew --- 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) {