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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-1 / +20 lines)
Lines 121-126 Link Here
121
        <div class="alert alert-warning">Item is booked by this user</div>
121
        <div class="alert alert-warning">Item is booked by this user</div>
122
    [% END %]
122
    [% END %]
123
123
124
    [% IF linked_account_checkout %]
125
        <div class="alert alert-info">
126
            <strong>Linked account checkout:</strong> This item was on hold for a linked account. Checkout has been issued to
127
            <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% linked_account_checkout.hold_patron.borrowernumber | uri %]"
128
                >[% linked_account_checkout.hold_patron.firstname | html %] [% linked_account_checkout.hold_patron.surname | html %]</a
129
            >
130
            ([% linked_account_checkout.hold_patron.cardnumber | html %]) instead of [% linked_account_checkout.original_patron.firstname | html %] [% linked_account_checkout.original_patron.surname | html %].
131
        </div>
132
    [% END %]
133
124
    [% IF ( nopermission ) %]
134
    [% IF ( nopermission ) %]
125
        <div class="alert alert-warning">Staff members are not allowed to discharge borrowers, nor borrowers to request a discharge.</div>
135
        <div class="alert alert-warning">Staff members are not allowed to discharge borrowers, nor borrowers to request a discharge.</div>
126
    [% END %]
136
    [% END %]
Lines 167-172 Link Here
167
                    <li class="needsconfirm debt_guarantors">The patron's guarantors and their other guarantees collectively have a debt of [% DEBT_GUARANTORS | $Price %].</li>
177
                    <li class="needsconfirm debt_guarantors">The patron's guarantors and their other guarantees collectively have a debt of [% DEBT_GUARANTORS | $Price %].</li>
168
                [% END %]
178
                [% END %]
169
179
180
                [% IF ( DEBT_LINKED_ACCOUNTS ) %]
181
                    <li class="needsconfirm debt_linked_accounts">The patron's linked accounts collectively have a debt of [% DEBT_LINKED_ACCOUNTS | $Price %].</li>
182
                [% END %]
183
170
                [% IF ( RENTALCHARGE && RENTALCHARGE > 0 ) %]
184
                [% IF ( RENTALCHARGE && RENTALCHARGE > 0 ) %]
171
                    <li class="needsconfirm rentalcharge">Rental charge for this item: [% RENTALCHARGE | $Price %]</li>
185
                    <li class="needsconfirm rentalcharge">Rental charge for this item: [% RENTALCHARGE | $Price %]</li>
172
                [% END %]
186
                [% END %]
Lines 539-544 Link Here
539
        <div id="circ_impossible" class="alert alert-warning audio-alert-warning focus" tabindex="-1">
553
        <div id="circ_impossible" class="alert alert-warning audio-alert-warning focus" tabindex="-1">
540
            [% IF ( UNKNOWN_BARCODE ) %]
554
            [% IF ( UNKNOWN_BARCODE ) %]
541
                <h3>Barcode not found</h3>
555
                <h3>Barcode not found</h3>
556
            [% ELSIF ( DEBT_GUARANTORS || DEBT_LINKED_ACCOUNTS ) %]
557
                <h3>Cannot check out</h3>
542
            [% END %]
558
            [% END %]
543
559
544
            <!-- RESULT OF ISSUING REQUEST -->
560
            <!-- RESULT OF ISSUING REQUEST -->
Lines 547-552 Link Here
547
                    <li>The patron's guarantors and their other guarantees collectively have a debt of [% DEBT_GUARANTORS | $Price %].</li>
563
                    <li>The patron's guarantors and their other guarantees collectively have a debt of [% DEBT_GUARANTORS | $Price %].</li>
548
                [% END %]
564
                [% END %]
549
565
566
                [% IF ( DEBT_LINKED_ACCOUNTS ) %]
567
                    <li>The patron's linked accounts collectively have a debt of [% DEBT_LINKED_ACCOUNTS | $Price %].</li>
568
                [% END %]
569
550
                [% IF ( STATS ) %]
570
                [% IF ( STATS ) %]
551
                    <li>Local use recorded</li>
571
                    <li>Local use recorded</li>
552
                    [% IF ( CHECKEDIN ) %]
572
                    [% IF ( CHECKEDIN ) %]
553
- 

Return to bug 39658