Lines 76-81
function enableCheckboxActions(){
Link Here
|
76 |
<tr> |
76 |
<tr> |
77 |
<th> </th> |
77 |
<th> </th> |
78 |
<th>Fines & charges</th> |
78 |
<th>Fines & charges</th> |
|
|
79 |
<th class="checked-out-from">Checked out from</th> |
79 |
<th>Description</th> |
80 |
<th>Description</th> |
80 |
<th>Payment note</th> |
81 |
<th>Payment note</th> |
81 |
<th>Account type</th> |
82 |
<th>Account type</th> |
Lines 85-91
function enableCheckboxActions(){
Link Here
|
85 |
</thead> |
86 |
</thead> |
86 |
<tfoot> |
87 |
<tfoot> |
87 |
<tr> |
88 |
<tr> |
88 |
<td class="total" colspan="6">Total due:</td> |
89 |
<td class="total" colspan="7">Total due:</td> |
89 |
<td style="text-align: right;">[% total | $Price %]</td> |
90 |
<td style="text-align: right;">[% total | $Price %]</td> |
90 |
</tr> |
91 |
</tr> |
91 |
</tfoot> |
92 |
</tfoot> |
Lines 110-115
function enableCheckboxActions(){
Link Here
|
110 |
<input type="hidden" name="amountoutstanding[% line.accountlines_id %]" value="[% line.amountoutstanding %]" /> |
111 |
<input type="hidden" name="amountoutstanding[% line.accountlines_id %]" value="[% line.amountoutstanding %]" /> |
111 |
<input type="hidden" name="borrowernumber[% line.accountlines_id %]" value="[% line.borrowernumber %]" /> |
112 |
<input type="hidden" name="borrowernumber[% line.accountlines_id %]" value="[% line.borrowernumber %]" /> |
112 |
</td> |
113 |
</td> |
|
|
114 |
<td class="checked-out-from"> |
115 |
[% line.checkout.library.branchname %] |
116 |
</td> |
113 |
<td> |
117 |
<td> |
114 |
[% SWITCH line.accounttype %] |
118 |
[% SWITCH line.accounttype %] |
115 |
[% CASE 'Pay' %]Payment, thanks |
119 |
[% CASE 'Pay' %]Payment, thanks |
Lines 145-152
function enableCheckboxActions(){
Link Here
|
145 |
[% END %] |
149 |
[% END %] |
146 |
[% IF ( account_grp.total ) %] |
150 |
[% IF ( account_grp.total ) %] |
147 |
<tr> |
151 |
<tr> |
148 |
|
152 |
<td class="total" colspan="9" style="text-align: right;">Sub total:</td> |
149 |
<td class="total" colspan="8" style="text-align: right;">Sub total:</td> |
|
|
150 |
<td style="text-align: right;">[% account_grp.total | $Price %]</td> |
153 |
<td style="text-align: right;">[% account_grp.total | $Price %]</td> |
151 |
</tr> |
154 |
</tr> |
152 |
[% END %] |
155 |
[% END %] |