From: Galen Charlton Date: Tue, 30 Nov 2021 14:35:00 +0000 (-0500) Subject: LP#1942220: link to the Angular PO interface acq search results X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=fbd20554dafcb1acad8e8f0b62b28556a0754882;p=working%2FEvergreen.git LP#1942220: link to the Angular PO interface acq search results Note that this does /not/ follow the setting to display links to the "experimental" Angular acquisitions interfaces; my intention is to replace that with a different setting that, when enabled, provides links to the Dojo interfaces from the corresponding Angular interfaces. Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/eg2/src/app/staff/acq/search/lineitem-results.component.html b/Open-ILS/src/eg2/src/app/staff/acq/search/lineitem-results.component.html index 9b39ef3674..741289db04 100644 --- a/Open-ILS/src/eg2/src/app/staff/acq/search/lineitem-results.component.html +++ b/Open-ILS/src/eg2/src/app/staff/acq/search/lineitem-results.component.html @@ -18,8 +18,9 @@ + {{lineitem.id()}} @@ -41,7 +42,7 @@ {{lineitem.purchase_order().name()}} @@ -103,7 +104,7 @@ target="_blank" i18n>Purchase Order - Purchase Order diff --git a/Open-ILS/src/eg2/src/app/staff/acq/search/purchase-order-results.component.html b/Open-ILS/src/eg2/src/app/staff/acq/search/purchase-order-results.component.html index 679870803d..456027ebf3 100644 --- a/Open-ILS/src/eg2/src/app/staff/acq/search/purchase-order-results.component.html +++ b/Open-ILS/src/eg2/src/app/staff/acq/search/purchase-order-results.component.html @@ -10,8 +10,7 @@ - + {{purchaseorder.name()}} diff --git a/Open-ILS/src/eg2/src/app/staff/acq/search/purchase-order-results.component.ts b/Open-ILS/src/eg2/src/app/staff/acq/search/purchase-order-results.component.ts index b4556d8136..7e583bf080 100644 --- a/Open-ILS/src/eg2/src/app/staff/acq/search/purchase-order-results.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/acq/search/purchase-order-results.component.ts @@ -55,7 +55,7 @@ export class PurchaseOrderResultsComponent implements OnInit { } showRow(row: any) { - window.open('/eg/staff/acq/legacy/po/view/' + row.id(), '_blank'); + window.open('/eg2/staff/acq/po/' + row.id(), '_blank'); } doSearch(search: AcqSearch) {