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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/blocked-fines.inc (-2 / +2 lines)
Lines 2-9 Link Here
2
[% SET NoIssuesCharge = Koha.Preference('noissuescharge') %]
2
[% SET NoIssuesCharge = Koha.Preference('noissuescharge') %]
3
[% IF fines and fines > 0 %]
3
[% IF fines and fines > 0 %]
4
    <li>
4
    <li>
5
        <span class="circ-hlt">Fees &amp; Charges:</span>
5
        <span class="circ-hlt">Charges:</span>
6
        Patron has outstanding fees &amp; charges of [% fines | $Price %].
6
        Patron has outstanding charges of [% fines | $Price %].
7
        [% IF !Koha.Preference('AllowFineOverride') && NoIssuesCharge && fines > NoIssuesCharge %]
7
        [% IF !Koha.Preference('AllowFineOverride') && NoIssuesCharge && fines > NoIssuesCharge %]
8
           <span class="circ-hlt">Checkouts are BLOCKED because fine balance is OVER THE LIMIT.</span>
8
           <span class="circ-hlt">Checkouts are BLOCKED because fine balance is OVER THE LIMIT.</span>
9
        [% END %]
9
        [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-1 / +1 lines)
Lines 766-772 Link Here
766
766
767
                                    [% IF ( charges_guarantees ) %]
767
                                    [% IF ( charges_guarantees ) %]
768
                                        <li>
768
                                        <li>
769
                                            <span class="circ-hlt">Fees &amp; Charges:</span> Patron's guarantees collectively owe [% chargesamount_guarantees | $Price %].
769
                                            <span class="circ-hlt">Charges:</span> Patron's guarantees collectively owe [% chargesamount_guarantees | $Price %].
770
                                                [% IF noissues %]
770
                                                [% IF noissues %]
771
                                                    <span class="circ-hlt">Checkouts are BLOCKED because fine balance is OVER THE LIMIT.</span>
771
                                                    <span class="circ-hlt">Checkouts are BLOCKED because fine balance is OVER THE LIMIT.</span>
772
                                                [% END %]
772
                                                [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt (-1 / +1 lines)
Lines 51-57 Link Here
51
    [% END %]
51
    [% END %]
52
    [% IF charges_guarantees %]
52
    [% IF charges_guarantees %]
53
        <li>
53
        <li>
54
            <span class="circ-hlt">Fees &amp; Charges:</span> Patron's guarantees collectively owe [% chargesamount_guarantees | $Price %].
54
            <span class="circ-hlt">Charges:</span> Patron's guarantees collectively owe [% chargesamount_guarantees | $Price %].
55
        </li>
55
        </li>
56
        <li>
56
        <li>
57
            <span class="circ-hlt">Checkouts are BLOCKED because fine balance is OVER THE LIMIT.</span>
57
            <span class="circ-hlt">Checkouts are BLOCKED because fine balance is OVER THE LIMIT.</span>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-2 / +1 lines)
Lines 710-716 Link Here
710
                            [% END %]
710
                            [% END %]
711
                            [% IF ( fines ) %]
711
                            [% IF ( fines ) %]
712
                                <li id="finestab">
712
                                <li id="finestab">
713
                                    <a href="#finesandcharges">Fines &amp; Charges ([% fines | $Price %])</a>
713
                                    <a href="#finesandcharges">Charges ([% fines | $Price %])</a>
714
                                </li>
714
                                </li>
715
                            [% END %]
715
                            [% END %]
716
                            [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
716
                            [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
717
- 

Return to bug 24098