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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt (-5 / +7 lines)
Lines 5-10 Link Here
5
[% USE Price %]
5
[% USE Price %]
6
[% SET footerjs = 1 %]
6
[% SET footerjs = 1 %]
7
[% PROCESS 'payments.inc' %]
7
[% PROCESS 'payments.inc' %]
8
[% PROCESS 'accounts.inc' %]
8
[% INCLUDE 'doc-head-open.inc' %]
9
[% INCLUDE 'doc-head-open.inc' %]
9
<title>Koha &rsaquo; Patrons &rsaquo;
10
<title>Koha &rsaquo; Patrons &rsaquo;
10
    [% IF type == 'WRITEOFF' %]
11
    [% IF type == 'WRITEOFF' %]
Lines 83-89 Link Here
83
    <input type="hidden" name="borrowernumber" id="borrowernumber" value="[% patron.borrowernumber | html %]" />
84
    <input type="hidden" name="borrowernumber" id="borrowernumber" value="[% patron.borrowernumber | html %]" />
84
    <input type="hidden" name="pay_individual" id="pay_individual" value="[% pay_individual | html %]" />
85
    <input type="hidden" name="pay_individual" id="pay_individual" value="[% pay_individual | html %]" />
85
    <input type="hidden" name="itemnumber" id="itemnumber" value="[% itemnumber | html %]" />
86
    <input type="hidden" name="itemnumber" id="itemnumber" value="[% itemnumber | html %]" />
86
    <input type="hidden" name="description" id="description" value="[% description | html %]" />
87
    <input type="hidden" name="description" id="description" value="[% individual_description | html %]" />
87
    <input type="hidden" name="debit_type_code" id="debit_type_code" value="[% debit_type_code | html %]" />
88
    <input type="hidden" name="debit_type_code" id="debit_type_code" value="[% debit_type_code | html %]" />
88
    <input type="hidden" name="amount" id="amount" value="[% amount | html %]" />
89
    <input type="hidden" name="amount" id="amount" value="[% amount | html %]" />
89
    <input type="hidden" name="amountoutstanding" id="amountoutstanding" value="[% amountoutstanding | html %]" />
90
    <input type="hidden" name="amountoutstanding" id="amountoutstanding" value="[% amountoutstanding | html %]" />
Lines 108-114 Link Here
108
            <td>
109
            <td>
109
                [% individual_description | html %]
110
                [% individual_description | html %]
110
            </td>
111
            </td>
111
            <td>[% debit_type_code | html %]</td>
112
            [% line.debit_type_code = debit_type_code %]
113
            <td>[% PROCESS account_type_description account=line %]</td>
112
            <td class="debit">[% amount | format('%.2f') %]</td>
114
            <td class="debit">[% amount | format('%.2f') %]</td>
113
            <td class="debit">[% amountoutstanding | format('%.2f') %]</td>
115
            <td class="debit">[% amountoutstanding | format('%.2f') %]</td>
114
        </tr></tbody>
116
        </tr></tbody>
Lines 162-168 Link Here
162
    <input type="hidden" name="borrowernumber" id="borrowernumber" value="[% patron.borrowernumber | html %]" />
164
    <input type="hidden" name="borrowernumber" id="borrowernumber" value="[% patron.borrowernumber | html %]" />
163
    <input type="hidden" name="pay_individual" id="pay_individual" value="[% pay_individual | html %]" />
165
    <input type="hidden" name="pay_individual" id="pay_individual" value="[% pay_individual | html %]" />
164
    <input type="hidden" name="itemnumber" id="itemnumber" value="[% itemnumber | html %]" />
166
    <input type="hidden" name="itemnumber" id="itemnumber" value="[% itemnumber | html %]" />
165
    <input type="hidden" name="description" id="description" value="[% description | html %]" />
167
    <input type="hidden" name="description" id="description" value="[% individual_description | html %]" />
166
    <input type="hidden" name="debit_type_code" id="debit_type_code" value="[% debit_type_code | html %]" />
168
    <input type="hidden" name="debit_type_code" id="debit_type_code" value="[% debit_type_code | html %]" />
167
    <input type="hidden" name="amount" id="amount" value="[% amount | html %]" />
169
    <input type="hidden" name="amount" id="amount" value="[% amount | html %]" />
168
    <input type="hidden" name="accountlines_id" id="accountlines_id" value="[% accountlines_id | html %]" />
170
    <input type="hidden" name="accountlines_id" id="accountlines_id" value="[% accountlines_id | html %]" />
Lines 181-187 Link Here
181
    <tfoot><tr><td colspan="3">Total amount outstanding:</td><td>[% amountoutstanding | format('%.2f') %]</td></tr></tfoot>
183
    <tfoot><tr><td colspan="3">Total amount outstanding:</td><td>[% amountoutstanding | format('%.2f') %]</td></tr></tfoot>
182
    <tbody><tr>
184
    <tbody><tr>
183
            <td>[% individual_description | html %]</td>
185
            <td>[% individual_description | html %]</td>
184
            <td>[% debit_type_code | html %]</td>
186
            [% line.debit_type_code = debit_type_code %]
187
            <td>[% PROCESS account_type_description account=line %]</td>
185
            <td class="debit">[% amount | format('%.2f') %]</td>
188
            <td class="debit">[% amount | format('%.2f') %]</td>
186
            <td class="debit">[% amountoutstanding | format('%.2f') %]</td>
189
            <td class="debit">[% amountoutstanding | format('%.2f') %]</td>
187
        </tr></tbody>
190
        </tr></tbody>
188
- 

Return to bug 25119