Fix Items search category issue (#2179)

This commit is contained in:
FrancescoUK
2018-10-13 17:23:28 +01:00
parent ddcece66d6
commit f521257570

View File

@@ -191,7 +191,7 @@ class Item extends CI_Model
$this->db->or_like('item_number', $search);
$this->db->or_like('items.item_id', $search);
$this->db->or_like('company_name', $search);
$this->db->or_like('category', $search);
$this->db->or_like('items.category', $search);
$this->db->group_end();
}
else