From 2fb511a2f18c7a2ad27ef132896fd5730b4410df Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Wed, 19 Jan 2022 17:06:07 -0500 Subject: [PATCH] LP#1929749: Originating Acquisition from item status now links to Angular interface Signed-off-by: Galen Charlton --- Open-ILS/web/js/ui/default/staff/cat/item/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.11.0