@@ -, +, @@ --- C4/SIP/ILS/Transaction/Checkin.pm | 4 ++++ 1 file changed, 4 insertions(+) --- a/C4/SIP/ILS/Transaction/Checkin.pm +++ a/C4/SIP/ILS/Transaction/Checkin.pm @@ -91,6 +91,10 @@ sub do_checkin { $self->destination_loc($iteminformation->{homebranch}); $self->alert_type('04'); # send to other branch } + if ($messages->{WasTransfered}) { # set into transit so tell unit + $self->destination_loc($iteminformation->{homebranch}); + $self->alert_type('04'); # send to other branch + } if ($messages->{ResFound}) { $self->hold($messages->{ResFound}); if ($branch eq $messages->{ResFound}->{branchcode}) { --