|
Lines 16-22
Link Here
|
| 16 |
|
16 |
|
| 17 |
<tbody> |
17 |
<tbody> |
| 18 |
[% FOREACH ACCOUNT_LINE IN ACCOUNT_LINES %] |
18 |
[% FOREACH ACCOUNT_LINE IN ACCOUNT_LINES %] |
| 19 |
<tr [% IF ACCOUNT_LINE.amountoutstanding > 0 || ACCOUNT_LINE.amountoutstanding < 0 %]class="outstanding"[% END%]> |
19 |
[% IF ACCOUNT_LINE.amountoutstanding > 0 || ACCOUNT_LINE.amountoutstanding < 0 %]<tr class="outstanding">[% ELSE %]<tr>[% END%] |
| 20 |
[% IF ENABLE_OPAC_PAYMENTS %] |
20 |
[% IF ENABLE_OPAC_PAYMENTS %] |
| 21 |
<td> |
21 |
<td> |
| 22 |
[% IF ACCOUNT_LINE.amountoutstanding > 0 %] |
22 |
[% IF ACCOUNT_LINE.amountoutstanding > 0 %] |
|
Lines 54-60
Link Here
|
| 54 |
</tr> |
54 |
</tr> |
| 55 |
[% IF outstanding_credits.total_outstanding < 0 %] |
55 |
[% IF outstanding_credits.total_outstanding < 0 %] |
| 56 |
[% FOREACH outstanding_credit IN outstanding_credits %] |
56 |
[% FOREACH outstanding_credit IN outstanding_credits %] |
| 57 |
<tr [% IF outstanding_credit.amountoutstanding < 0 %]class="outstanding"[% END%]> |
57 |
[% IF outstanding_credit.amountoutstanding < 0 %]<tr class="outstanding">[% ELSE %]<tr>[% END%] |
| 58 |
[% IF ENABLE_OPAC_PAYMENTS %]<td></td>[% END %] |
58 |
[% IF ENABLE_OPAC_PAYMENTS %]<td></td>[% END %] |
| 59 |
<td><span title="[% outstanding_credit.date | html %]">[% outstanding_credit.date | $KohaDates %]</span></td> |
59 |
<td><span title="[% outstanding_credit.date | html %]">[% outstanding_credit.date | $KohaDates %]</span></td> |
| 60 |
<td> |
60 |
<td> |
| 61 |
- |
|
|