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

(-)a/C4/SIP/ILS.pm (+9 lines)
Lines 237-242 sub checkin { Link Here
237
        return $circ;
237
        return $circ;
238
    }
238
    }
239
239
240
   if ( $data->{messages}->{ForbiddenNotForLoanStatus} ) {
241
        my $f_status = $data->{messages}->{ForbiddenNotForLoanStatus};
242
        $circ->ok(0);
243
        $circ->screen_msg(
244
            "Return not allowed, notforloan status (" . $f_status . ")" );
245
        siplog( "LOG_WARNING", "C4::SIP::ILS::Checkin - forbidden return status" );
246
        return $circ;
247
    }
248
240
    if ( !$circ->ok && $circ->alert_type && $circ->alert_type == 98 ) { # data corruption
249
    if ( !$circ->ok && $circ->alert_type && $circ->alert_type == 98 ) { # data corruption
241
        $circ->screen_msg("Checkin failed: data problem");
250
        $circ->screen_msg("Checkin failed: data problem");
242
        siplog( "LOG_WARNING", "Problem with issue_id in issues and old_issues; check the about page" );
251
        siplog( "LOG_WARNING", "Problem with issue_id in issues and old_issues; check the about page" );
(-)a/C4/SIP/ILS/Transaction/Checkin.pm (-1 / +20 lines)
Lines 54-59 sub do_checkin { Link Here
54
    my $cv_triggers_alert   = $account->{cv_triggers_alert};
54
    my $cv_triggers_alert   = $account->{cv_triggers_alert};
55
    my $holds_block_checkin = $account->{holds_block_checkin};
55
    my $holds_block_checkin = $account->{holds_block_checkin};
56
    my $holds_get_captured  = $account->{holds_get_captured} // 1;
56
    my $holds_get_captured  = $account->{holds_get_captured} // 1;
57
    my @forbidden_notforloan_status = split(",",$account->{forbidden_notforloan_status});
57
58
58
    if (!$branch) {
59
    if (!$branch) {
59
        $branch = 'SIP2';
60
        $branch = 'SIP2';
Lines 108-113 sub do_checkin { Link Here
108
        $return = 1 unless keys %$messages;
109
        $return = 1 unless keys %$messages;
109
    }
110
    }
110
111
112
   if (@forbidden_notforloan_status) {
113
        my @results = grep { $_ == $item->notforloan } @forbidden_notforloan_status;
114
        if (@results) {
115
            my $notforloan_desc =
116
              Koha::AuthorisedValues->get_description_by_koha_field(
117
                {
118
                    kohafield        => 'items.notforloan',
119
                    authorised_value => $item->notforloan
120
                }
121
              );
122
            my $f_status = $item->notforloan;
123
            $f_status .= "-$notforloan_desc->{lib}" if $notforloan_desc->{lib};
124
            $messages->{ForbiddenNotForLoanStatus} = $f_status;
125
        }
126
    }
127
111
    # biblionumber, biblioitemnumber, itemnumber
128
    # biblionumber, biblioitemnumber, itemnumber
112
    # borrowernumber, reservedate, branchcode
129
    # borrowernumber, reservedate, branchcode
113
    # cancellationdate, found, reservenotes, priority, timestamp
130
    # cancellationdate, found, reservenotes, priority, timestamp
Lines 142-147 sub do_checkin { Link Here
142
        $self->{item}->destination_loc($item->homebranch);
159
        $self->{item}->destination_loc($item->homebranch);
143
        $self->alert_type('04');            # send to other branch
160
        $self->alert_type('04');            # send to other branch
144
    }
161
    }
162
    if ( $messages->{ForbiddenNotForLoanStatus} ) {
163
        $self->alert_type('99');
164
    }
145
    if ($messages->{ResFound} || $checkin_blocked_by_holds ) {
165
    if ($messages->{ResFound} || $checkin_blocked_by_holds ) {
146
        if ($checkin_blocked_by_holds) {
166
        if ($checkin_blocked_by_holds) {
147
            $self->alert_type('99');
167
            $self->alert_type('99');
148
- 

Return to bug 34326