From 92cecaee4f09d9beadb24642cac43d5ddd6c8e28 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 --- 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