From 00565ddc8f3dabd9eabcddde8ce1510cd216d0c3 Mon Sep 17 00:00:00 2001 From: FrancescoUK Date: Sat, 26 Nov 2016 15:50:35 +0000 Subject: [PATCH] Fix (again) Summary_taxes percent column sorting (#1003) --- application/models/reports/Summary_taxes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/reports/Summary_taxes.php b/application/models/reports/Summary_taxes.php index 008a35dd8..ff869cf03 100644 --- a/application/models/reports/Summary_taxes.php +++ b/application/models/reports/Summary_taxes.php @@ -12,7 +12,7 @@ class Summary_taxes extends Summary_report protected function _get_data_columns() { return array( - array('tax' => $this->lang->line('reports_tax_percent'), 'sorter' => 'number_sorter'), + array('tax_percent' => $this->lang->line('reports_tax_percent'), 'sorter' => 'number_sorter'), array('report_count' => $this->lang->line('reports_count')), array('subtotal' => $this->lang->line('reports_subtotal'), 'sorter' => 'number_sorter'), array('tax' => $this->lang->line('reports_tax'), 'sorter' => 'number_sorter'),