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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt (-6 / +5 lines)
Lines 47-59 Link Here
47
    <th class="NoSort">&nbsp;</th>
47
    <th class="NoSort">&nbsp;</th>
48
    <th class="NoSort">Actions</th>
48
    <th class="NoSort">Actions</th>
49
    <th>Account type</th>
49
    <th>Account type</th>
50
    <th class="checked-out-from">Checked out from</th>
51
    <th>Description</th>
50
    <th>Description</th>
52
    <th class="title-string">Date</th>
51
    <th class="title-string">Date</th>
53
    <th>Barcode</th>
52
    <th>Barcode</th>
54
    <th>Due date</th>
53
    <th>Due date</th>
55
    <th>Checkin date</th>
54
    <th>Checkin date</th>
56
    <th>Checkout date</th>
55
    <th>Checkout date</th>
56
    <th class="checked-out-from">Checked out from</th>
57
    <th class="NoSort">Payment note</th>
57
    <th class="NoSort">Payment note</th>
58
    <th>Amount</th>
58
    <th>Amount</th>
59
    <th>Amount outstanding</th>
59
    <th>Amount outstanding</th>
Lines 86-94 Link Here
86
    <td>
86
    <td>
87
        [% PROCESS account_type_description account=line %]
87
        [% PROCESS account_type_description account=line %]
88
    </td>
88
    </td>
89
    <td class="checked-out-from">
90
        [% line.checkout.library.branchname | html %]
91
    </td>
92
    <td>
89
    <td>
93
        [%- IF line.description %][% line.description | html %][% END %]
90
        [%- IF line.description %][% line.description | html %][% END %]
94
        [% IF line.itemnumber %]([% line.item.biblio.title | html %])[% END %]
91
        [% IF line.itemnumber %]([% line.item.biblio.title | html %])[% END %]
Lines 116-121 Link Here
116
            [% line.checkout.issuedate | $KohaDates %]
113
            [% line.checkout.issuedate | $KohaDates %]
117
        [% END %]
114
        [% END %]
118
    </td>
115
    </td>
116
    <td class="checked-out-from">
117
        [% line.checkout.library.branchname | html %]
118
    </td>
119
    <td class="actions">
119
    <td class="actions">
120
        <a href="#" class="add-note" data-accountlines_id="[% line.accountlines_id | html %]"><i class="fa fa-plus"></i> Add note</a>
120
        <a href="#" class="add-note" data-accountlines_id="[% line.accountlines_id | html %]"><i class="fa fa-plus"></i> Add note</a>
121
        <span class="payment_note" id="payment_note_[% line.accountlines_id | html %]" style="display:none"><input type="text" size="10" name="payment_note_[% line.accountlines_id | html %]" value="" /> <a href="#" class="cancel-note"><i class="fa fa-remove"></i></a></span>
121
        <span class="payment_note" id="payment_note_[% line.accountlines_id | html %]" style="display:none"><input type="text" size="10" name="payment_note_[% line.accountlines_id | html %]" value="" /> <a href="#" class="cancel-note"><i class="fa fa-remove"></i></a></span>
Lines 128-134 Link Here
128
128
129
<tfoot>
129
<tfoot>
130
    <tr>
130
    <tr>
131
        <td class="total" colspan="11">Total due:</td>
131
        <td class="total" colspan="12">Total due:</td>
132
        <td style="text-align: right;">[% total | $Price %]</td>
132
        <td style="text-align: right;">[% total | $Price %]</td>
133
    </tr>
133
    </tr>
134
    [% IF outstanding_credits.total_outstanding < 0 %]
134
    [% IF outstanding_credits.total_outstanding < 0 %]
135
- 

Return to bug 15985