From: Galen Charlton Date: Wed, 19 Jan 2022 22:06:07 +0000 (-0500) Subject: LP#1929749: Originating Acquisition from item status now links to Angular interface X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=2fb511a2f18c7a2ad27ef132896fd5730b4410df;p=working%2FEvergreen.git LP#1929749: Originating Acquisition from item status now links to Angular interface Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/web/js/ui/default/staff/cat/item/app.js b/Open-ILS/web/js/ui/default/staff/cat/item/app.js index 8e21e25994..48e5bdee10 100644 --- a/Open-ILS/web/js/ui/default/staff/cat/item/app.js +++ b/Open-ILS/web/js/ui/default/staff/cat/item/app.js @@ -131,7 +131,7 @@ function($scope , $q , $window , $location , $timeout , egCore , egNet , egGridD if (acqData) { if (acqData.a) { acqData = egCore.idl.toHash(acqData); - var url = '/eg/acq/po/view/' + acqData.purchase_order + '/' + acqData.id; + var url = '/eg2/staff/acq/po/' + acqData.purchase_order + '#' + acqData.id; $timeout(function () { $window.open(url, '_blank') }); hasResults = true; }