Lines 50-55
Link Here
|
50 |
<th>Barcode</th> |
50 |
<th>Barcode</th> |
51 |
<th>Due date</th> |
51 |
<th>Due date</th> |
52 |
<th>Return date</th> |
52 |
<th>Return date</th> |
|
|
53 |
<th>Issue date</th> |
53 |
<th>Home library</th> |
54 |
<th>Home library</th> |
54 |
<th>Note</th> |
55 |
<th>Note</th> |
55 |
<th>Amount</th> |
56 |
<th>Amount</th> |
Lines 71-76
Link Here
|
71 |
<td>[% IF ( account.itemnumber ) %]<a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% account.itemnumber | uri %]&biblionumber=[% account.item.biblionumber | uri %]#item[% account.itemnumber | uri %]">[% account.item.barcode | html %]</a>[% END %]</td> |
72 |
<td>[% IF ( account.itemnumber ) %]<a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% account.itemnumber | uri %]&biblionumber=[% account.item.biblionumber | uri %]#item[% account.itemnumber | uri %]">[% account.item.barcode | html %]</a>[% END %]</td> |
72 |
<td>[% IF ( account.issue_id ) %][% account.checkout.date_due | $KohaDates as_due_date => 1 %][% END %]</td> |
73 |
<td>[% IF ( account.issue_id ) %][% account.checkout.date_due | $KohaDates as_due_date => 1 %][% END %]</td> |
73 |
<td>[% IF ( account.issue_id ) %][% account.checkout.returndate | $KohaDates with_hours => 1 %][% END %]</td> |
74 |
<td>[% IF ( account.issue_id ) %][% account.checkout.returndate | $KohaDates with_hours => 1 %][% END %]</td> |
|
|
75 |
<td>[% IF ( account.issue_id ) %][% account.checkout.issuedate | $KohaDates %][% END %]</td> |
74 |
<td>[% IF account.itemnumber %][% Branches.GetName( account.item.homebranch ) | html %][% END %]</td> |
76 |
<td>[% IF account.itemnumber %][% Branches.GetName( account.item.homebranch ) | html %][% END %]</td> |
75 |
<td>[% account.note | html_line_break %]</td> |
77 |
<td>[% account.note | html_line_break %]</td> |
76 |
[% IF account.amount <= 0 %]<td class="credit" style="text-align: right;">[% ELSE %]<td class="debit" style="text-align: right;">[% END %][% account.amount | $Price %]</td> |
78 |
[% IF account.amount <= 0 %]<td class="credit" style="text-align: right;">[% ELSE %]<td class="debit" style="text-align: right;">[% END %][% account.amount | $Price %]</td> |
Lines 103-109
Link Here
|
103 |
[% END %] |
105 |
[% END %] |
104 |
<tfoot> |
106 |
<tfoot> |
105 |
<tr> |
107 |
<tr> |
106 |
<td colspan="9">Total due</td> |
108 |
<td colspan="10">Total due</td> |
107 |
[% IF ( totalcredit ) %] |
109 |
[% IF ( totalcredit ) %] |
108 |
<td class="credit" style="text-align: right;">[% total | $Price %]</td> |
110 |
<td class="credit" style="text-align: right;">[% total | $Price %]</td> |
109 |
[% ELSE %] |
111 |
[% ELSE %] |
Lines 331-337
Link Here
|
331 |
var filteredValue = '^((?!0.00).*)$'; //Filter not matching 0.00 http://stackoverflow.com/a/406408 |
333 |
var filteredValue = '^((?!0.00).*)$'; //Filter not matching 0.00 http://stackoverflow.com/a/406408 |
332 |
$(this).html('<i class="fa fa-filter"></i> '+txtInactivefilter); |
334 |
$(this).html('<i class="fa fa-filter"></i> '+txtInactivefilter); |
333 |
} |
335 |
} |
334 |
table_account_fines.fnFilter(filteredValue, 9, true, false); |
336 |
table_account_fines.fnFilter(filteredValue, 10, true, false); |
335 |
$(this).toggleClass('filtered'); |
337 |
$(this).toggleClass('filtered'); |
336 |
}); |
338 |
}); |
337 |
|
339 |
|