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

(-)a/C4/SIP/ILS/Transaction/Checkout.pm (-2 / +3 lines)
Lines 85-91 sub do_checkout { Link Here
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.");
87
                $noerror = 0;
87
                $noerror = 0;
88
            } elsif ($confirmation eq 'DEBT') {     # don't do anything, it's the minor debt, and alarms fire elsewhere
88
            } elsif ($confirmation eq 'DEBT') {
89
                $self->screen_msg('Outstanding Fines block issue');
90
                $noerror = 0;
89
            } elsif ($confirmation eq 'HIGHHOLDS') {
91
            } elsif ($confirmation eq 'HIGHHOLDS') {
90
                $overridden_duedate = $needsconfirmation->{$confirmation}->{returndate};
92
                $overridden_duedate = $needsconfirmation->{$confirmation}->{returndate};
91
                $self->screen_msg('Loan period reduced for high-demand item');
93
                $self->screen_msg('Loan period reduced for high-demand item');
92
- 

Return to bug 11633