* circulations - list of loans made during this session. Each
includes:
- * title
- * author
- * copy.barcode
- * circ.due_date
+ * checkout.title
+ * checkout.author
+ * checkout.copy.barcode
+ * checkout.copy.circ_modifier.name
+ * checkout.copy.call_number.label
+ * checkout.copy.call_number.owning_lib.name
+ * checkout.copy.call_number.owning_lib.shortname
+ * checkout.circ.due_date
+ * checkout.circ.renewal_remaining
-->
<div>
call_number : egCore.idl.toHash(co.acn),
title : co.title,
author : co.author
- })
+ });
+ // Flesh selected fields of this circulation
+ print_data.circulations[0].copy.call_number =
+ egCore.idl.toHash(co.acn);
};
});