Lines 137-142
sub do_checkin {
Link Here
|
137 |
if ($messages->{NeedsTransfer}) { |
137 |
if ($messages->{NeedsTransfer}) { |
138 |
$self->{item}->destination_loc($messages->{NeedsTransfer}); |
138 |
$self->{item}->destination_loc($messages->{NeedsTransfer}); |
139 |
$self->alert_type('04'); # send to other branch |
139 |
$self->alert_type('04'); # send to other branch |
|
|
140 |
$self->screen_msg( "This item must still be transferred to " . $messages->{NeedsTransfer} . " branch." ) |
141 |
if !C4::Context->preference('AutomaticItemReturn'); |
140 |
} |
142 |
} |
141 |
if ($messages->{WasTransfered}) { # set into transit so tell unit |
143 |
if ($messages->{WasTransfered}) { # set into transit so tell unit |
142 |
$self->{item}->destination_loc($item->homebranch); |
144 |
$self->{item}->destination_loc($item->homebranch); |
143 |
- |
|
|