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

(-)a/C4/SIP/ILS/Transaction/Checkout.pm (-1 / +1 lines)
Lines 97-103 sub do_checkout { Link Here
97
                $self->screen_msg("This item was previously checked out by you");
97
                $self->screen_msg("This item was previously checked out by you");
98
                last;
98
                last;
99
            } elsif ( $confirmation eq 'ADDITIONAL_MATERIALS' ) {
99
            } elsif ( $confirmation eq 'ADDITIONAL_MATERIALS' ) {
100
                $self->screen_msg('Item must be issued at a circulation desk');
100
                $self->screen_msg('Item must be checked out at a circulation desk');
101
                $noerror = 0;
101
                $noerror = 0;
102
                last;
102
                last;
103
            } else {
103
            } else {
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sci/sci-main.tt (-3 / +3 lines)
Lines 9-23 Link Here
9
    [% IF messages.BadBarcode %]
9
    [% IF messages.BadBarcode %]
10
        <span>(Barcode not found on the database, please see library staff for assistance)</span>
10
        <span>(Barcode not found on the database, please see library staff for assistance)</span>
11
    [% ELSIF messages.Wrongbranch %]
11
    [% ELSIF messages.Wrongbranch %]
12
        <span>(The item cannot be returned at this library, please see library staff for assistance)</span>
12
        <span>(The item cannot be checked in at this library, please see library staff for assistance)</span>
13
    [% ELSIF messages.withdrawn %]
13
    [% ELSIF messages.withdrawn %]
14
        <span>(Item is withdrawn and check-in blocked by policy, please see library staff for assistance)</span>
14
        <span>(Item is withdrawn and check-in blocked by policy, please see library staff for assistance)</span>
15
    [% ELSIF messages.NotIssued %]
15
    [% ELSIF messages.NotIssued %]
16
        <span>(The book is not currently on loan, please see library staff for assistance)</span>
16
        <span>(The book is not currently on loan, please see library staff for assistance)</span>
17
    [% ELSIF messages.additional_materials %]
17
    [% ELSIF messages.additional_materials %]
18
        <span>(The item cannot be returned at a self service terminal, please see library staff for assistance)</span>
18
        <span>(The item cannot be checked in at a self service terminal, please see library staff for assistance)</span>
19
    [% ELSE %]
19
    [% ELSE %]
20
        <span>(There was a problem returning this item, please see library staff for assistance)</span>
20
        <span>(There was a problem checking in this item, please see library staff for assistance)</span>
21
    [% END %]
21
    [% END %]
22
[% END %]
22
[% END %]
23
[% PROCESS 'html_helpers.inc' %]
23
[% PROCESS 'html_helpers.inc' %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt (-2 / +1 lines)
Lines 84-90 Link Here
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 ) %]
86
                                [% ELSIF ( circ_error_ADDITIONAL_MATERIALS ) %]
87
                                    Item must be issued at a circulation desk.
87
                                    Item must be checked out at a circulation desk.
88
                                [% END %]
88
                                [% END %]
89
                                Please see a member of the library staff.
89
                                Please see a member of the library staff.
90
                            </p>
90
                            </p>
91
- 

Return to bug 25261