$this->lang->line('reports_item')), array('category' => $this->lang->line('reports_category')), array('cost_price' => $this->lang->line('reports_cost_price'), 'sorter' => 'number_sorter'), array('unit_price' => $this->lang->line('reports_unit_price'), 'sorter' => 'number_sorter'), 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'), array('cost' => $this->lang->line('reports_cost'), 'sorter' => 'number_sorter'), array('profit' => $this->lang->line('reports_profit'), 'sorter' => 'number_sorter')); } protected function _select(array $inputs) { parent::_select($inputs); $this->db->select(' MAX(items.name) AS name, MAX(items.category) AS category, MAX(items.cost_price) AS cost_price, MAX(items.unit_price) AS unit_price, SUM(sales_items.quantity_purchased) AS quantity_purchased '); } protected function _from() { parent::_from(); $this->db->join('items AS items', 'sales_items.item_id = items.item_id', 'inner'); } protected function _group_order() { $this->db->group_by('items.item_id'); $this->db->order_by('name'); } } ?>