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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt (-1 lines)
Lines 1-7 Link Here
1
[% USE Koha %]
1
[% USE Koha %]
2
[% USE KohaDates %]
2
[% USE KohaDates %]
3
[% USE Price %]
3
[% USE Price %]
4
[% USE currency = format('%.2f') -%]
5
[% SET footerjs = 1 %]
4
[% SET footerjs = 1 %]
6
[% INCLUDE 'doc-head-open.inc' %]
5
[% INCLUDE 'doc-head-open.inc' %]
7
<title>Koha &rsaquo; Acquisitions &rsaquo; [% IF ( date ) %]
6
<title>Koha &rsaquo; Acquisitions &rsaquo; [% IF ( date ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt (-1 / +2 lines)
Lines 1-4 Link Here
1
[% USE Branches %]
1
[% USE Branches %]
2
[% USE Price %]
2
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
3
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
4
<title>Koha &rsaquo; Administration &rsaquo; Circulation and fine rules</title>
5
<title>Koha &rsaquo; Administration &rsaquo; Circulation and fine rules</title>
Lines 149-155 Link Here
149
							<td>[% rule.chargeperiod %]</td>
150
							<td>[% rule.chargeperiod %]</td>
150
                <td>[% IF rule.chargeperiod_charge_at %]Start of interval[% ELSE %]End of interval[% END %]</td>
151
                <td>[% IF rule.chargeperiod_charge_at %]Start of interval[% ELSE %]End of interval[% END %]</td>
151
							<td>[% rule.firstremind %]</td>
152
							<td>[% rule.firstremind %]</td>
152
                            <td>[% rule.overduefinescap FILTER format("%.2f") %]</td>
153
                            <td>[% rule.overduefinescap | $Price %]</td>
153
                            <td>
154
                            <td>
154
                                [% IF rule.cap_fine_to_replacement_price %]
155
                                [% IF rule.cap_fine_to_replacement_price %]
155
                                    <input type="checkbox" checked="checked" disabled="disabled" />
156
                                    <input type="checkbox" checked="checked" disabled="disabled" />
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-2 / +2 lines)
Lines 3-8 Link Here
3
[% USE Branches %]
3
[% USE Branches %]
4
[% USE Categories %]
4
[% USE Categories %]
5
[% USE ItemTypes %]
5
[% USE ItemTypes %]
6
[% USE Price %]
6
[% INCLUDE 'doc-head-open.inc' %]
7
[% INCLUDE 'doc-head-open.inc' %]
7
[% UNLESS ( multi_hold ) %]
8
[% UNLESS ( multi_hold ) %]
8
    <title>Koha &rsaquo; Circulation &rsaquo; Holds &rsaquo; Place a hold on [% title |html %]</title>
9
    <title>Koha &rsaquo; Circulation &rsaquo; Holds &rsaquo; Place a hold on [% title |html %]</title>
Lines 340-346 function checkMultiHold() { Link Here
340
    [% END %]
341
    [% END %]
341
342
342
    [% IF amount_outstanding && Koha.Preference('maxoutstanding') && amount_outstanding > Koha.Preference('maxoutstanding') %]
343
    [% IF amount_outstanding && Koha.Preference('maxoutstanding') && amount_outstanding > Koha.Preference('maxoutstanding') %]
343
    <li><a href="/cgi-bin/koha/members/pay.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %]</a>: <strong>Patron has outstanding fines: [% amount_outstanding | format('%.2f') %]</strong></li>
344
    <li><a href="/cgi-bin/koha/members/pay.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %]</a>: <strong>Patron has outstanding fines: [% amount_outstanding | $Price %]</strong></li>
344
    [% END %]
345
    [% END %]
345
346
346
    [% IF ( diffbranch ) %]
347
    [% IF ( diffbranch ) %]
347
- 

Return to bug 20395