Lines 168-174
Link Here
|
168 |
<th>Transaction type</th> |
168 |
<th>Transaction type</th> |
169 |
<th>Notes</th> |
169 |
<th>Notes</th> |
170 |
<th>Amount</th> |
170 |
<th>Amount</th> |
171 |
<th>Bibliographic record title</th> |
171 |
<th class="anti-the">Bibliographic record title</th> |
172 |
<th>Barcode</th> |
172 |
<th>Barcode</th> |
173 |
<th>Item type</th> |
173 |
<th>Item type</th> |
174 |
</tr> |
174 |
</tr> |
Lines 179-186
Link Here
|
179 |
<td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% loopresul.borrowernumber | uri %]">[% loopresul.cardnumber | html %]</a></td> |
179 |
<td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% loopresul.borrowernumber | uri %]">[% loopresul.cardnumber | html %]</a></td> |
180 |
<td>[% loopresul.bfirstname | html %] [% loopresul.bsurname | html %]</td> |
180 |
<td>[% loopresul.bfirstname | html %] [% loopresul.bsurname | html %]</td> |
181 |
<td>[% loopresul.branchname | html %]</td> |
181 |
<td>[% loopresul.branchname | html %]</td> |
182 |
<td>[% loopresul.date | $KohaDates %]</td> |
182 |
<td data-order="[% loopresul.date | html %]">[% loopresul.date | $KohaDates %]</td> |
183 |
<td>[% loopresul.timestamp | $KohaDates with_hours = 1 %]</td> |
183 |
<td data-order="[% loopresul.timestamp | html %]">[% loopresul.timestamp | $KohaDates with_hours = 1 %]</td> |
184 |
<td>[% loopresul.type_description | html %]</td> |
184 |
<td>[% loopresul.type_description | html %]</td> |
185 |
<td>[% loopresul.note | html %]</td> |
185 |
<td>[% loopresul.note | html %]</td> |
186 |
<td style="text-align:right;">[% loopresul.amount | $Price %]</td> |
186 |
<td style="text-align:right;">[% loopresul.amount | $Price %]</td> |
Lines 221-227
Link Here
|
221 |
$(document).ready(function() { |
221 |
$(document).ready(function() { |
222 |
$("#tbl_cash_register_stats").dataTable($.extend(true, {}, dataTablesDefaults, { |
222 |
$("#tbl_cash_register_stats").dataTable($.extend(true, {}, dataTablesDefaults, { |
223 |
"pageLength": 50, |
223 |
"pageLength": 50, |
224 |
"pagingType": "full_numbers" |
224 |
"pagingType": "full_numbers", |
|
|
225 |
"columnDefs": [ |
226 |
{ "type": "anti-the", "targets": [ "anti-the" ] } |
227 |
] |
225 |
})); |
228 |
})); |
226 |
|
229 |
|
227 |
$("#branch").on("change", function() { |
230 |
$("#branch").on("change", function() { |
228 |
- |
|
|