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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-2 / +2 lines)
Lines 68-74 Link Here
68
[% END %]
68
[% END %]
69
69
70
[% IF ( alert.OTHER_CHARGES ) %]
70
[% IF ( alert.OTHER_CHARGES ) %]
71
    <div class="dialog message">The patron has unpaid charges for holds, rentals etc of [% alert.OTHER_CHARGES | html %]</div>
71
    <div class="dialog message">The patron has unpaid charges for holds, rentals etc of [% alert.OTHER_CHARGES | $Price %]</div>
72
[% END %]
72
[% END %]
73
73
74
[% IF alert.HIGHHOLDS %]
74
[% IF alert.HIGHHOLDS %]
Lines 107-113 Link Here
107
[% END %]
107
[% END %]
108
108
109
[% IF ( RENTALCHARGE && RENTALCHARGE > 0 ) %]
109
[% IF ( RENTALCHARGE && RENTALCHARGE > 0 ) %]
110
    <li>Rental charge for this item: [% RENTALCHARGE | html %]</li>
110
    <li>Rental charge for this item: [% RENTALCHARGE | $Price %]</li>
111
[% END %]
111
[% END %]
112
112
113
[% IF ( RENEW_ISSUE ) %]
113
[% IF ( RENEW_ISSUE ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt (-2 / +1 lines)
Lines 192-198 Link Here
192
                      <li>This item has been lost with a status of "[% checkout_info.alert.ITEM_LOST | html %]."</li>
192
                      <li>This item has been lost with a status of "[% checkout_info.alert.ITEM_LOST | html %]."</li>
193
                  [% END %]
193
                  [% END %]
194
                  [% IF checkout_info.alert.OTHER_CHARGES %]
194
                  [% IF checkout_info.alert.OTHER_CHARGES %]
195
                      <li>The patron has unpaid charges for holds, rentals etc of [% checkout_info.alert.OTHER_CHARGES | html %].</li>
195
                      <li>The patron has unpaid charges for holds, rentals etc of [% checkout_info.alert.OTHER_CHARGES | $Price %].</li>
196
                  [% END %]
196
                  [% END %]
197
                </ul>
197
                </ul>
198
              [% END %]
198
              [% END %]
199
- 

Return to bug 22119