View | Details | Raw Unified | Return to bug 36431
Collapse All | Expand All

(-)a/C4/SIP/ILS/Transaction/Checkin.pm (-1 / +2 lines)
Lines 133-138 sub do_checkin { Link Here
133
    if ( $messages->{NeedsTransfer} ) {
133
    if ( $messages->{NeedsTransfer} ) {
134
        $self->{item}->destination_loc( $messages->{NeedsTransfer} );
134
        $self->{item}->destination_loc( $messages->{NeedsTransfer} );
135
        $self->alert_type('04');    # send to other branch
135
        $self->alert_type('04');    # send to other branch
136
        $self->screen_msg( "This item must still be transferred to " . $messages->{NeedsTransfer} . " branch." )
137
            if !C4::Context->preference('AutomaticItemReturn');
136
    }
138
    }
137
    if ( $messages->{WasTransfered} ) {    # set into transit so tell unit
139
    if ( $messages->{WasTransfered} ) {    # set into transit so tell unit
138
        $self->{item}->destination_loc( $item->homebranch );
140
        $self->{item}->destination_loc( $item->homebranch );
139
- 

Return to bug 36431