Signed-off-by: Bill Erickson <berickxx@gmail.com>
Signed-off-by: Jane Sandberg <js7389@princeton.edu>
Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>
sampleData: any = {
patron_address: {},
holds_for_bib: {},
- bills_current: {}
+ bills_current: {},
+ bills_payment: {},
+ hold_shelf_slip: {}
};
constructor(
copy_barcode: '3423482302394'
}]
};
+
+ this.sampleData.hold_shelf_slip = {
+ checkin: {
+ copy: samples.acp[0],
+ patron: samples.au[0],
+ hold: samples.ahr[0]
+ }
+ };
+
+ this.sampleData.hold_transit_slip =
+ Object.assign({}, this.sampleData.hold_shelf_slip);
+ this.sampleData.hold_transit_slip.checkin.destOrg =
+ this.org.list()[0];
}
onTabChange(evt: NgbTabChangeEvent) {