|
Lines 91-100
Link Here
|
| 91 |
[% FOREACH r IN relatives %] |
91 |
[% FOREACH r IN relatives %] |
| 92 |
<h3 id="g[% r.patron.id | html %]">[% r.patron.firstname | html %] [% r.patron.surname | html %]'s fines and charges</h3> |
92 |
<h3 id="g[% r.patron.id | html %]">[% r.patron.firstname | html %] [% r.patron.surname | html %]'s fines and charges</h3> |
| 93 |
|
93 |
|
| 94 |
<table class="table table-bordered table-striped finestable" id="finestable-[% r.id | html %]"> |
94 |
<table class="table table-bordered table-striped finestable" id="finestable-[% r.patron.id | html %]"> |
| 95 |
<thead> |
95 |
<thead> |
| 96 |
<tr> |
96 |
<tr> |
| 97 |
[% IF ENABLE_OPAC_PAYMENTS %]<th> </th>[% END %] |
|
|
| 98 |
<th>Created</th> |
97 |
<th>Created</th> |
| 99 |
<th>Updated</th> |
98 |
<th>Updated</th> |
| 100 |
<th>Description</th> |
99 |
<th>Description</th> |
|
Lines 109-123
Link Here
|
| 109 |
[% FOREACH a IN r.accountlines %] |
108 |
[% FOREACH a IN r.accountlines %] |
| 110 |
[% SET account_sum = account_sum + a.amountoutstanding %] |
109 |
[% SET account_sum = account_sum + a.amountoutstanding %] |
| 111 |
<tr> |
110 |
<tr> |
| 112 |
[% IF ENABLE_OPAC_PAYMENTS %] |
|
|
| 113 |
<td> |
| 114 |
[% IF a.amountoutstanding > 0 %] |
| 115 |
[% SET DISPLAY_PAYMENT_BLOCK = 1 %] |
| 116 |
<input class="checkbox-pay pay-online hidden" name="accountline" type="checkbox" id="checkbox-pay-[% a.accountlines_id | html %]" value="[% a.accountlines_id | html %]"> |
| 117 |
<input type="hidden" id="amount-[% a.accountlines_id | html %]" value="[% a.amountoutstanding | html %]" /> |
| 118 |
[% END %] |
| 119 |
</td> |
| 120 |
[% END %] |
| 121 |
<td data-order="[% a.date | html %]">[% a.date | $KohaDates %]</td> |
111 |
<td data-order="[% a.date | html %]">[% a.date | $KohaDates %]</td> |
| 122 |
<td data-order="[% a.timestamp | html %]">[% a.timestamp | $KohaDates with_hours = 1 %]</td> |
112 |
<td data-order="[% a.timestamp | html %]">[% a.timestamp | $KohaDates with_hours = 1 %]</td> |
| 123 |
<td> |
113 |
<td> |
| 124 |
- |
|
|