From 92eb8b8f00307f136333fde196d79fbf337f7a3c Mon Sep 17 00:00:00 2001 From: Terran McCanna Date: Mon, 31 Jan 2022 14:29:16 -0500 Subject: [PATCH] LP1958265 Angular Holds Grids Not Printing Barcode This adds the ability to print (or download CSV) the Current Item and Requested Item barcodes from the Holds Pull List and from the Holds tab of the bib record. Signed-off-by: Terran McCanna Signed-off-by: Garry Collum Signed-off-by: Bill Erickson Signed-off-by: Terran McCanna --- Open-ILS/src/eg2/src/app/staff/share/holds/grid.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Open-ILS/src/eg2/src/app/staff/share/holds/grid.component.ts b/Open-ILS/src/eg2/src/app/staff/share/holds/grid.component.ts index 70ad1783df..80bc101fe3 100644 --- a/Open-ILS/src/eg2/src/app/staff/share/holds/grid.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/share/holds/grid.component.ts @@ -207,6 +207,8 @@ export class HoldsGridComponent implements OnInit { this.cellTextGenerator = { title: row => row.title, cp_barcode: row => (row.cp_barcode == null) ? '' : row.cp_barcode, + current_item: row => (row.cp_barcode == null) ? '' : row.cp_barcode, + requested_item: row => (row.cp_barcode == null) ? '' : row.cp_barcode, ucard_barcode: row => row.ucard_barcode }; } -- 2.11.0