Lines 19-28
Link Here
|
19 |
[% END %] |
19 |
[% END %] |
20 |
$(document).ready(function() { |
20 |
$(document).ready(function() { |
21 |
var srlt = $("#files").dataTable($.extend(true, {}, dataTablesDefaults, { |
21 |
var srlt = $("#files").dataTable($.extend(true, {}, dataTablesDefaults, { |
|
|
22 |
"aoColumns": [ |
23 |
null,null,null,{ "sType": "title-string" },null,null |
24 |
], |
22 |
"aoColumnDefs": [ |
25 |
"aoColumnDefs": [ |
23 |
{ "aTargets": [ 5 ], "bSortable": false, "bSearchable": false }, |
26 |
{ "aTargets": [ 5 ], "bSortable": false, "bSearchable": false }, |
24 |
], |
27 |
], |
25 |
"sPaginationType": "four_button" |
28 |
"sPaginationType": "four_button", |
|
|
29 |
"aaSorting": [] |
26 |
} ) ); |
30 |
} ) ); |
27 |
|
31 |
|
28 |
$("form#Aform").submit(function() { |
32 |
$("form#Aform").submit(function() { |
Lines 109-115
Link Here
|
109 |
<td>[% batch_lis.file_name %]</td> |
113 |
<td>[% batch_lis.file_name %]</td> |
110 |
<td>[% batch_lis.comments %]</td> |
114 |
<td>[% batch_lis.comments %]</td> |
111 |
<td>[% batch_lis.import_status %]</td> |
115 |
<td>[% batch_lis.import_status %]</td> |
112 |
<td>[% batch_lis.staged_date | $KohaDates %] [% batch_lis.staged_hour %]</td> |
116 |
<td><span title="[% batch_lis.staged_date %]">[% batch_lis.staged_date | $KohaDates %]</span></td> |
113 |
<td>[% batch_lis.num_biblios %]</td> |
117 |
<td>[% batch_lis.num_biblios %]</td> |
114 |
<td><a href="[% batch_lis.scriptname %]?import_batch_id=[% batch_lis.import_batch_id %]&basketno=[% basketno %]&booksellerid=[% booksellerid %]">Add orders</a></td> |
118 |
<td><a href="[% batch_lis.scriptname %]?import_batch_id=[% batch_lis.import_batch_id %]&basketno=[% basketno %]&booksellerid=[% booksellerid %]">Add orders</a></td> |
115 |
</tr> |
119 |
</tr> |
116 |
- |
|
|