@@ -, +, @@ "biblio count" columns can be incorrect --- .../prog/en/modules/acqui/booksellers.tt | 35 +++++++++++----------- 1 file changed, 18 insertions(+), 17 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt @@ -18,10 +18,9 @@ $(document).ready(function() { 'bFilter': false, 'bInfo': false, "aaSorting": [[ 1, "asc" ]], - "aoColumns": [ - null,null,null,null,null,null,{ "sType": "title-string" },null,{ "sType": "title-string" },null - ], - 'aoColumnDefs': [ + "aoColumnDefs": [ + { "sType": "title-string", "aTargets" : [ "title-string" ] }, + { "sType": "title-numeric", "aTargets" : [ "title-numeric" ] }, { 'aTargets': [-1], 'bSortable': false } ] })); @@ -97,13 +96,13 @@ $(document).ready(function() { No. Name - Item count - Biblio count + Item count + Biblio count Items expected Created by - Date + Date Basket group - Closed + Closed   @@ -117,16 +116,18 @@ $(document).ready(function() { [% basket.basketno %] [% basket.basketname %] - [% basket.total_items %] - [% IF basket.total_items_cancelled %] - ([% basket.total_items_cancelled %] cancelled) - [% END %] + [% basket.total_items %] + [% IF basket.total_items_cancelled %] + ([% basket.total_items_cancelled %] cancelled) + [% END %] + - [% basket.total_biblios %] - [% IF basket.total_biblios_cancelled %] - ([% basket.total_biblios_cancelled %] cancelled) - [% END %] + [% basket.total_biblios %] + [% IF basket.total_biblios_cancelled %] + ([% basket.total_biblios_cancelled %] cancelled) + [% END %] + [% basket.expected_items %] @@ -140,7 +141,7 @@ $(document).ready(function() { [% IF basketgroup.closed %] [% basketgroup.name %] (closed) [% ELSE %] - [% basketgroup.name %] + [% basketgroup.name %] [% END %] [% END %] --