From d571734f982468edc896c59f0d35189a5ef66abe Mon Sep 17 00:00:00 2001 From: Carl Hunter Date: Wed, 2 Dec 2020 06:22:29 -0500 Subject: [PATCH] Fixed sorting of Quantity column in Customer Summary Report --- application/models/reports/Summary_customers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/reports/Summary_customers.php b/application/models/reports/Summary_customers.php index 1b07697af..ff0e9aaf0 100644 --- a/application/models/reports/Summary_customers.php +++ b/application/models/reports/Summary_customers.php @@ -9,7 +9,7 @@ class Summary_customers extends Summary_report return array( array('customer_name' => $this->lang->line('reports_customer')), array('sales' => $this->lang->line('reports_sales'), 'sorter' => 'number_sorter'), - array('quantity' => $this->lang->line('reports_quantity')), + array('quantity' => $this->lang->line('reports_quantity'), 'sorter' => 'number_sorter'), array('subtotal' => $this->lang->line('reports_subtotal'), 'sorter' => 'number_sorter'), array('tax' => $this->lang->line('reports_tax'), 'sorter' => 'number_sorter'), array('total' => $this->lang->line('reports_total'), 'sorter' => 'number_sorter'),