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

(-)a/C4/SIP/ILS/Transaction/Checkout.pm (-5 / +6 lines)
Lines 80-86 sub do_checkout { Link Here
80
                    $self->screen_msg("Item was reserved for you.");
80
                    $self->screen_msg("Item was reserved for you.");
81
                } else {
81
                } else {
82
                    $self->screen_msg("Item is reserved for another patron upon return.");
82
                    $self->screen_msg("Item is reserved for another patron upon return.");
83
                    # $noerror = 0;
83
                    $noerror = 0;
84
                }
84
                }
85
            } elsif ($confirmation eq 'ISSUED_TO_ANOTHER') {
85
            } elsif ($confirmation eq 'ISSUED_TO_ANOTHER') {
86
                $self->screen_msg("Item already checked out to another patron.  Please return item for check-in.");
86
                $self->screen_msg("Item already checked out to another patron.  Please return item for check-in.");
Lines 96-104 sub do_checkout { Link Here
96
                    $noerror = 0;
96
                    $noerror = 0;
97
                }
97
                }
98
            } else {
98
            } else {
99
                $self->screen_msg($needsconfirmation->{$confirmation});
99
                unless ( $self->screen_msg ) {
100
                $noerror = 0;
100
                    $self->screen_msg($needsconfirmation->{$confirmation});
101
                syslog('LOG_DEBUG', "Blocking checkout Reason:$confirmation");
101
                    $noerror = 0;
102
                    syslog('LOG_DEBUG', "Blocking checkout Reason:$confirmation");
103
                }
102
            }
104
            }
103
        }
105
        }
104
    }
106
    }
105
- 

Return to bug 15438