From: Bill Erickson Date: Sat, 26 Oct 2013 22:22:34 +0000 (-0400) Subject: ff : copy-level remote_id field not currently present X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=5c87a60d42993f530441cdb7184f4808301df9ba;p=evergreen%2Fequinox.git ff : copy-level remote_id field not currently present Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/perlmods/lib/FulfILLment/AT/Reactor/ItemLoad.pm b/Open-ILS/src/perlmods/lib/FulfILLment/AT/Reactor/ItemLoad.pm index b22bc947d1..743ce48984 100644 --- a/Open-ILS/src/perlmods/lib/FulfILLment/AT/Reactor/ItemLoad.pm +++ b/Open-ILS/src/perlmods/lib/FulfILLment/AT/Reactor/ItemLoad.pm @@ -75,7 +75,7 @@ sub ByBib { } $existing_cp->ischanged( 1 ); - $existing_cp->remote_id( $remote_cp->{bib_id} ); + #$existing_cp->remote_id( $remote_cp->{bib_id} ); $existing_cp->holdable( defined($remote_cp->{holdable}) ? $remote_cp->{holdable} : 1 ); my $due = $remote_cp->{due_date} || ''; # avoid warnings $existing_cp->status( $due =~ /^\d+-\d+-\d+$/ ? 1 : 0 );