@@ -, +, @@ acquisitions home page - In the DataTables config: { "sType": "title-numeric" }, - In the table data [% formatted currency %] one inactive one. on the amount, ordered, spent, or avail columns results in incorrect sorting that is either ASCII-betical or which ignores any component of large numbers that occur after the thousands separator. errors appear in the JS debug console of your choice. --- .../prog/en/modules/acqui/acqui-home.tt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tt @@ -177,10 +177,10 @@ $(document).ready(function() { [% END %] [% loop_budge.budget_branchname %] - [% loop_budge.budget_amount %] - [% loop_budge.budget_ordered %] - [% loop_budge.budget_spent %] - [% loop_budge.budget_avail %] + [% loop_budge.formatted_budget_amount %] + [% loop_budge.formatted_budget_ordered %] + [% loop_budge.formatted_budget_spent %] + [% loop_budge.formatted_budget_avail %] [% END %] [% END %] --