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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/blocked-fines.inc (-1 / +1 lines)
Lines 3-9 Link Here
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">Fees &amp; Charges:</span>
6
        Patron has outstanding fees &amp; charges of [% fines | $Price | html %].
6
        Patron has outstanding fees &amp; 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/acqui/acqui-home.tt (-8 / +8 lines)
Lines 128-161 Link Here
128
                <td>[% Branches.GetName( loop_budge.budget_branchcode ) | html %]</td>
128
                <td>[% Branches.GetName( loop_budge.budget_branchcode ) | html %]</td>
129
                <td class="data">
129
                <td class="data">
130
                    [% IF loop_budge.budget_parent_id %]
130
                    [% IF loop_budge.budget_parent_id %]
131
                        [% loop_budge.budget_amount | $Price | html %]
131
                        [% loop_budge.budget_amount | $Price %]
132
                    [% ELSE %]
132
                    [% ELSE %]
133
                        <span class="total_amount">[% loop_budge.budget_amount | $Price | html %]</span>
133
                        <span class="total_amount">[% loop_budge.budget_amount | $Price %]</span>
134
                    [% END %]
134
                    [% END %]
135
                </td>
135
                </td>
136
                <td class="data">
136
                <td class="data">
137
                    <a href="ordered.pl?fund=[% loop_budge.budget_id | html %]&amp;fund_code=[% loop_budge.budget_code | html %]">
137
                    <a href="ordered.pl?fund=[% loop_budge.budget_id | html %]&amp;fund_code=[% loop_budge.budget_code | html %]">
138
                    [% IF loop_budge.budget_parent_id %]
138
                    [% IF loop_budge.budget_parent_id %]
139
                        [% loop_budge.budget_ordered | $Price | html %]
139
                        [% loop_budge.budget_ordered | $Price %]
140
                    [% ELSE %]
140
                    [% ELSE %]
141
                        <span class="total_amount">[% loop_budge.budget_ordered | $Price | html %]</span>
141
                        <span class="total_amount">[% loop_budge.budget_ordered | $Price %]</span>
142
                    [% END %]
142
                    [% END %]
143
                    </a>
143
                    </a>
144
                </td>
144
                </td>
145
                <td class="data">
145
                <td class="data">
146
                    <a href="spent.pl?fund=[% loop_budge.budget_id | html %]&amp;fund_code=[% loop_budge.budget_code | html %]">
146
                    <a href="spent.pl?fund=[% loop_budge.budget_id | html %]&amp;fund_code=[% loop_budge.budget_code | html %]">
147
                    [% IF loop_budge.budget_parent_id %]
147
                    [% IF loop_budge.budget_parent_id %]
148
                        [% loop_budge.budget_spent | $Price | html %]
148
                        [% loop_budge.budget_spent | $Price %]
149
                    [% ELSE %]
149
                    [% ELSE %]
150
                        <span class="total_amount">[% loop_budge.budget_spent | $Price | html %]</span>
150
                        <span class="total_amount">[% loop_budge.budget_spent | $Price %]</span>
151
                    [% END %]
151
                    [% END %]
152
                    </a>
152
                    </a>
153
                </td>
153
                </td>
154
                <td class="data">
154
                <td class="data">
155
                    [% IF loop_budge.budget_parent_id %]
155
                    [% IF loop_budge.budget_parent_id %]
156
                        [% loop_budge.budget_avail | $Price | html %]
156
                        [% loop_budge.budget_avail | $Price %]
157
                    [% ELSE %]
157
                    [% ELSE %]
158
                        <span class="total_amount">[% loop_budge.budget_avail | $Price | html %]</span>
158
                        <span class="total_amount">[% loop_budge.budget_avail | $Price %]</span>
159
                    [% END %]
159
                    [% END %]
160
                </td>
160
                </td>
161
            </tr>
161
            </tr>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt (-22 / +22 lines)
Lines 385-394 Link Here
385
                        <th class="tax_included">&nbsp;</th>
385
                        <th class="tax_included">&nbsp;</th>
386
                        <th class="replacementprice">&nbsp;</th>
386
                        <th class="replacementprice">&nbsp;</th>
387
                        <th>[% foot_loo.quantity | html %]</th>
387
                        <th>[% foot_loo.quantity | html %]</th>
388
                        <th class="tax_excluded">[% foot_loo.total_tax_excluded | $Price | html %]</th>
388
                        <th class="tax_excluded">[% foot_loo.total_tax_excluded | $Price %]</th>
389
                        <th class="tax_included">[% foot_loo.total_tax_included | $Price | html %]</th>
389
                        <th class="tax_included">[% foot_loo.total_tax_included | $Price %]</th>
390
                        <th>&nbsp;</th>
390
                        <th>&nbsp;</th>
391
                        <th>[% foot_loo.tax_value | $Price | html %]</th>
391
                        <th>[% foot_loo.tax_value | $Price %]</th>
392
                        <th>&nbsp;</th>
392
                        <th>&nbsp;</th>
393
                        <th>&nbsp;</th>
393
                        <th>&nbsp;</th>
394
                        [% IF ( active ) %]
394
                        [% IF ( active ) %]
Lines 408-417 Link Here
408
                    <th class="tax_included">&nbsp;</th>
408
                    <th class="tax_included">&nbsp;</th>
409
                    <th class="replacementprice">&nbsp;</th>
409
                    <th class="replacementprice">&nbsp;</th>
410
                    <th>[% total_quantity | html %]</th>
410
                    <th>[% total_quantity | html %]</th>
411
                    <th class="tax_excluded">[% total_tax_excluded | $Price | html %]</th>
411
                    <th class="tax_excluded">[% total_tax_excluded | $Price %]</th>
412
                    <th class="tax_included">[% total_tax_included | $Price | html %]</th>
412
                    <th class="tax_included">[% total_tax_included | $Price %]</th>
413
                    <th>&nbsp;</th>
413
                    <th>&nbsp;</th>
414
                    <th>[% total_tax_value | $Price | html %]</th>
414
                    <th>[% total_tax_value | $Price %]</th>
415
                    <th>&nbsp;</th>
415
                    <th>&nbsp;</th>
416
                    <th>&nbsp;</th>
416
                    <th>&nbsp;</th>
417
                    [% IF ( active ) %]
417
                    [% IF ( active ) %]
Lines 478-493 Link Here
478
                        </td>
478
                        </td>
479
                        [% SET zero_regex = "^0{1,}\.?0{1,}[^1-9]" %] [%# 0 or 0.0 or 0.00 or 00 or 00.0 or 00.00 or 0.000 ... %]
479
                        [% SET zero_regex = "^0{1,}\.?0{1,}[^1-9]" %] [%# 0 or 0.0 or 0.00 or 00 or 00.0 or 00.00 or 0.000 ... %]
480
                        [%# FIXME: use of a regexp is not ideal; bugs 9410 and 10929 suggest better way of handling this %]
480
                        [%# FIXME: use of a regexp is not ideal; bugs 9410 and 10929 suggest better way of handling this %]
481
                        <td class="number tax_excluded [% IF books_loo.rrp_tax_excluded.search(zero_regex) %]error[% END %]">[% books_loo.rrp_tax_excluded | $Price | html %]</td>
481
                        <td class="number tax_excluded [% IF books_loo.rrp_tax_excluded.search(zero_regex) %]error[% END %]">[% books_loo.rrp_tax_excluded | $Price %]</td>
482
                        <td class="number tax_excluded [% IF books_loo.ecost_tax_excluded.search(zero_regex) %]error[% END %]">[% books_loo.ecost_tax_excluded | $Price | html %]</td>
482
                        <td class="number tax_excluded [% IF books_loo.ecost_tax_excluded.search(zero_regex) %]error[% END %]">[% books_loo.ecost_tax_excluded | $Price %]</td>
483
                        <td class="number tax_included [% IF books_loo.rrp_tax_included.search(zero_regex) %]error[% END %]">[% books_loo.rrp_tax_included | $Price | html %]</td>
483
                        <td class="number tax_included [% IF books_loo.rrp_tax_included.search(zero_regex) %]error[% END %]">[% books_loo.rrp_tax_included | $Price %]</td>
484
                        <td class="number tax_included [% IF books_loo.ecost_tax_included.search(zero_regex) %]error[% END %]">[% books_loo.ecost_tax_included | $Price | html %]</td>
484
                        <td class="number tax_included [% IF books_loo.ecost_tax_included.search(zero_regex) %]error[% END %]">[% books_loo.ecost_tax_included | $Price %]</td>
485
                        <td class="number replacementprice [% IF books_loo.replacementprice.search(zero_regex) %]error[% END %]">[% books_loo.replacementprice | $Price | html %]</td>
485
                        <td class="number replacementprice [% IF books_loo.replacementprice.search(zero_regex) %]error[% END %]">[% books_loo.replacementprice | $Price %]</td>
486
                        <td class="number [% IF books_loo.quantity.search(zero_regex) %]error[% END %]">[% books_loo.quantity | html %]</td>
486
                        <td class="number [% IF books_loo.quantity.search(zero_regex) %]error[% END %]">[% books_loo.quantity | html %]</td>
487
                        <td class="number tax_excluded [% IF books_loo.total_tax_excluded.search(zero_regex) %]error[% END %]">[% books_loo.total_tax_excluded | $Price | html %]</td>
487
                        <td class="number tax_excluded [% IF books_loo.total_tax_excluded.search(zero_regex) %]error[% END %]">[% books_loo.total_tax_excluded | $Price %]</td>
488
                        <td class="number tax_included [% IF books_loo.total_tax_included.search(zero_regex) %]error[% END %]">[% books_loo.total_tax_included | $Price | html %]</td>
488
                        <td class="number tax_included [% IF books_loo.total_tax_included.search(zero_regex) %]error[% END %]">[% books_loo.total_tax_included | $Price %]</td>
489
                        <td class="number">[% books_loo.tax_rate * 100 | html %]</td>
489
                        <td class="number">[% books_loo.tax_rate * 100 | html %]</td>
490
                        <td class="number [% IF books_loo.tax_value.search(zero_regex) %]error[% END %]">[% books_loo.tax_value | $Price | html %]</td>
490
                        <td class="number [% IF books_loo.tax_value.search(zero_regex) %]error[% END %]">[% books_loo.tax_value | $Price %]</td>
491
                        <td>[% books_loo.budget_name | html %]</td>
491
                        <td>[% books_loo.budget_name | html %]</td>
492
                        <td>[% books_loo.suppliers_report | html %]</td>
492
                        <td>[% books_loo.suppliers_report | html %]</td>
493
                        [% IF ( active ) %]
493
                        [% IF ( active ) %]
Lines 594-609 Link Here
594
                        </p>
594
                        </p>
595
                      [% END %]
595
                      [% END %]
596
                    </td>
596
                    </td>
597
                    <td class="number tax_excluded">[% order.rrp_tax_excluded | $Price | html %]</td>
597
                    <td class="number tax_excluded">[% order.rrp_tax_excluded | $Price %]</td>
598
                    <td class="number tax_excluded">[% order.ecost_tax_excluded | $Price | html %]</td>
598
                    <td class="number tax_excluded">[% order.ecost_tax_excluded | $Price %]</td>
599
                    <td class="number tax_included">[% order.rrp_tax_included | $Price | html %]</td>
599
                    <td class="number tax_included">[% order.rrp_tax_included | $Price %]</td>
600
                    <td class="number tax_included">[% order.ecost_tax_included | $Price | html %]</td>
600
                    <td class="number tax_included">[% order.ecost_tax_included | $Price %]</td>
601
                    <td class="number replacementprice">[% order.replacementprice | $Price | html %]</td>
601
                    <td class="number replacementprice">[% order.replacementprice | $Price %]</td>
602
                    <td class="number">[% order.quantity | html %]</td>
602
                    <td class="number">[% order.quantity | html %]</td>
603
                    <td class="number tax_excluded">[% order.total_tax_excluded | $Price | html %]</td>
603
                    <td class="number tax_excluded">[% order.total_tax_excluded | $Price %]</td>
604
                    <td class="number tax_included">[% order.total_tax_included | $Price | html %]</td>
604
                    <td class="number tax_included">[% order.total_tax_included | $Price %]</td>
605
                    <td class="number">[% order.tax_rate * 100 | html %]</td>
605
                    <td class="number">[% order.tax_rate * 100 | html %]</td>
606
                    <td class="number">[% order.tax_value | $Price | html %]</td>
606
                    <td class="number">[% order.tax_value | $Price %]</td>
607
                    <td>[% order.budget_name | html %]
607
                    <td>[% order.budget_name | html %]
608
                  </tr>
608
                  </tr>
609
                [% END %]
609
                [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt (-2 / +2 lines)
Lines 178-184 function submitForm(form) { Link Here
178
                                                                        No name, basketnumber: [% basket.basketno | html %]
178
                                                                        No name, basketnumber: [% basket.basketno | html %]
179
                                                                    [% END %]
179
                                                                    [% END %]
180
                                                                </a>, <br />
180
                                                                </a>, <br />
181
                                                                Total: [% basket.total | $Price | html %]
181
                                                                Total: [% basket.total | $Price %]
182
                                                                <input type="hidden" class="basket" name="basket" value="[% basket.basketno | html %]" />
182
                                                                <input type="hidden" class="basket" name="basket" value="[% basket.basketno | html %]" />
183
                                                            </li>
183
                                                            </li>
184
                                                        [% END %]
184
                                                        [% END %]
Lines 268-274 function submitForm(form) { Link Here
268
                                                                No name, basketnumber: [% selectedbasket.basketno | html %]
268
                                                                No name, basketnumber: [% selectedbasket.basketno | html %]
269
                                                            [% END %]
269
                                                            [% END %]
270
                                                        </a>, <br />
270
                                                        </a>, <br />
271
                                                        Total: [% selectedbasket.total | $Price | html %]
271
                                                        Total: [% selectedbasket.total | $Price %]
272
                                                        <input type="hidden" class="basket" name="basket" value="[% selectedbasket.basketno | html %]" />
272
                                                        <input type="hidden" class="basket" name="basket" value="[% selectedbasket.basketno | html %]" />
273
                                                    </li>
273
                                                    </li>
274
                                                [% END %]
274
                                                [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/csv/basketgroup.tt (-4 / +4 lines)
Lines 16-26 Link Here
16
"[% r.collectiontitle | html %]"[%- delimiter | html -%]
16
"[% r.collectiontitle | html %]"[%- delimiter | html -%]
17
[% r.isbn | html %][%- delimiter | html -%]
17
[% r.isbn | html %][%- delimiter | html -%]
18
[% r.quantity | html %][%- delimiter | html -%]
18
[% r.quantity | html %][%- delimiter | html -%]
19
[% r.rrp_tax_included | $Price | html %][%- delimiter | html -%]
19
[% r.rrp_tax_included | $Price %][%- delimiter | html -%]
20
[% r.rrp_tax_excluded | $Price | html %][%- delimiter | html -%]
20
[% r.rrp_tax_excluded | $Price %][%- delimiter | html -%]
21
[% r.discount | html %][%- delimiter | html -%]
21
[% r.discount | html %][%- delimiter | html -%]
22
[% r.ecost_tax_included | $Price | html %][%- delimiter | html -%]
22
[% r.ecost_tax_included | $Price %][%- delimiter | html -%]
23
[% r.ecost_tax_excluded | $Price | html %][%- delimiter | html -%]
23
[% r.ecost_tax_excluded | $Price %][%- delimiter | html -%]
24
"[% r.notes | html %]"[%- delimiter | html -%]
24
"[% r.notes | html %]"[%- delimiter | html -%]
25
[% r.entrydate | html %][%- delimiter | html -%]
25
[% r.entrydate | html %][%- delimiter | html -%]
26
"[% r.booksellername | html %]"[%- delimiter | html -%]
26
"[% r.booksellername | html %]"[%- delimiter | html -%]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt (-17 / +17 lines)
Lines 109-115 Link Here
109
                              [% total_adj = total_adj + adjustment.adjustment | html %]
109
                              [% total_adj = total_adj + adjustment.adjustment | html %]
110
                              <tr>
110
                              <tr>
111
                                  <td><input type="hidden" name="adjustment_id" value="[% adjustment.adjustment_id | html %]" />[% adjustment.adjustment_id | html %]</td>
111
                                  <td><input type="hidden" name="adjustment_id" value="[% adjustment.adjustment_id | html %]" />[% adjustment.adjustment_id | html %]</td>
112
                                  <td><input type="text" name="adjustment" id="adjustment_[% adjustment.adjustment_id | html %]" value="[% adjustment.adjustment | $Price | html %]" /></td>
112
                                  <td><input type="text" name="adjustment" id="adjustment_[% adjustment.adjustment_id | html %]" value="[% adjustment.adjustment | $Price %]" /></td>
113
                                  <td>
113
                                  <td>
114
                                      [% reasons = AuthorisedValues.Get("ADJ_REASON") | html %]
114
                                      [% reasons = AuthorisedValues.Get("ADJ_REASON") | html %]
115
                                      [% IF reasons.0 %]
115
                                      [% IF reasons.0 %]
Lines 273-286 Link Here
273
                    [% END %]
273
                    [% END %]
274
                  </td>
274
                  </td>
275
                  <td><p>[% order.branchcode | html %]</p></td>
275
                  <td><p>[% order.branchcode | html %]</p></td>
276
                  <td class="number tax_excluded">[% order.unitprice_tax_excluded | $Price | html %]</td>
276
                  <td class="number tax_excluded">[% order.unitprice_tax_excluded | $Price %]</td>
277
                  <td class="number tax_included">[% order.unitprice_tax_included | $Price | html %]</td>
277
                  <td class="number tax_included">[% order.unitprice_tax_included | $Price %]</td>
278
                  <td class="number replacementprice">[% order.replacementprice | $Price | html %]</td>
278
                  <td class="number replacementprice">[% order.replacementprice | $Price %]</td>
279
                  <td class="number">[% order.quantity | html %]</td>
279
                  <td class="number">[% order.quantity | html %]</td>
280
                  <td class="number tax_excluded">[% order.total_tax_excluded | $Price | html %]</td>
280
                  <td class="number tax_excluded">[% order.total_tax_excluded | $Price %]</td>
281
                  <td class="number tax_included">[% order.total_tax_included | $Price | html %]</td>
281
                  <td class="number tax_included">[% order.total_tax_included | $Price %]</td>
282
                  <td class="number">[% order.tax_rate * 100 | html %]</td>
282
                  <td class="number">[% order.tax_rate * 100 | html %]</td>
283
                  <td class="number">[% order.tax_value | $Price | html %]</td>
283
                  <td class="number">[% order.tax_value | $Price %]</td>
284
                  <td>[% order.budget_name | html %]</td>
284
                  <td>[% order.budget_name | html %]</td>
285
                </tr>
285
                </tr>
286
              [% END %]
286
              [% END %]
Lines 293-302 Link Here
293
                    <th class="tax_included"></th>
293
                    <th class="tax_included"></th>
294
                    <th class="replacementprice"/>
294
                    <th class="replacementprice"/>
295
                    <th>[% tf.quantity | html %]</th>
295
                    <th>[% tf.quantity | html %]</th>
296
                    <th class="tax_excluded">[% tf.total_tax_excluded | $Price | html %]</th>
296
                    <th class="tax_excluded">[% tf.total_tax_excluded | $Price %]</th>
297
                    <th class="tax_included">[% tf.total_tax_included | $Price | html %]</th>
297
                    <th class="tax_included">[% tf.total_tax_included | $Price %]</th>
298
                    <th>&nbsp;</th>
298
                    <th>&nbsp;</th>
299
                    <th>[% tf.tax_value | $Price | html %]</th>
299
                    <th>[% tf.tax_value | $Price %]</th>
300
                    <th>&nbsp;</th>
300
                    <th>&nbsp;</th>
301
                </tr>
301
                </tr>
302
              [% END %]
302
              [% END %]
Lines 306-315 Link Here
306
                <th class="tax_included"></th>
306
                <th class="tax_included"></th>
307
                <th class="replacementprice"/>
307
                <th class="replacementprice"/>
308
                <th>[% total_quantity | html %]</th>
308
                <th>[% total_quantity | html %]</th>
309
                <th class="tax_excluded">[% total_tax_excluded | $Price | html %]</th>
309
                <th class="tax_excluded">[% total_tax_excluded | $Price %]</th>
310
                <th class="tax_included">[% total_tax_included | $Price | html %]</th>
310
                <th class="tax_included">[% total_tax_included | $Price %]</th>
311
                <th>&nbsp;</th>
311
                <th>&nbsp;</th>
312
                <th>[% total_tax_value | $Price | html %]</th>
312
                <th>[% total_tax_value | $Price %]</th>
313
                <th>&nbsp;</th>
313
                <th>&nbsp;</th>
314
              </tr>
314
              </tr>
315
              <tr>
315
              <tr>
Lines 318-327 Link Here
318
                <th class="tax_included"></th>
318
                <th class="tax_included"></th>
319
                <th class="replacementprice"/>
319
                <th class="replacementprice"/>
320
                <th>[% total_quantity | html %]</th>
320
                <th>[% total_quantity | html %]</th>
321
                <th class="tax_excluded">[% total_tax_excluded_shipment + total_adj | $Price | html %]</th>
321
                <th class="tax_excluded">[% total_tax_excluded_shipment + total_adj | $Price %]</th>
322
                <th class="tax_included">[% total_tax_included_shipment | $Price | html %]</th>
322
                <th class="tax_included">[% total_tax_included_shipment | $Price %]</th>
323
                <th>&nbsp;</th>
323
                <th>&nbsp;</th>
324
                <th>[% total_tax_value | $Price | html %]</th>
324
                <th>[% total_tax_value | $Price %]</th>
325
                <th>&nbsp;</th>
325
                <th>&nbsp;</th>
326
              </tr>
326
              </tr>
327
            </tfoot>
327
            </tfoot>
Lines 329-335 Link Here
329
        [% ELSE %]
329
        [% ELSE %]
330
            <div class="dialog message"><p>No orders yet</p>
330
            <div class="dialog message"><p>No orders yet</p>
331
            [% IF adjustments && adjustments.count > 0 || shipmentcost && shipmentcost > 0 %]
331
            [% IF adjustments && adjustments.count > 0 || shipmentcost && shipmentcost > 0 %]
332
            <p>Adjustments plus shipping:[% total_adj + shipmentcost | $Price | html %]</p>
332
            <p>Adjustments plus shipping:[% total_adj + shipmentcost | $Price %]</p>
333
            [% END %]
333
            [% END %]
334
            </div>
334
            </div>
335
        [% END %]
335
        [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt (-3 / +3 lines)
Lines 239-250 Link Here
239
            <input type="hidden" name="tax_rate" value="0" />
239
            <input type="hidden" name="tax_rate" value="0" />
240
        [% END %]
240
        [% END %]
241
241
242
        <li><label for="rrp">Retail price: </label>[% rrp | $Price | html %]</li>
242
        <li><label for="rrp">Retail price: </label>[% rrp | $Price %]</li>
243
        <li>
243
        <li>
244
            <label for="replacementprice">Replacement price:</label>
244
            <label for="replacementprice">Replacement price:</label>
245
            <input type="text" size="20" name="replacementprice" id="replacementprice" value="[% replacementprice | $Price | html %]" />
245
            <input type="text" size="20" name="replacementprice" id="replacementprice" value="[% replacementprice | $Price %]" />
246
        </li>
246
        </li>
247
        <li><label for="ecost">Budgeted cost: </label>[% ecost | $Price | html %]</li>
247
        <li><label for="ecost">Budgeted cost: </label>[% ecost | $Price %]</li>
248
        <li>
248
        <li>
249
            <label for="unitprice">Actual cost:</label>
249
            <label for="unitprice">Actual cost:</label>
250
            <input type="text" size="20" name="unitprice" id="unitprice" value="[% unitprice | $Price on_editing => 1 | html %]" />
250
            <input type="text" size="20" name="unitprice" id="unitprice" value="[% unitprice | $Price on_editing => 1 | html %]" />
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt (-12 / +12 lines)
Lines 171-180 Link Here
171
                  <a href="/cgi-bin/koha/catalogue/showmarc.pl?id=[% loop_order.biblionumber | html %]" class="previewData">MARC</a><br>
171
                  <a href="/cgi-bin/koha/catalogue/showmarc.pl?id=[% loop_order.biblionumber | html %]" class="previewData">MARC</a><br>
172
                  <a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&amp;id=[% loop_order.biblionumber | html %]" class="previewData">Card</a>
172
                  <a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&amp;id=[% loop_order.biblionumber | html %]" class="previewData">Card</a>
173
                </td>
173
                </td>
174
                <td>[% loop_order.replacementprice | $Price | html %]</td>
174
                <td>[% loop_order.replacementprice | $Price %]</td>
175
                <td>[% loop_order.quantity | html %]</td>
175
                <td>[% loop_order.quantity | html %]</td>
176
                <td>[% loop_order.ecost | $Price | html %]</td>
176
                <td>[% loop_order.ecost | $Price %]</td>
177
                <td>[% loop_order.total | $Price | html %]</td>
177
                <td>[% loop_order.total | $Price %]</td>
178
                <td>[% loop_order.budget_name | html %]</td>
178
                <td>[% loop_order.budget_name | html %]</td>
179
				<td>
179
				<td>
180
                              <a href="orderreceive.pl?ordernumber=[% loop_order.ordernumber | html %]&amp;invoiceid=[% invoiceid | html %]">Receive</a>
180
                              <a href="orderreceive.pl?ordernumber=[% loop_order.ordernumber | html %]&amp;invoiceid=[% invoiceid | html %]">Receive</a>
Lines 250-276 Link Here
250
                    <td colspan="6" class="total">(Tax exc.)</td>
250
                    <td colspan="6" class="total">(Tax exc.)</td>
251
                [% END %]
251
                [% END %]
252
                <td colspan="3"><i>Subtotal for</i> [% key | html %]</td>
252
                <td colspan="3"><i>Subtotal for</i> [% key | html %]</td>
253
                <td>[% subtotal_for_funds.$key.ecost | $Price | html %]</td>
253
                <td>[% subtotal_for_funds.$key.ecost | $Price %]</td>
254
                <td>[% subtotal_for_funds.$key.unitprice | $Price | html %]</td>
254
                <td>[% subtotal_for_funds.$key.unitprice | $Price %]</td>
255
                <td>&nbsp;</td>
255
                <td>&nbsp;</td>
256
                <td>&nbsp;</td>
256
                <td>&nbsp;</td>
257
            </tr>
257
            </tr>
258
        [% END %]
258
        [% END %]
259
        <tr>
259
        <tr>
260
            <th colspan="11" class="total">Total tax exc.</th>
260
            <th colspan="11" class="total">Total tax exc.</th>
261
            <th>[% total_tax_excluded | $Price | html %]</th>
261
            <th>[% total_tax_excluded | $Price %]</th>
262
            <th></th>
262
            <th></th>
263
        </tr>
263
        </tr>
264
        [% FOREACH book_foot IN book_foot_loop %]
264
        [% FOREACH book_foot IN book_foot_loop %]
265
            <tr>
265
            <tr>
266
                <th colspan="11">Total (GST [% book_foot.tax_rate * 100 | html %]%)</th>
266
                <th colspan="11">Total (GST [% book_foot.tax_rate * 100 | html %]%)</th>
267
                <th>[% book_foot.tax_value | $Price | html %]</th>
267
                <th>[% book_foot.tax_value | $Price %]</th>
268
                <th></th>
268
                <th></th>
269
            </tr>
269
            </tr>
270
        [% END %]
270
        [% END %]
271
        <tr>
271
        <tr>
272
            <th colspan="11" class="total">Total tax inc.</th>
272
            <th colspan="11" class="total">Total tax inc.</th>
273
            <th>[% total_tax_included | $Price | html %]</th>
273
            <th>[% total_tax_included | $Price %]</th>
274
            <th></th>
274
            <th></th>
275
        </tr>
275
        </tr>
276
    </tfoot>
276
    </tfoot>
Lines 324-335 Link Here
324
                  <a href="/cgi-bin/koha/catalogue/showmarc.pl?id=[% order.biblionumber | html %]" class="previewData">MARC</a><br>
324
                  <a href="/cgi-bin/koha/catalogue/showmarc.pl?id=[% order.biblionumber | html %]" class="previewData">MARC</a><br>
325
                  <a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&amp;id=[% order.biblionumber | html %]" class="previewData">Card</a>
325
                  <a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&amp;id=[% order.biblionumber | html %]" class="previewData">Card</a>
326
                </td>
326
                </td>
327
                <td>[% order.replacementprice | $Price | html %]</td>
327
                <td>[% order.replacementprice | $Price %]</td>
328
                <td>[% order.quantityreceived | html %]</td>
328
                <td>[% order.quantityreceived | html %]</td>
329
                <td>[% order.budget.budget_name | html %]</td>
329
                <td>[% order.budget.budget_name | html %]</td>
330
                <td>[% order.ecost | $Price | html %]</td>
330
                <td>[% order.ecost | $Price %]</td>
331
                <td>[% order.unitprice | $Price | html %]</td>
331
                <td>[% order.unitprice | $Price %]</td>
332
                <td>[% order.total | $Price | html %]</td>
332
                <td>[% order.total | $Price %]</td>
333
                <td>
333
                <td>
334
                    [% IF loop_receive.cannot_cancel or ( order.basket.effective_create_items == "receiving" and loop_receive.holds > 0 ) %]
334
                    [% IF loop_receive.cannot_cancel or ( order.basket.effective_create_items == "receiving" and loop_receive.holds > 0 ) %]
335
                      [% IF loop_receive.cannot_cancel %]
335
                      [% IF loop_receive.cannot_cancel %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgetperiods.tt (-4 / +4 lines)
Lines 368-374 Link Here
368
            [% IF r.orders_moved.size > 0 %]
368
            [% IF r.orders_moved.size > 0 %]
369
              [% FOR order IN r.orders_moved %]
369
              [% FOR order IN r.orders_moved %]
370
                <tr>
370
                <tr>
371
                  <td>[% r.budget.budget_name | html %] (id=[% r.budget.budget_id | html %]) Amount=[% r.budget.budget_amount | $Price | html %][% IF r.unspent_moved %] ([% r.unspent_moved | $Price | html %] remaining has been moved)[% END %]</td>
371
                  <td>[% r.budget.budget_name | html %] (id=[% r.budget.budget_id | html %]) Amount=[% r.budget.budget_amount | $Price %][% IF r.unspent_moved %] ([% r.unspent_moved | $Price %] remaining has been moved)[% END %]</td>
372
                  <td>[% order.basketname | html %]</td>
372
                  <td>[% order.basketname | html %]</td>
373
                  <td>[% order.ordernumber | html %]</td>
373
                  <td>[% order.ordernumber | html %]</td>
374
                  <td>Moved!</td>
374
                  <td>Moved!</td>
Lines 385-391 Link Here
385
          [% ELSE %]
385
          [% ELSE %]
386
            [% IF r.error == 'budget_code_not_exists' %]
386
            [% IF r.error == 'budget_code_not_exists' %]
387
              <tr>
387
              <tr>
388
                <td>[% r.budget.budget_id | html %] [% r.budget.budget_amount | $Price | html %][% IF r.unspent_moved %] ([% r.unspent_moved | $Price | html %] remaining has been moved)[% END %]</td>
388
                <td>[% r.budget.budget_id | html %] [% r.budget.budget_amount | $Price %][% IF r.unspent_moved %] ([% r.unspent_moved | $Price %] remaining has been moved)[% END %]</td>
389
                <td></td>
389
                <td></td>
390
                <td></td>
390
                <td></td>
391
                <td>This fund code does not exist in the destination budget.</td>
391
                <td>This fund code does not exist in the destination budget.</td>
Lines 439-445 Link Here
439
                    <span style="color:green;">Locked</span>&nbsp;
439
                    <span style="color:green;">Locked</span>&nbsp;
440
                  [% END %]
440
                  [% END %]
441
                </td>
441
                </td>
442
                <td class="data">[% period_active.budget_period_total | $Price | html %]</td>
442
                <td class="data">[% period_active.budget_period_total | $Price %]</td>
443
                <td>
443
                <td>
444
                    [% PROCESS action_menu block_budget=period_active %]
444
                    [% PROCESS action_menu block_budget=period_active %]
445
                </td>
445
                </td>
Lines 471-477 Link Here
471
                  <td><span title="[% period_loo.budget_period_startdate | html %]">[% period_loo.budget_period_startdate | $KohaDates %]</span></td>
471
                  <td><span title="[% period_loo.budget_period_startdate | html %]">[% period_loo.budget_period_startdate | $KohaDates %]</span></td>
472
                  <td><span title="[% period_loo.budget_period_enddate | html %]">[% period_loo.budget_period_enddate | $KohaDates %]</span></td>
472
                  <td><span title="[% period_loo.budget_period_enddate | html %]">[% period_loo.budget_period_enddate | $KohaDates %]</span></td>
473
                  <td> [% IF ( period_loo.budget_period_locked ) %]<span style="color:green;">Locked</span>&nbsp;[% ELSE %][% END %] </td>
473
                  <td> [% IF ( period_loo.budget_period_locked ) %]<span style="color:green;">Locked</span>&nbsp;[% ELSE %][% END %] </td>
474
                  <td class="data">[% period_loo.budget_period_total | $Price | html %]</td>
474
                  <td class="data">[% period_loo.budget_period_total | $Price %]</td>
475
                  <td>
475
                  <td>
476
                        [% PROCESS action_menu block_budget=period_loo %]
476
                        [% PROCESS action_menu block_budget=period_loo %]
477
                  </td>
477
                  </td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt (-17 / +17 lines)
Lines 81-94 Link Here
81
    <tr>
81
    <tr>
82
    <th></th>
82
    <th></th>
83
    <th></th>
83
    <th></th>
84
    <th colspan="2" style="text-align: left;" nowrap="nowrap">Period allocated [% IF budget_period_total %][% budget_period_total | $Price | html %][% END %]  </th>
84
    <th colspan="2" style="text-align: left;" nowrap="nowrap">Period allocated [% IF budget_period_total %][% budget_period_total | $Price %][% END %]  </th>
85
    <th nowrap="nowrap" class="data"> [% period_alloc_total | $Price | html %]</th>
85
    <th nowrap="nowrap" class="data"> [% period_alloc_total | $Price %]</th>
86
    <th></th>
86
    <th></th>
87
    <th class="data">[% ordered_total | $Price | html %]</th>
87
    <th class="data">[% ordered_total | $Price %]</th>
88
    <th></th>
88
    <th></th>
89
    <th class="data">[% spent_total | $Price | html %]</th>
89
    <th class="data">[% spent_total | $Price %]</th>
90
    <th></th>
90
    <th></th>
91
    <th class="data">[% available_total | $Price | html %]</th>
91
    <th class="data">[% available_total | $Price %]</th>
92
    <th></th>
92
    <th></th>
93
    </tr>
93
    </tr>
94
    </tfoot>
94
    </tfoot>
Lines 105-141 Link Here
105
    <td>[% budget.budget_name | html %]</td>
105
    <td>[% budget.budget_name | html %]</td>
106
    <td class="data">
106
    <td class="data">
107
      [% IF budget.budget_parent_id %]
107
      [% IF budget.budget_parent_id %]
108
        <span class="child_fund_amount">[% budget.budget_amount | $Price | html %]</span>
108
        <span class="child_fund_amount">[% budget.budget_amount | $Price %]</span>
109
      [% ELSE %]
109
      [% ELSE %]
110
        <span class="total_amount">[% budget.budget_amount | $Price | html %]</span>
110
        <span class="total_amount">[% budget.budget_amount | $Price %]</span>
111
      [% END %]
111
      [% END %]
112
    </td>
112
    </td>
113
    <td class="data">
113
    <td class="data">
114
      [% IF budget.budget_parent_id %]
114
      [% IF budget.budget_parent_id %]
115
        <span class="child_fund_amount">[% budget.budget_ordered | $Price | html %]</span>
115
        <span class="child_fund_amount">[% budget.budget_ordered | $Price %]</span>
116
      [% ELSE %]
116
      [% ELSE %]
117
        <span class="total_amount">[% budget.budget_ordered | $Price | html %]</span>
117
        <span class="total_amount">[% budget.budget_ordered | $Price %]</span>
118
      [% END %]
118
      [% END %]
119
    </td>
119
    </td>
120
    <td class="data">
120
    <td class="data">
121
      [% IF budget.budget_parent_id %]
121
      [% IF budget.budget_parent_id %]
122
        <span class="child_fund_amount">[% budget.total_ordered | $Price | html %]</span>
122
        <span class="child_fund_amount">[% budget.total_ordered | $Price %]</span>
123
      [% ELSE %]
123
      [% ELSE %]
124
        <span class="total_amount">[% budget.total_ordered | $Price | html %]</span>
124
        <span class="total_amount">[% budget.total_ordered | $Price %]</span>
125
      [% END %]
125
      [% END %]
126
    </td>
126
    </td>
127
    <td class="data">
127
    <td class="data">
128
      [% IF budget.budget_parent_id %]
128
      [% IF budget.budget_parent_id %]
129
        <span class="child_fund_amount">[% budget.budget_spent | $Price | html %]</span>
129
        <span class="child_fund_amount">[% budget.budget_spent | $Price %]</span>
130
      [% ELSE %]
130
      [% ELSE %]
131
        <span class="total_amount">[% budget.budget_spent | $Price | html %]</span>
131
        <span class="total_amount">[% budget.budget_spent | $Price %]</span>
132
      [% END %]
132
      [% END %]
133
    </td>
133
    </td>
134
    <td class="data">
134
    <td class="data">
135
      [% IF budget.budget_parent_id %]
135
      [% IF budget.budget_parent_id %]
136
        <span class="child_fund_amount">[% budget.total_spent | $Price | html %]</span>
136
        <span class="child_fund_amount">[% budget.total_spent | $Price %]</span>
137
      [% ELSE %]
137
      [% ELSE %]
138
        <span class="total_amount">[% budget.total_spent | $Price | html %]</span>
138
        <span class="total_amount">[% budget.total_spent | $Price %]</span>
139
      [% END %]
139
      [% END %]
140
    </td>
140
    </td>
141
141
Lines 158-164 Link Here
158
                <span class="totalamount">
158
                <span class="totalamount">
159
            [% END %]
159
            [% END %]
160
        [% END %]
160
        [% END %]
161
            [% value | $Price | html %]
161
            [% value | $Price %]
162
        </span>
162
        </span>
163
    [% END %]
163
    [% END %]
164
    <td class="data">
164
    <td class="data">
Lines 376-382 Link Here
376
        <table>
376
        <table>
377
            <tr>
377
            <tr>
378
            <th scope="row">Fund amount:</th>
378
            <th scope="row">Fund amount:</th>
379
            <td>[% budget_amount | $Price | html %]</td>
379
            <td>[% budget_amount | $Price %]</td>
380
            </tr>
380
            </tr>
381
        </table>
381
        </table>
382
382
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tt (-2 / +2 lines)
Lines 76-82 Link Here
76
            <td>
76
            <td>
77
        [% END %]
77
        [% END %]
78
        <a href="/cgi-bin/koha/admin/aqbudgets.pl?op=add_form&amp;budget_id=[% budget_line.budget_id | html %]&amp;budget_period_id=[% budget_period_id | html %]">[% budget_line.budget_name | html %]</a></td>
78
        <a href="/cgi-bin/koha/admin/aqbudgets.pl?op=add_form&amp;budget_id=[% budget_line.budget_id | html %]&amp;budget_period_id=[% budget_period_id | html %]">[% budget_line.budget_name | html %]</a></td>
79
        <td><span id="[% budget_line.budget_amount | html %]">[% budget_line.budget_amount | $Price | html %]&nbsp;</span>
79
        <td><span id="[% budget_line.budget_amount | html %]">[% budget_line.budget_amount | $Price %]&nbsp;</span>
80
80
81
81
82
        <!-- NEXT DIV ELEMENT IS USED BY JS FOR CALC-ING AUTO-FILL AND ESTIMATED AMOUNTS -->
82
        <!-- NEXT DIV ELEMENT IS USED BY JS FOR CALC-ING AUTO-FILL AND ESTIMATED AMOUNTS -->
Lines 129-135 Link Here
129
        [% ELSE %]
129
        [% ELSE %]
130
            <td id="budget_est_[% budget_line.budget_id | html %]">
130
            <td id="budget_est_[% budget_line.budget_id | html %]">
131
        [% END %] 
131
        [% END %] 
132
                [% budget_line.budget_est_remain | $Price | html %]&nbsp;
132
                [% budget_line.budget_est_remain | $Price %]&nbsp;
133
            </td>
133
            </td>
134
            </tr>
134
            </tr>
135
        </table>
135
        </table>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt (-4 / +4 lines)
Lines 279-288 Link Here
279
                </tr>
279
                </tr>
280
                <tr><th scope="row">Age required: </th><td>[% category.dateofbirthrequired | html %] years</td></tr>
280
                <tr><th scope="row">Age required: </th><td>[% category.dateofbirthrequired | html %] years</td></tr>
281
                <tr><th scope="row">Upperage limit: </th><td>[% category.upperagelimit | html %] years</td></tr>
281
                <tr><th scope="row">Upperage limit: </th><td>[% category.upperagelimit | html %] years</td></tr>
282
                <tr><th scope="row">Enrollment fee: </th><td>[% category.enrolmentfee | $Price | html %]</td></tr>
282
                <tr><th scope="row">Enrollment fee: </th><td>[% category.enrolmentfee | $Price %]</td></tr>
283
                <tr><th scope="row">Receives overdue notices: </th><td>[% IF category. overduenoticerequired %]Yes[% ELSE %]No[% END %]</td></tr>
283
                <tr><th scope="row">Receives overdue notices: </th><td>[% IF category. overduenoticerequired %]Yes[% ELSE %]No[% END %]</td></tr>
284
                <tr><th scope="row">Lost items in staff client</th><td>[% IF category.hidelostitems %]Hidden by default[% ELSE %]Shown[% END %]</td></tr>
284
                <tr><th scope="row">Lost items in staff client</th><td>[% IF category.hidelostitems %]Hidden by default[% ELSE %]Shown[% END %]</td></tr>
285
                <tr><th scope="row">Hold fee: </th><td>[% category.reservefee | $Price | html %]</td></tr>
285
                <tr><th scope="row">Hold fee: </th><td>[% category.reservefee | $Price %]</td></tr>
286
286
287
                [% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %]
287
                [% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %]
288
                  <tr>
288
                  <tr>
Lines 397-410 Link Here
397
                            <td>-</td>
397
                            <td>-</td>
398
                        [% END %]
398
                        [% END %]
399
                        [% IF (category.enrolmentfee > 0) %]
399
                        [% IF (category.enrolmentfee > 0) %]
400
                            <td>[% category.enrolmentfee | $Price | html %]</td>
400
                            <td>[% category.enrolmentfee | $Price %]</td>
401
                        [% ELSE %]
401
                        [% ELSE %]
402
                            <td>-</td>
402
                            <td>-</td>
403
                        [% END %]
403
                        [% END %]
404
                        <td>[% IF ( category.overduenoticerequired ) %]Yes[% ELSE %]No[% END %]</td>
404
                        <td>[% IF ( category.overduenoticerequired ) %]Yes[% ELSE %]No[% END %]</td>
405
                        <td>[% IF ( category.hidelostitems ) %]Hidden[% ELSE %]Shown[% END %]</td>
405
                        <td>[% IF ( category.hidelostitems ) %]Hidden[% ELSE %]Shown[% END %]</td>
406
                        [% IF (category.reservefee > 0) %]
406
                        [% IF (category.reservefee > 0) %]
407
                            <td>[% category.reservefee | $Price | html %]</td>
407
                            <td>[% category.reservefee | $Price %]</td>
408
                        [% ELSE %]
408
                        [% ELSE %]
409
                            <td>-</td>
409
                            <td>-</td>
410
                        [% END %]
410
                        [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt (-4 / +4 lines)
Lines 307-313 Item types administration Link Here
307
                    </td>
307
                    </td>
308
                </tr>
308
                </tr>
309
            [% END %]
309
            [% END %]
310
            <tr><th scope="row">Rental charge</th><td>[% itemtype.rentalcharge | $Price | html %]</td></tr>
310
            <tr><th scope="row">Rental charge</th><td>[% itemtype.rentalcharge | $Price %]</td></tr>
311
        </table>
311
        </table>
312
        <form action="/cgi-bin/koha/admin/itemtypes.pl" method="post">
312
        <form action="/cgi-bin/koha/admin/itemtypes.pl" method="post">
313
            <input type="hidden" name="op" value="delete_confirmed" /><input type="hidden" name="itemtype" value="[% itemtype.itemtype | html %]" />
313
            <input type="hidden" name="op" value="delete_confirmed" /><input type="hidden" name="itemtype" value="[% itemtype.itemtype | html %]" />
Lines 369-379 Item types administration Link Here
369
            <td>[% IF ( itemtype.hideinopac ) %]Yes[% ELSE %]&nbsp;[% END %]</td>
369
            <td>[% IF ( itemtype.hideinopac ) %]Yes[% ELSE %]&nbsp;[% END %]</td>
370
            <td>
370
            <td>
371
            [% UNLESS ( itemtype.notforloan ) %]
371
            [% UNLESS ( itemtype.notforloan ) %]
372
              [% itemtype.rentalcharge | $Price | html %]
372
              [% itemtype.rentalcharge | $Price %]
373
            [% END %]
373
            [% END %]
374
            </td>
374
            </td>
375
            <td>[% itemtype.defaultreplacecost | $Price | html %]</td>
375
            <td>[% itemtype.defaultreplacecost | $Price %]</td>
376
            <td>[% itemtype.processfee | $Price | html %]</td>
376
            <td>[% itemtype.processfee | $Price %]</td>
377
            <td>[% itemtype.checkinmsg | html_line_break | $raw %]</td>
377
            <td>[% itemtype.checkinmsg | html_line_break | $raw %]</td>
378
            <td class="actions">
378
            <td class="actions">
379
              <a href="/cgi-bin/koha/admin/itemtypes.pl?op=add_form&amp;itemtype=[% itemtype.itemtype | html %]" class="btn btn-default btn-xs"><i class="fa fa-pencil"></i> Edit</a>
379
              <a href="/cgi-bin/koha/admin/itemtypes.pl?op=add_form&amp;itemtype=[% itemtype.itemtype | html %]" class="btn btn-default btn-xs"><i class="fa fa-pencil"></i> Edit</a>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-4 / +4 lines)
Lines 99-109 Link Here
99
[% END %]
99
[% END %]
100
100
101
[% IF ( DEBT ) %]
101
[% IF ( DEBT ) %]
102
    <li>The patron has a debt of [% DEBT | $Price | html %].</li>
102
    <li>The patron has a debt of [% DEBT | $Price %].</li>
103
[% END %]
103
[% END %]
104
104
105
[% IF ( DEBT_GUARANTEES ) %]
105
[% IF ( DEBT_GUARANTEES ) %]
106
    <li>The patron's guarantees collectively have a debt of [% DEBT_GUARANTEES | $Price | html %].</li>
106
    <li>The patron's guarantees collectively have a debt of [% DEBT_GUARANTEES | $Price %].</li>
107
[% END %]
107
[% END %]
108
108
109
[% IF ( RENTALCHARGE && RENTALCHARGE > 0 ) %]
109
[% IF ( RENTALCHARGE && RENTALCHARGE > 0 ) %]
Lines 718-724 No patron matched <span class="ex">[% message | html %]</span> Link Here
718
718
719
            [% IF ( charges_guarantees ) %]
719
            [% IF ( charges_guarantees ) %]
720
                <li>
720
                <li>
721
                    <span class="circ-hlt">Fees &amp; Charges:</span> Patron's guarantees collectively owe [% chargesamount_guarantees | $Price | html %].
721
                    <span class="circ-hlt">Fees &amp; Charges:</span> Patron's guarantees collectively owe [% chargesamount_guarantees | $Price %].
722
                        [% IF noissues %]
722
                        [% IF noissues %]
723
                            <span class="circ-hlt">Checkouts are BLOCKED because fine balance is OVER THE LIMIT.</span>
723
                            <span class="circ-hlt">Checkouts are BLOCKED because fine balance is OVER THE LIMIT.</span>
724
                        [% END %]
724
                        [% END %]
Lines 728-734 No patron matched <span class="ex">[% message | html %]</span> Link Here
728
728
729
            [% IF ( credits ) %]
729
            [% IF ( credits ) %]
730
                <li>
730
                <li>
731
                    <span class="circ-hlt">Credits:</span> Patron has a credit[% IF ( creditsamount ) %] of [% creditsamount | $Price | html %][% END %]
731
                    <span class="circ-hlt">Credits:</span> Patron has a credit[% IF ( creditsamount ) %] of [% creditsamount | $Price %][% END %]
732
                </li>
732
                </li>
733
            [% END %]
733
            [% END %]
734
734
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt (-2 / +2 lines)
Lines 50-56 Link Here
50
    [% END %]
50
    [% END %]
51
    [% IF charges_guarantees %]
51
    [% IF charges_guarantees %]
52
        <li>
52
        <li>
53
            <span class="circ-hlt">Fees &amp; Charges:</span> Patron's guarantees collectively owe [% chargesamount_guarantees | $Price | html %].
53
            <span class="circ-hlt">Fees &amp; Charges:</span> Patron's guarantees collectively owe [% chargesamount_guarantees | $Price %].
54
        </li>
54
        </li>
55
        <li>
55
        <li>
56
            <span class="circ-hlt">Checkouts are BLOCKED because fine balance is OVER THE LIMIT.</span>
56
            <span class="circ-hlt">Checkouts are BLOCKED because fine balance is OVER THE LIMIT.</span>
Lines 249-255 Link Here
249
                      <li><i class="fa fa-li fa-exclamation"></i>The barcode was not found [% checkout_info.barcode | html %].</li>
249
                      <li><i class="fa fa-li fa-exclamation"></i>The barcode was not found [% checkout_info.barcode | html %].</li>
250
                  [% END %]
250
                  [% END %]
251
                  [% IF checkout_info.DEBT %]
251
                  [% IF checkout_info.DEBT %]
252
                      <li><i class="fa fa-li fa-exclamation"></i>The patron has a debt of [% checkout_info.DEBT | $Price | html %].</li> <!-- Need debt_confirmed -->
252
                      <li><i class="fa fa-li fa-exclamation"></i>The patron has a debt of [% checkout_info.DEBT | $Price %].</li> <!-- Need debt_confirmed -->
253
                  [% END %]
253
                  [% END %]
254
                </p>
254
                </p>
255
              [% END %]
255
              [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/accountline-details.tt (-5 / +5 lines)
Lines 61-71 Link Here
61
                            </td>
61
                            </td>
62
62
63
                            <td>
63
                            <td>
64
                                [% accountline.amount | $Price | html %]
64
                                [% accountline.amount | $Price %]
65
                            </td>
65
                            </td>
66
66
67
                            <td>
67
                            <td>
68
                                [% accountline.amountoutstanding | $Price | html %]
68
                                [% accountline.amountoutstanding | $Price %]
69
                            </td>
69
                            </td>
70
                        </tr>
70
                        </tr>
71
                    </tbody>
71
                    </tbody>
Lines 107-119 Link Here
107
                                    <tr>
107
                                    <tr>
108
                                        <td>[% offset_accountline.date | $KohaDates %]</td>
108
                                        <td>[% offset_accountline.date | $KohaDates %]</td>
109
                                        <td>[% offset_accountline.timestamp | $KohaDates with_hours => 1 | html %]</td>
109
                                        <td>[% offset_accountline.timestamp | $KohaDates with_hours => 1 | html %]</td>
110
                                        <td>[% offset_accountline.amount | $Price | html %]</td>
110
                                        <td>[% offset_accountline.amount | $Price %]</td>
111
                                        <td>[% offset_accountline.amountoutstanding | $Price | html %]</td>
111
                                        <td>[% offset_accountline.amountoutstanding | $Price %]</td>
112
                                        <td>[% INCLUDE 'accounttype.inc' account => offset_accountline %]</td>
112
                                        <td>[% INCLUDE 'accounttype.inc' account => offset_accountline %]</td>
113
                                        <td>[% offset_accountline.note | html %]</td>
113
                                        <td>[% offset_accountline.note | html %]</td>
114
                                        <td>[% IF offset_accountline.manager_id %]<a href="moremember.pl?borrowernumber=[% offset_accountline.manager_id | html %]">[% offset_accountline.manager_id | html %]</a>[% END %]</td>
114
                                        <td>[% IF offset_accountline.manager_id %]<a href="moremember.pl?borrowernumber=[% offset_accountline.manager_id | html %]">[% offset_accountline.manager_id | html %]</a>[% END %]</td>
115
                                        <td>[% ao.created_on | $KohaDates with_hours => 1 | html %]</td>
115
                                        <td>[% ao.created_on | $KohaDates with_hours => 1 | html %]</td>
116
                                        <td>[% ao.amount | $Price | html %]</td>
116
                                        <td>[% ao.amount | $Price %]</td>
117
                                        <td>[% INCLUDE 'account_offset_type.inc' account_offset => ao %]</td>
117
                                        <td>[% INCLUDE 'account_offset_type.inc' account_offset => ao %]</td>
118
                                        <td><a href="accountline-details.pl?accountlines_id=[% offset_accountline.id | html %]" class="btn btn-default btn-xs"><i class="fa fa-list"></i> Details</a></td>
118
                                        <td><a href="accountline-details.pl?accountlines_id=[% offset_accountline.id | html %]" class="btn btn-default btn-xs"><i class="fa fa-list"></i> Details</a></td>
119
                                    </tr>
119
                                    </tr>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt (-4 / +4 lines)
Lines 67-74 Link Here
67
        &nbsp;[% IF ( account.itemnumber ) %]<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% account.item.biblionumber | html %]&amp;itemnumber=[% account.itemnumber | html %]">[% account.item.biblio.title | html %]</a>[% END %]</td>
67
        &nbsp;[% IF ( account.itemnumber ) %]<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% account.item.biblionumber | html %]&amp;itemnumber=[% account.itemnumber | html %]">[% account.item.biblio.title | html %]</a>[% END %]</td>
68
      <td>[% IF account.itemnumber %][% Branches.GetName( account.item.homebranch ) | html %][% END %]</td>
68
      <td>[% IF account.itemnumber %][% Branches.GetName( account.item.homebranch ) | html %][% END %]</td>
69
      <td>[% account.note | html_line_break %]</td>
69
      <td>[% account.note | html_line_break %]</td>
70
      [% IF ( account.amountcredit ) %]<td class="credit" style="text-align: right;">[% ELSE %]<td class="debit" style="text-align: right;">[% END %][% account.amount | $Price | html %]</td>
70
      [% IF ( account.amountcredit ) %]<td class="credit" style="text-align: right;">[% ELSE %]<td class="debit" style="text-align: right;">[% END %][% account.amount | $Price %]</td>
71
      [% IF ( account.amountoutstandingcredit ) %]<td class="credit" style="text-align: right;">[% ELSE %]<td class="debit" style="text-align: right;">[% END %][% account.amountoutstanding | $Price | html %]</td>
71
      [% IF ( account.amountoutstandingcredit ) %]<td class="credit" style="text-align: right;">[% ELSE %]<td class="debit" style="text-align: right;">[% END %][% account.amountoutstanding | $Price %]</td>
72
      <td class="actions">
72
      <td class="actions">
73
        [% IF ( account.payment ) %]
73
        [% IF ( account.payment ) %]
74
          <a target="_blank" href="printfeercpt.pl?action=print&amp;accountlines_id=[% account.accountlines_id | html %]&amp;borrowernumber=[% account.borrowernumber | html %]" class="btn btn-default btn-xs"><i class="fa fa-print"></i> Print</a>
74
          <a target="_blank" href="printfeercpt.pl?action=print&amp;accountlines_id=[% account.accountlines_id | html %]&amp;borrowernumber=[% account.borrowernumber | html %]" class="btn btn-default btn-xs"><i class="fa fa-print"></i> Print</a>
Lines 96-104 Link Here
96
  <tr>
96
  <tr>
97
    <td colspan="5">Total due</td>
97
    <td colspan="5">Total due</td>
98
    [% IF ( totalcredit ) %]
98
    [% IF ( totalcredit ) %]
99
        <td class="credit" style="text-align: right;">[% total | $Price | html %]</td>
99
        <td class="credit" style="text-align: right;">[% total | $Price %]</td>
100
    [% ELSE %]
100
    [% ELSE %]
101
       <td class="debit"style="text-align: right;">[% total | $Price | html %]</td>
101
       <td class="debit"style="text-align: right;">[% total | $Price %]</td>
102
    [% END %]
102
    [% END %]
103
    <td></td>
103
    <td></td>
104
  </tr>
104
  </tr>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/deletemem.tt (-1 / +1 lines)
Lines 26-32 Link Here
26
                <li>Patron has [% ItemsOnIssues | html %] item(s) checked out.</li>
26
                <li>Patron has [% ItemsOnIssues | html %] item(s) checked out.</li>
27
            [% END %]
27
            [% END %]
28
            [% IF ( charges ) %]
28
            [% IF ( charges ) %]
29
                <li>Patron has [% charges | $Price | html %] in fines.</li>
29
                <li>Patron has [% charges | $Price %] in fines.</li>
30
            [% END %]
30
            [% END %]
31
            [% IF ( guarantees ) %]
31
            [% IF ( guarantees ) %]
32
                <li>Patron's record has guaranteed accounts attached.</li>
32
                <li>Patron's record has guaranteed accounts attached.</li>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt (-3 / +3 lines)
Lines 128-141 Link Here
128
                      <td class="credit" style="text-align: right;">
128
                      <td class="credit" style="text-align: right;">
129
                  [% ELSE %]
129
                  [% ELSE %]
130
                      <td class="debit" style="text-align: right;">
130
                      <td class="debit" style="text-align: right;">
131
                  [% END %][% account.amount | $Price | html %]
131
                  [% END %][% account.amount | $Price %]
132
                      </td>
132
                      </td>
133
                  [% IF ( account.amountoutstanding < 0 ) %]
133
                  [% IF ( account.amountoutstanding < 0 ) %]
134
                      <td class="credit" style="text-align: right;">
134
                      <td class="credit" style="text-align: right;">
135
                  [% ELSE %]
135
                  [% ELSE %]
136
                      <td class="debit" style="text-align: right;">
136
                      <td class="debit" style="text-align: right;">
137
                  [% END %]
137
                  [% END %]
138
                          [% account.amountoutstanding | $Price | html %]
138
                          [% account.amountoutstanding | $Price %]
139
                      </td>
139
                      </td>
140
                </tr>
140
                </tr>
141
            [% END %]
141
            [% END %]
Lines 143-149 Link Here
143
            <tfoot>
143
            <tfoot>
144
                <tr>
144
                <tr>
145
                    <td colspan="4">Total due</td>
145
                    <td colspan="4">Total due</td>
146
                    <td colspan="2" style="text-align:right;">[% totaldue | $Price | html %]</td>
146
                    <td colspan="2" style="text-align:right;">[% totaldue | $Price %]</td>
147
                </tr>
147
                </tr>
148
            </tfoot>
148
            </tfoot>
149
        </table>
149
        </table>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt (-5 / +5 lines)
Lines 52-58 Link Here
52
<tfoot>
52
<tfoot>
53
<tr>
53
<tr>
54
    <td class="total" colspan="6">Total due:</td>
54
    <td class="total" colspan="6">Total due:</td>
55
    <td style="text-align: right;">[% total | $Price | html %]</td>
55
    <td style="text-align: right;">[% total | $Price %]</td>
56
</tr>
56
</tr>
57
</tfoot>
57
</tfoot>
58
<tbody>
58
<tbody>
Lines 105-119 Link Here
105
    </td>
105
    </td>
106
    <td><input type="text" name="payment_note_[% line.accountlines_id | html %]" /></td>
106
    <td><input type="text" name="payment_note_[% line.accountlines_id | html %]" /></td>
107
    <td>[% line.accounttype | html %]</td>
107
    <td>[% line.accounttype | html %]</td>
108
    <td class="debit" style="text-align: right;">[% line.amount | $Price | html %]</td>
108
    <td class="debit" style="text-align: right;">[% line.amount | $Price %]</td>
109
    <td class="debit" style="text-align: right;">[% line.amountoutstanding | $Price | html %]</td>
109
    <td class="debit" style="text-align: right;">[% line.amountoutstanding | $Price %]</td>
110
</tr>
110
</tr>
111
[% END %]
111
[% END %]
112
[% IF ( account_grp.total ) %]
112
[% IF ( account_grp.total ) %]
113
<tr>
113
<tr>
114
114
115
    <td class="total" colspan="8" style="text-align: right;">Sub total:</td>
115
    <td class="total" colspan="8" style="text-align: right;">Sub total:</td>
116
    <td style="text-align: right;">[% account_grp.total | $Price | html %]</td>
116
    <td style="text-align: right;">[% account_grp.total | $Price %]</td>
117
</tr>
117
</tr>
118
[% END %]
118
[% END %]
119
</tbody>
119
</tbody>
Lines 155-161 Link Here
155
        $(document).ready(function(){
155
        $(document).ready(function(){
156
        $('#pay-fines-form').preventDoubleFormSubmit();
156
        $('#pay-fines-form').preventDoubleFormSubmit();
157
            $("#woall").click(function(event){
157
            $("#woall").click(function(event){
158
                var msg = _("Are you sure you want to write off %s in outstanding fines? This cannot be undone!").format( "[% total | $Price | html %]" );
158
                var msg = _("Are you sure you want to write off %s in outstanding fines? This cannot be undone!").format( "[% total | $Price %]" );
159
                var answer = confirm(msg);
159
                var answer = confirm(msg);
160
                    if (!answer){
160
                    if (!answer){
161
                        event.preventDefault();
161
                        event.preventDefault();
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/tables/members_results.tt (-1 / +1 lines)
Lines 29-35 Link Here
29
                "dt_od_checkouts":
29
                "dt_od_checkouts":
30
                    "[% IF data.overdues %]<span class='overdue'><strong>[% data.overdues | html %]</strong></span>[% ELSE %][% data.overdues | html %][% END %] / [% data.issues | html %]",
30
                    "[% IF data.overdues %]<span class='overdue'><strong>[% data.overdues | html %]</strong></span>[% ELSE %][% data.overdues | html %][% END %] / [% data.issues | html %]",
31
                "dt_fines":
31
                "dt_fines":
32
                    "<span style='text-align: right; display: block;'>[% IF data.fines < 0 %]<span class='credit'>[% data.fines | $Price | html %]</span> [% ELSIF data.fines > 0 %] <span class='debit'><strong>[% data.fines | $Price | html %]</strong></span> [% ELSE %] [% data.fines | $Price | html %] [% END %]</span>",
32
                    "<span style='text-align: right; display: block;'>[% IF data.fines < 0 %]<span class='credit'>[% data.fines | $Price %]</span> [% ELSIF data.fines > 0 %] <span class='debit'><strong>[% data.fines | $Price %]</strong></span> [% ELSE %] [% data.fines | $Price %] [% END %]</span>",
33
                "dt_borrowernotes":
33
                "dt_borrowernotes":
34
                    "[% data.borrowernotes.replace('\\\\' , '\\\\') |html_line_break |collapse %]",
34
                    "[% data.borrowernotes.replace('\\\\' , '\\\\') |html_line_break |collapse %]",
35
                "dt_action":
35
                "dt_action":
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/cash_register_stats.tt (-2 / +2 lines)
Lines 228-234 Link Here
228
                    [% END %]
228
                    [% END %]
229
                </td>
229
                </td>
230
                <td>[% loopresul.note | html %]</td>
230
                <td>[% loopresul.note | html %]</td>
231
                <td style="text-align:right;">[% loopresul.amount | $Price | html %]</td>
231
                <td style="text-align:right;">[% loopresul.amount | $Price %]</td>
232
                <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% loopresul.biblionumber | html %]">[% loopresul.title | html %]</a></td>
232
                <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% loopresul.biblionumber | html %]">[% loopresul.title | html %]</a></td>
233
                <td>[% loopresul.barcode | html %]</td>
233
                <td>[% loopresul.barcode | html %]</td>
234
                <td>[% ItemTypes.GetDescription(loopresul.itype) | html %]</td>
234
                <td>[% ItemTypes.GetDescription(loopresul.itype) | html %]</td>
Lines 238-244 Link Here
238
        <tr>
238
        <tr>
239
            [% IF transaction_type == "ACT" %]
239
            [% IF transaction_type == "ACT" %]
240
            <th colspan="7" style="text-align:right;">TOTAL</th>
240
            <th colspan="7" style="text-align:right;">TOTAL</th>
241
            <th style="text-align:right;">[% total  | $Price | html %]</th>
241
            <th style="text-align:right;">[% total  | $Price %]</th>
242
            <th colspan="3">&nbsp;</th>
242
            <th colspan="3">&nbsp;</th>
243
            [% END %]
243
            [% END %]
244
        </tr>
244
        </tr>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/orders_by_budget.tt (-6 / +6 lines)
Lines 64-75 Link Here
64
            <td>[% ordersloo.authorisedbyname | html %]</td>
64
            <td>[% ordersloo.authorisedbyname | html %]</td>
65
            <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% ordersloo.biblionumber | html %]"> [% ordersloo.title | html %]</a></td>
65
            <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% ordersloo.biblionumber | html %]"> [% ordersloo.title | html %]</a></td>
66
            <td>[% ordersloo.currency | html %]</td>
66
            <td>[% ordersloo.currency | html %]</td>
67
            <td>[% ordersloo.listprice | $Price | html %]</td>
67
            <td>[% ordersloo.listprice | $Price %]</td>
68
            <td>[% ordersloo.rrp | $Price | html %]</td>
68
            <td>[% ordersloo.rrp | $Price %]</td>
69
            <td>[% ordersloo.ecost | $Price | html %]</td>
69
            <td>[% ordersloo.ecost | $Price %]</td>
70
            <td>[% ordersloo.quantity | html %]</td>
70
            <td>[% ordersloo.quantity | html %]</td>
71
            <td>[% ordersloo.total_rrp | $Price | html %]</td>
71
            <td>[% ordersloo.total_rrp | $Price %]</td>
72
            <td>[% ordersloo.total_ecost | $Price | html %]</td>
72
            <td>[% ordersloo.total_ecost | $Price %]</td>
73
            <td>[% ordersloo.entrydate | html %]</td>
73
            <td>[% ordersloo.entrydate | html %]</td>
74
            <td>[% ordersloo.datereceived | html %]</td>
74
            <td>[% ordersloo.datereceived | html %]</td>
75
            <td>[% ordersloo.order_internalnote | html %]</td>
75
            <td>[% ordersloo.order_internalnote | html %]</td>
Lines 77-83 Link Here
77
            </tr>
77
            </tr>
78
        [% END %]
78
        [% END %]
79
        </tbody>
79
        </tbody>
80
        <tfoot><tr><th>TOTAL</th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th>[% total_quantity | html %]</th><th>[% total_rrp | $Price | html %]</th><th>[% total_ecost | $Price | html %]</th><th></th><th></th><th></th><th></th></tr></tfoot>
80
        <tfoot><tr><th>TOTAL</th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th>[% total_quantity | html %]</th><th>[% total_rrp | $Price %]</th><th>[% total_ecost | $Price %]</th><th></th><th></th><th></th><th></th></tr></tfoot>
81
        </table>
81
        </table>
82
    [% END %]
82
    [% END %]
83
    [% ELSE %]
83
    [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt (-2 / +2 lines)
Lines 387-399 Link Here
387
                        <td>[% order.fund.budget_name | html %]</td>
387
                        <td>[% order.fund.budget_name | html %]</td>
388
                        <td>
388
                        <td>
389
                            [% UNLESS order.datereceived %]
389
                            [% UNLESS order.datereceived %]
390
                                [% order.ecost_tax_excluded | $Price | html %] / [% order.ecost_tax_included | $Price | html %]
390
                                [% order.ecost_tax_excluded | $Price %] / [% order.ecost_tax_included | $Price %]
391
                            [% END %]
391
                            [% END %]
392
                        </td>
392
                        </td>
393
                        <td>
393
                        <td>
394
                            [% IF order.datereceived %]
394
                            [% IF order.datereceived %]
395
                                [%# FIXME What if unitprice has not been filled? %]
395
                                [%# FIXME What if unitprice has not been filled? %]
396
                                [% order.unitprice_tax_excluded | $Price | html %] / [% order.unitprice_tax_included | $Price | html %]
396
                                [% order.unitprice_tax_excluded | $Price %] / [% order.unitprice_tax_included | $Price %]
397
                            [% END %]
397
                            [% END %]
398
                        </td>
398
                        </td>
399
                    </tr>
399
                    </tr>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt (-2 / +2 lines)
Lines 205-214 Link Here
205
          <span class="label">Currency:</span>[% currency | html %]
205
          <span class="label">Currency:</span>[% currency | html %]
206
        </li>
206
        </li>
207
        <li>
207
        <li>
208
          <span class="label">Price:</span>[% price | $Price | html %]
208
          <span class="label">Price:</span>[% price | $Price %]
209
        </li>
209
        </li>
210
        <li>
210
        <li>
211
          <span class="label">Total</span>[% total | $Price | html %]
211
          <span class="label">Total</span>[% total | $Price %]
212
        </li>
212
        </li>
213
      </ol>
213
      </ol>
214
    </fieldset>
214
    </fieldset>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt (-3 / +3 lines)
Lines 89-95 Link Here
89
                                    [%- SET COLSPAN = 3 -%]
89
                                    [%- SET COLSPAN = 3 -%]
90
                                [%- END -%]
90
                                [%- END -%]
91
                                <th class="sum" colspan="[% COLSPAN | html %]">Total due</th>
91
                                <th class="sum" colspan="[% COLSPAN | html %]">Total due</th>
92
                                <td class="sum">[% total | $Price | html %]</td>
92
                                <td class="sum">[% total | $Price %]</td>
93
                            </tr>
93
                            </tr>
94
                            </tfoot>
94
                            </tfoot>
95
95
Lines 134-141 Link Here
134
                                          [%- IF ACCOUNT_LINE.description %], [% ACCOUNT_LINE.description | html %][% END %]
134
                                          [%- IF ACCOUNT_LINE.description %], [% ACCOUNT_LINE.description | html %][% END %]
135
                                          [% IF ACCOUNT_LINE.title %]([% ACCOUNT_LINE.title | html %])[% END %]
135
                                          [% IF ACCOUNT_LINE.title %]([% ACCOUNT_LINE.title | html %])[% END %]
136
                                        </td>
136
                                        </td>
137
                                        [% IF ( ACCOUNT_LINE.amountcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% ACCOUNT_LINE.amount | $Price | html %]</td>
137
                                        [% IF ( ACCOUNT_LINE.amountcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% ACCOUNT_LINE.amount | $Price %]</td>
138
                                        [% IF ( ACCOUNT_LINE.amountoutstandingcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% ACCOUNT_LINE.amountoutstanding | $Price | html %]</td>
138
                                        [% IF ( ACCOUNT_LINE.amountoutstandingcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% ACCOUNT_LINE.amountoutstanding | $Price %]</td>
139
                                    </tr>
139
                                    </tr>
140
                                [% END %]
140
                                [% END %]
141
                            </tbody>
141
                            </tbody>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt (-1 / +1 lines)
Lines 65-71 Link Here
65
65
66
                        [% IF ( too_much_oweing ) %]
66
                        [% IF ( too_much_oweing ) %]
67
                            <li id="too_much_oweing">
67
                            <li id="too_much_oweing">
68
                                You have unpaid fines. Amount: [% too_much_oweing | $Price | html %].
68
                                You have unpaid fines. Amount: [% too_much_oweing | $Price %].
69
                            </li>
69
                            </li>
70
                        [% END %]
70
                        [% END %]
71
71
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-8 / +8 lines)
Lines 129-135 Link Here
129
                                    <li id="lost"><strong>Please note: </strong> Your library card has been marked as lost or stolen. <em>If this is an error, please contact the library.</em></li>
129
                                    <li id="lost"><strong>Please note: </strong> Your library card has been marked as lost or stolen. <em>If this is an error, please contact the library.</em></li>
130
                                [% END %]
130
                                [% END %]
131
                                [% IF ( renewal_blocked_fines.defined ) && ( OpacRenewalAllowed ) %]
131
                                [% IF ( renewal_blocked_fines.defined ) && ( OpacRenewalAllowed ) %]
132
                                    <li id="renewal_blocked_fines"><strong>Please note: </strong>You cannot renew your books online. Reason: [% IF ( renewal_blocked_fines ) > 0  %]Your fines exceed <span id="renewal_blocked_fines_amount">[% renewal_blocked_fines | $Price | html %]</span>.[% ELSE %]You have fines.[% END %]
132
                                    <li id="renewal_blocked_fines"><strong>Please note: </strong>You cannot renew your books online. Reason: [% IF ( renewal_blocked_fines ) > 0  %]Your fines exceed <span id="renewal_blocked_fines_amount">[% renewal_blocked_fines | $Price %]</span>.[% ELSE %]You have fines.[% END %]
133
                                [% END %]
133
                                [% END %]
134
                            </ul>
134
                            </ul>
135
                        </div>
135
                        </div>
Lines 145-153 Link Here
145
                            [% IF relatives %]<li><a href="#opac-user-relative-issues">Relatives' checkouts</a></li>[% END %]
145
                            [% IF relatives %]<li><a href="#opac-user-relative-issues">Relatives' checkouts</a></li>[% END %]
146
                            [% IF ( overdues_count ) %]<li><a href="#opac-user-overdues">Overdue ([% overdues_count | html %])</a></li>[% END %]
146
                            [% IF ( overdues_count ) %]<li><a href="#opac-user-overdues">Overdue ([% overdues_count | html %])</a></li>[% END %]
147
                            [% IF ( OPACFinesTab ) %]
147
                            [% IF ( OPACFinesTab ) %]
148
                                [% IF ( borrower.amountoverfive ) %]<li><a href="#opac-user-fines">Fines ([% amountoutstanding | $Price | html %])</a></li>[% END %]
148
                                [% IF ( borrower.amountoverfive ) %]<li><a href="#opac-user-fines">Fines ([% amountoutstanding | $Price %])</a></li>[% END %]
149
                                [% IF ( borrower.amountoverzero ) %]<li><a href="#opac-user-fines">Fines ([% amountoutstanding | $Price | html %])</a></li>[% END %]
149
                                [% IF ( borrower.amountoverzero ) %]<li><a href="#opac-user-fines">Fines ([% amountoutstanding | $Price %])</a></li>[% END %]
150
                                [% IF ( borrower.amountlessthanzero ) %]<li><a href="#opac-user-fines">Credits ([% amountoutstanding | $Price | html %])</a></li>[% END %]
150
                                [% IF ( borrower.amountlessthanzero ) %]<li><a href="#opac-user-fines">Credits ([% amountoutstanding | $Price %])</a></li>[% END %]
151
                            [% END %]
151
                            [% END %]
152
152
153
                            [% IF borrower_club_enrollments.count || borrower_enrollable_clubs.count %]
153
                            [% IF borrower_club_enrollments.count || borrower_enrollable_clubs.count %]
Lines 284-290 Link Here
284
                                                            <input type="checkbox" name="item" value="[% ISSUE.itemnumber | html %]"/> <a href="/cgi-bin/koha/opac-renew.pl?from=opac_user&amp;item=[% ISSUE.itemnumber | html %]&amp;borrowernumber=[% ISSUE.borrowernumber | html %]">Renew</a>
284
                                                            <input type="checkbox" name="item" value="[% ISSUE.itemnumber | html %]"/> <a href="/cgi-bin/koha/opac-renew.pl?from=opac_user&amp;item=[% ISSUE.itemnumber | html %]&amp;borrowernumber=[% ISSUE.borrowernumber | html %]">Renew</a>
285
                                                        [% END %]
285
                                                        [% END %]
286
                                                        [% IF ISSUE.renewalfee > 0 %]
286
                                                        [% IF ISSUE.renewalfee > 0 %]
287
                                                            <span class="renewalfee">Fee for item type '[% ItemTypes.GetDescription( ISSUE.renewalitemtype) | html %]': [% ISSUE.renewalfee | $Price | html %]</span>
287
                                                            <span class="renewalfee">Fee for item type '[% ItemTypes.GetDescription( ISSUE.renewalitemtype) | html %]': [% ISSUE.renewalfee | $Price %]</span>
288
                                                        [% END %]
288
                                                        [% END %]
289
                                                        <span class="renewals">([% ISSUE.renewsleft | html %] of [% ISSUE.renewsallowed | html %] renewals remaining)</span>
289
                                                        <span class="renewals">([% ISSUE.renewsleft | html %] of [% ISSUE.renewsallowed | html %] renewals remaining)</span>
290
                                                    [% ELSIF ( ISSUE.on_reserve ) %]
290
                                                    [% ELSIF ( ISSUE.on_reserve ) %]
Lines 374-380 Link Here
374
                                        <tbody>
374
                                        <tbody>
375
                                            <tr>
375
                                            <tr>
376
                                                <td>You currently owe fines and charges amounting to:</td>
376
                                                <td>You currently owe fines and charges amounting to:</td>
377
                                                <td><a href="/cgi-bin/koha/opac-account.pl">[% amountoutstanding | $Price | html %]</a></td>
377
                                                <td><a href="/cgi-bin/koha/opac-account.pl">[% amountoutstanding | $Price %]</a></td>
378
                                            </tr>
378
                                            </tr>
379
                                        </tbody>
379
                                        </tbody>
380
                                    </table>
380
                                    </table>
Lines 388-394 Link Here
388
                                        <tbody>
388
                                        <tbody>
389
                                            <tr>
389
                                            <tr>
390
                                                <td>You currently owe fines and charges amounting to:</td>
390
                                                <td>You currently owe fines and charges amounting to:</td>
391
                                                <td><a href="/cgi-bin/koha/opac-account.pl">[% amountoutstanding | $Price | html %]</a></td>
391
                                                <td><a href="/cgi-bin/koha/opac-account.pl">[% amountoutstanding | $Price %]</a></td>
392
                                            </tr>
392
                                            </tr>
393
                                        </tbody>
393
                                        </tbody>
394
                                    </table>
394
                                    </table>
Lines 401-407 Link Here
401
                                        <thead><tr><th colspan="2">Amount</th></tr></thead>
401
                                        <thead><tr><th colspan="2">Amount</th></tr></thead>
402
                                        <tbody>
402
                                        <tbody>
403
                                            <tr>
403
                                            <tr>
404
                                                <td>You have a credit of:</td><td><a href="/cgi-bin/koha/opac-account.pl">[% amountoutstanding | $Price | html %]</a></td>
404
                                                <td>You have a credit of:</td><td><a href="/cgi-bin/koha/opac-account.pl">[% amountoutstanding | $Price %]</a></td>
405
                                            </tr>
405
                                            </tr>
406
                                        </tbody>
406
                                        </tbody>
407
                                    </table>
407
                                    </table>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt (-2 / +1 lines)
Lines 56-62 Link Here
56
                                [% ELSIF ( circ_error_NOT_FOR_LOAN ) %]
56
                                [% ELSIF ( circ_error_NOT_FOR_LOAN ) %]
57
                                    This item is not for loan.
57
                                    This item is not for loan.
58
                                [% ELSIF ( circ_error_DEBT ) %]
58
                                [% ELSIF ( circ_error_DEBT ) %]
59
                                    You owe the library [% DEBT | $Price | html %] and cannot check out.
59
                                    You owe the library [% DEBT | $Price %] and cannot check out.
60
                                [% ELSIF ( circ_error_WTHDRAWN ) %]
60
                                [% ELSIF ( circ_error_WTHDRAWN ) %]
61
                                    This item has been withdrawn from the collection.
61
                                    This item has been withdrawn from the collection.
62
                                [% ELSIF ( circ_error_RESTRICTED ) %]
62
                                [% ELSIF ( circ_error_RESTRICTED ) %]
63
- 

Return to bug 21454