Signed-off-by: Bill Erickson <berickxx@gmail.com>
this.context.checkouts.unshift(entry);
this.checkoutsGrid.reload();
+
+ // update summary data
+ this.context.refreshPatron();
}
noncatPrompt(): Observable<number> {
[hidden]="true"></eg-grid-column>
<eg-grid-column i18n-label label="Potential Items" path='potentials' datatype="int">
</eg-grid-column>
- <eg-grid-column i18n-label label="Status" [cellTemplate]="statusTemplate">
+ <eg-grid-column i18n-label label="Status" name="hold_status" [cellTemplate]="statusTemplate">
</eg-grid-column>
<eg-grid-column i18n-label label="Queue Position"
path='relative_queue_position' [hidden]="true" datatype="int"></eg-grid-column>
this.cellTextGenerator = {
title: row => row.title,
cp_barcode: row => (row.cp_barcode == null) ? '' : row.cp_barcode,
- patron_barcode: row => row.ucard_barcode
+ patron_barcode: row => row.ucard_barcode,
+ hold_status: row => row.hold_status // TODO labels
};
}