Lines 109-121
Link Here
|
109 |
<tr> |
109 |
<tr> |
110 |
<td>[% account.date | $KohaDates %]</td> |
110 |
<td>[% account.date | $KohaDates %]</td> |
111 |
<td> |
111 |
<td> |
112 |
[% INCLUDE 'accounttype.inc' accountline => account %] |
112 |
[% INCLUDE 'accounttype.inc' accountline => account %] |
113 |
[%- IF account.payment_type %], [% AuthorisedValues.GetByCode('PAYMENT_TYPE', account.payment_type) | html %][% END %] |
113 |
[%- IF account.payment_type %] |
114 |
[%- IF account.description %], [% account.description | html %][% END %] |
114 |
, [% AuthorisedValues.GetByCode('PAYMENT_TYPE', account.payment_type) | html %] |
115 |
[% IF ( account.itemnumber ) %]<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% account.item.biblionumber %]&itemnumber=[% account.itemnumber | html %]">[% account.item.biblio.title | html %]</a>[% END %]</td> |
115 |
[% END %] |
116 |
<td>[% account.note | html_line_break %]</td> |
116 |
[%- IF account.description %] |
117 |
[% IF ( account.amount < 0 ) %]<td class="credit" style="text-align: right;">[% ELSE %]<td class="debit" style="text-align: right;">[% END %][% account.amount | $Price | html %]</td> |
117 |
, [% account.description | html %] |
118 |
[% IF ( account.amountoutstanding < 0 ) %]<td class="credit" style="text-align: right;">[% ELSE %]<td class="debit" style="text-align: right;">[% END %][% account.amountoutstanding | $Price | html %]</td> |
118 |
[% END %] |
|
|
119 |
|
120 |
[% IF ( account.itemnumber AND account.accounttype != 'F' AND account.accounttype != 'FU' ) %] |
121 |
<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% account.item.biblionumber %]&itemnumber=[% account.itemnumber | html %]">[% account.item.biblio.title | html %]</a> |
122 |
[% END %] |
123 |
</td> |
124 |
<td> |
125 |
[% account.note | html_line_break %] |
126 |
</td> |
127 |
[% IF ( account.amount < 0 ) %] |
128 |
<td class="credit" style="text-align: right;"> |
129 |
[% ELSE %] |
130 |
<td class="debit" style="text-align: right;"> |
131 |
[% END %][% account.amount | $Price | html %] |
132 |
</td> |
133 |
[% IF ( account.amountoutstanding < 0 ) %] |
134 |
<td class="credit" style="text-align: right;"> |
135 |
[% ELSE %] |
136 |
<td class="debit" style="text-align: right;"> |
137 |
[% END %] |
138 |
[% account.amountoutstanding | $Price | html %] |
139 |
</td> |
119 |
</tr> |
140 |
</tr> |
120 |
[% END %] |
141 |
[% END %] |
121 |
|
142 |
|
122 |
- |
|
|