From: Galen Charlton Date: Thu, 3 Jun 2021 19:42:06 +0000 (-0400) Subject: funds: tweak columns in debits tab X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=12a6e3977eb76cb3d6eb759e536b5d80e50f3dea;p=working%2FEvergreen.git funds: tweak columns in debits tab LH#2 Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/eg2/src/app/staff/admin/acq/funds/fund-details-dialog.component.html b/Open-ILS/src/eg2/src/app/staff/admin/acq/funds/fund-details-dialog.component.html index d8ea6ee7d2..87ee598bad 100644 --- a/Open-ILS/src/eg2/src/app/staff/admin/acq/funds/fund-details-dialog.component.html +++ b/Open-ILS/src/eg2/src/app/staff/admin/acq/funds/fund-details-dialog.component.html @@ -146,6 +146,7 @@ @@ -159,20 +160,21 @@ {{row.li_id}} - + {{row.po_name}} - + {{row.vendor_invoice_id}} - - + + + diff --git a/Open-ILS/src/eg2/src/app/staff/admin/acq/funds/fund-details-dialog.component.ts b/Open-ILS/src/eg2/src/app/staff/admin/acq/funds/fund-details-dialog.component.ts index a078e707f1..f254e608b9 100644 --- a/Open-ILS/src/eg2/src/app/staff/admin/acq/funds/fund-details-dialog.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/admin/acq/funds/fund-details-dialog.component.ts @@ -78,9 +78,9 @@ export class FundDetailsDialogComponent src_fund: row => row().code(), dest_fund: row => row().code(), funding_source: row => row().code(), - li_id: row => row.li_id, - po_id: row => row.po_name, - invoice_id: row => row.vendor_invoice_id + li: row => row.li_id, + po: row => row.po_name, + invoice: row => row.vendor_invoice_id }; }