Lines 307-325
Link Here
|
307 |
<thead> |
307 |
<thead> |
308 |
<tr> |
308 |
<tr> |
309 |
[% UNLESS uploadedbarcodesflag %] |
309 |
[% UNLESS uploadedbarcodesflag %] |
310 |
<th>Seen</th> |
310 |
<th id="seen" data-colname="seen">Seen</th> |
311 |
[% END %] |
311 |
[% END %] |
312 |
<th>Barcode</th> |
312 |
<th id="barcode" data-colname="barcode">Barcode</th> |
313 |
<th>Call number</th> |
313 |
<th id="call_number" data-colname="call_number">Call number</th> |
314 |
<th>Library</th> |
314 |
<th id="library" data-colname="library">Library</th> |
315 |
<th>Collection</th> |
315 |
<th id="collection" data-colname="collection">Collection</th> |
316 |
<th class="anti-the">Title</th> |
316 |
<th id="title" data-colname="title" class="anti-the">Title</th> |
317 |
<th>Not for loan</th> |
317 |
<th id="notforloan" data-colname="notforloan">Not for loan</th> |
318 |
<th>Lost</th> |
318 |
<th id="lost" data-colname="lost">Lost</th> |
319 |
<th>Damaged</th> |
319 |
<th id="damaged" data-colname="damaged">Damaged</th> |
320 |
<th>Withdrawn</th> |
320 |
<th id="withdrawn" data-colname="withdrawn">Withdrawn</th> |
321 |
<th>Last seen</th> |
321 |
<th id="last_seen" data-colname="last_seen">Last seen</th> |
322 |
<th>Problems</th> |
322 |
<th id="problems" data-colname="problems">Problems</th> |
323 |
</tr> |
323 |
</tr> |
324 |
</thead> |
324 |
</thead> |
325 |
<tbody> |
325 |
<tbody> |
Lines 462-470
Link Here
|
462 |
var table_settings = [% TablesSettings.GetTableSettings( 'tools', 'inventory', 'inventoryt', 'json' ) | $raw %]; |
462 |
var table_settings = [% TablesSettings.GetTableSettings( 'tools', 'inventory', 'inventoryt', 'json' ) | $raw %]; |
463 |
inventorydt = $("#inventoryt").kohaTable({ |
463 |
inventorydt = $("#inventoryt").kohaTable({ |
464 |
"pagingType": 'full_numbers', |
464 |
"pagingType": 'full_numbers', |
465 |
[% IF compareinv2barcd %] |
465 |
"bKohaColumnsUseNames": true, |
|
|
466 |
[% IF uploadedbarcodesflag %] |
466 |
// sort on callnumber |
467 |
// sort on callnumber |
467 |
"order": [[ 1, "asc" ]], |
468 |
"order": [[ 2, "asc" ]], |
468 |
[% ELSE %] |
469 |
[% ELSE %] |
469 |
// first column contains checkboxes |
470 |
// first column contains checkboxes |
470 |
"columnDefs": [ |
471 |
"columnDefs": [ |
471 |
- |
|
|