checkout_time
dummy_title
dummy_author
+ dummy_isbn
circ_lib
barcode
duration_level
$CR->checkin_time('now');
$CR->checkin_lib($self->editor->requestor->ws_ou);
+ $CR->checkin_workstation($self->editor->requestor->wsid);
$CR->checkin_staff($self->editor->requestor->id);
$evt = $self->editor->event
my $copy = $self->copy;
if($copy) {
- $logger->debug("circulator: Pre-cat copy already exists in checkout: ID=" . $copy->id);
-
- $copy->editor($self->editor->requestor->id);
- $copy->edit_date('now');
- $copy->dummy_title($self->dummy_title);
- $copy->dummy_author($self->dummy_author);
+ $logger->debug("circulator: Pre-cat copy already exists in checkout: ID=" . $copy->id);
+ $copy->editor($self->editor->requestor->id);
+ $copy->edit_date('now');
+ $copy->dummy_title($self->dummy_title || '');
+ $copy->dummy_isbn($self->dummy_isbn || '');
+ $copy->dummy_author($self->dummy_author || '');
$self->update_copy();
return;
}
$copy->dummy_title($self->dummy_title || "");
$copy->dummy_author($self->dummy_author || "");
+ $copy->dummy_isbn($self->dummy_isbn || "");
unless( $self->copy($self->editor->create_asset_copy($copy)) ) {
$self->bail_out(1);
$circ->checkin_staff($self->editor->requestor->id);
$circ->checkin_lib($self->editor->requestor->ws_ou);
+ $circ->checkin_workstation($self->editor->requestor->wsid);
my $circ_lib = (ref $self->copy->circ_lib) ?
$self->copy->circ_lib->id : $self->copy->circ_lib;