Lines 48-54
Link Here
|
48 |
<td>[% account.note %]</td> |
48 |
<td>[% account.note %]</td> |
49 |
[% IF ( account.amountcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% account.amount %]</td> |
49 |
[% IF ( account.amountcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% account.amount %]</td> |
50 |
[% IF ( account.amountoutstandingcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% account.amountoutstanding %]</td> |
50 |
[% IF ( account.amountoutstandingcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% account.amountoutstanding %]</td> |
51 |
[% IF ( account.reverse_col ) %] |
51 |
[% IF ( reverse_col ) %] |
52 |
<td> |
52 |
<td> |
53 |
[% IF ( account.payment ) %] |
53 |
[% IF ( account.payment ) %] |
54 |
<a href="boraccount.pl?action=reverse&borrowernumber=[% account.borrowernumber %]&accountno=[% account.accountno %]">Reverse</a> |
54 |
<a href="boraccount.pl?action=reverse&borrowernumber=[% account.borrowernumber %]&accountno=[% account.accountno %]">Reverse</a> |
Lines 70-76
Link Here
|
70 |
<tfoot> |
70 |
<tfoot> |
71 |
<tr> |
71 |
<tr> |
72 |
<td colspan="4">Total due</td> |
72 |
<td colspan="4">Total due</td> |
73 |
[% IF ( totalcredit ) %]<td colspan="2" class="credit">[% ELSE %]<td colspan="2" class="debit">[% END %][% total %]</td> |
73 |
[% IF ( totalcredit ) %] |
|
|
74 |
[% IF ( reverse_col ) %] |
75 |
<td colspan="3" class="credit"> |
76 |
[% ELSE %] |
77 |
<td colspan="2" class="credit"> |
78 |
[% END %] |
79 |
[% ELSE %] |
80 |
[% IF ( reverse_col ) %] |
81 |
<td colspan="3" class="debit"> |
82 |
[% ELSE %] |
83 |
<td colspan="2" class="credit"> |
84 |
[% END %] |
85 |
[% END %] |
86 |
[% total %]</td> |
74 |
</tr> |
87 |
</tr> |
75 |
</tfoot> |
88 |
</tfoot> |
76 |
</table> |
89 |
</table> |
77 |
- |
|
|