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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt (+2 lines)
Lines 42-47 Link Here
42
    <th>&nbsp;</th>
42
    <th>&nbsp;</th>
43
    <th>Fines &amp; charges</th>
43
    <th>Fines &amp; charges</th>
44
    <th>Description</th>
44
    <th>Description</th>
45
    <th>Barcode</th>
45
    <th>Payment note</th>
46
    <th>Payment note</th>
46
    <th>Account type</th>
47
    <th>Account type</th>
47
    <th>Amount</th>
48
    <th>Amount</th>
Lines 102-107 Link Here
102
        [%- IF line.description %], [% line.description %][% END %]
103
        [%- IF line.description %], [% line.description %][% END %]
103
        [% IF line.title %]([% line.title %])[% END %]
104
        [% IF line.title %]([% line.title %])[% END %]
104
    </td>
105
    </td>
106
    <td>[% line.barcode %]</td>
105
    <td><input type="text" name="payment_note_[% line.accountlines_id %]" /></td>
107
    <td><input type="text" name="payment_note_[% line.accountlines_id %]" /></td>
106
    <td>[% line.accounttype %]</td>
108
    <td>[% line.accounttype %]</td>
107
    <td class="debit" style="text-align: right;">[% line.amount | $Price %]</td>
109
    <td class="debit" style="text-align: right;">[% line.amount | $Price %]</td>
(-)a/members/pay.pl (-1 / +1 lines)
Lines 135-140 sub add_accounts_to_template { Link Here
135
            my $biblio = $item->biblio;
135
            my $biblio = $item->biblio;
136
            $account_line->{biblionumber} = $biblio->biblionumber;
136
            $account_line->{biblionumber} = $biblio->biblionumber;
137
            $account_line->{title}        = $biblio->title;
137
            $account_line->{title}        = $biblio->title;
138
            $account_line->{barcode}      = $item ? $item->barcode : q{};
138
        }
139
        }
139
        push @accounts, $account_line;
140
        push @accounts, $account_line;
140
    }
141
    }
141
- 

Return to bug 18889