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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt (+2 lines)
Lines 83-88 Link Here
83
                                    Your contact information seems to be incomplete.
83
                                    Your contact information seems to be incomplete.
84
                                [% ELSIF ( circ_error_INVALID_DATE ) %]
84
                                [% ELSIF ( circ_error_INVALID_DATE ) %]
85
                                    Due date is not valid.
85
                                    Due date is not valid.
86
                                [% ELSIF ( circ_error_additional_materials ) %]
87
                                    Item must be issued at a circulation desk.
86
                                [% END %]
88
                                [% END %]
87
                                Please see a member of the library staff.
89
                                Please see a member of the library staff.
88
                            </p>
90
                            </p>
(-)a/opac/sco/sco-main.pl (-2 / +1 lines)
Lines 150-156 elsif ( $patron && ( $op eq 'checkout' ) ) { Link Here
150
    );
150
    );
151
    my $issue_error;
151
    my $issue_error;
152
    if ( $confirm_required = scalar keys %$needconfirm ) {
152
    if ( $confirm_required = scalar keys %$needconfirm ) {
153
        for my $error ( qw( UNKNOWN_BARCODE max_loans_allowed ISSUED_TO_ANOTHER NO_MORE_RENEWALS NOT_FOR_LOAN DEBT WTHDRAWN RESTRICTED RESERVED ITEMNOTSAMEBRANCH EXPIRED DEBARRED CARD_LOST GNA INVALID_DATE UNKNOWN_BARCODE TOO_MANY DEBT_GUARANTEES USERBLOCKEDOVERDUE PATRON_CANT PREVISSUE NOT_FOR_LOAN_FORCING ITEM_LOST) ) {
153
        for my $error ( qw( UNKNOWN_BARCODE max_loans_allowed ISSUED_TO_ANOTHER NO_MORE_RENEWALS NOT_FOR_LOAN DEBT WTHDRAWN RESTRICTED RESERVED ITEMNOTSAMEBRANCH EXPIRED DEBARRED CARD_LOST GNA INVALID_DATE UNKNOWN_BARCODE TOO_MANY DEBT_GUARANTEES USERBLOCKEDOVERDUE PATRON_CANT PREVISSUE NOT_FOR_LOAN_FORCING ITEM_LOST additional_materials) ) {
154
            if ( $needconfirm->{$error} ) {
154
            if ( $needconfirm->{$error} ) {
155
                $issue_error = $error;
155
                $issue_error = $error;
156
                $confirmed = 0;
156
                $confirmed = 0;
157
- 

Return to bug 25261