From: Terran McCanna Date: Mon, 31 Jan 2022 19:29:16 +0000 (-0500) Subject: LP1958265 Angular Holds Grids Not Printing Barcode X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=4c3cb3edcb48afb3c1b11ee28b5c58d9b9a2b54c;p=Evergreen.git 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 --- 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 }; }