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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt (-10 / +9 lines)
Lines 112-123 Link Here
112
<div class="tabs-container">
112
<div class="tabs-container">
113
[% IF ( error_over ) %]
113
[% IF ( error_over ) %]
114
    <div id="error_message" class="dialog alert">
114
    <div id="error_message" class="dialog alert">
115
    You must pay a value less than or equal to [% total_due | format('%.2f') %].
115
    You must pay a value less than or equal to [% total_due | $Price %].
116
    </div>
116
    </div>
117
[% END %]
117
[% END %]
118
[% IF ( error_under ) %]
118
[% IF ( error_under ) %]
119
    <div id="error_message" class="dialog alert">
119
    <div id="error_message" class="dialog alert">
120
    You must collect a value greater than or equal to [% total_paid | format('%.2f') %].
120
    You must collect a value greater than or equal to [% total_paid | $Price %].
121
    </div>
121
    </div>
122
[% END %]
122
[% END %]
123
123
Lines 154-160 Link Here
154
            <th>Amount outstanding</th>
154
            <th>Amount outstanding</th>
155
        </tr></thead>
155
        </tr></thead>
156
    <tfoot>
156
    <tfoot>
157
        <tr><td colspan="3">Total amount payable:</td><td>[% amountoutstanding | format('%.2f') %]</td></tr>
157
        <tr><td colspan="3">Total amount payable:</td><td>[% amountoutstanding | $Price %]</td></tr>
158
    </tfoot>
158
    </tfoot>
159
    <tbody><tr>
159
    <tbody><tr>
160
            <td>
160
            <td>
Lines 162-169 Link Here
162
            </td>
162
            </td>
163
            [% line.debit_type_code = debit_type_code %]
163
            [% line.debit_type_code = debit_type_code %]
164
            <td>[% PROCESS account_type_description account=line %]</td>
164
            <td>[% PROCESS account_type_description account=line %]</td>
165
            <td class="debit">[% amount | format('%.2f') %]</td>
165
            <td class="debit">[% amount | $Price %]</td>
166
            <td class="debit">[% amountoutstanding | format('%.2f') %]</td>
166
            <td class="debit">[% amountoutstanding | $Price %]</td>
167
        </tr></tbody>
167
        </tr></tbody>
168
</table>
168
</table>
169
169
Lines 245-257 Link Here
245
            <th>Amount</th>
245
            <th>Amount</th>
246
            <th>Amount outstanding</th>
246
            <th>Amount outstanding</th>
247
        </tr></thead>
247
        </tr></thead>
248
    <tfoot><tr><td colspan="3">Total amount outstanding:</td><td>[% amountoutstanding | format('%.2f') %]</td></tr></tfoot>
248
    <tfoot><tr><td colspan="3">Total amount outstanding:</td><td>[% amountoutstanding | $Price %]</td></tr></tfoot>
249
    <tbody><tr>
249
    <tbody><tr>
250
            <td>[% individual_description | html %]</td>
250
            <td>[% individual_description | html %]</td>
251
            [% line.debit_type_code = debit_type_code %]
251
            [% line.debit_type_code = debit_type_code %]
252
            <td>[% PROCESS account_type_description account=line %]</td>
252
            <td>[% PROCESS account_type_description account=line %]</td>
253
            <td class="debit">[% amount | format('%.2f') %]</td>
253
            <td class="debit">[% amount | $Price %]</td>
254
            <td class="debit">[% amountoutstanding | format('%.2f') %]</td>
254
            <td class="debit">[% amountoutstanding | $Price %]</td>
255
        </tr></tbody>
255
        </tr></tbody>
256
    </table>
256
    </table>
257
257
Lines 307-313 Link Here
307
    <ol>
307
    <ol>
308
        <li>
308
        <li>
309
            <span class="label">Total amount outstanding: </span>
309
            <span class="label">Total amount outstanding: </span>
310
            <span class="debit">[% total | format('%.2f') %]</span>
310
            <span class="debit">[% total | $Price %]</span>
311
        </li>
311
        </li>
312
    <li>
312
    <li>
313
        [% IF type == 'WRITEOFF' %]
313
        [% IF type == 'WRITEOFF' %]
314
- 

Return to bug 20395