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 <tmccanna@georgialibraries.org>
Signed-off-by: Garry Collum <gcollum@gmail.com>
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
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
};
}