unrecovered : xact.unrecovered(),
xact_finish : xact.xact_finish(),
xact_start : xact.xact_start(),
- copy_barcode : xact.circulation().target_copy().barcode(),
- title : xact.circulation().target_copy().call_number().record().simple_record().title()
+ }
+ if (xact.circulation()) {
+ newXact.copy_barcode = xact.circulation().target_copy().barcode(),
+ newXact.title = xact.circulation().target_copy().call_number().record().simple_record().title()
}
xacts.push(newXact);
}
unrecovered : xact.unrecovered(),
xact_finish : xact.xact_finish(),
xact_start : xact.xact_start(),
- copy_barcode : xact.circulation().target_copy().barcode(),
- title : xact.circulation().target_copy().call_number().record().simple_record().title()
+ }
+ if (xact.circulation()) {
+ newXact.copy_barcode = xact.circulation().target_copy().barcode(),
+ newXact.title = xact.circulation().target_copy().call_number().record().simple_record().title()
}
xacts.push(newXact);
}