Commit 5bb7c723 by support Committed by nurchamim

sales activity product: search data juga mencari nama group/area

parent ab6819a8
......@@ -97,6 +97,8 @@ class Product extends MY_Controller
$this->db->group_start();
$this->db->like('sgp.kode', $search);
$this->db->or_like('sgp.nama', $search);
$this->db->or_like('sgm.kode', $search);
$this->db->or_like('sgm.nama', $search);
$this->db->group_end();
$result = $this->db->get()->result();
......
......@@ -47,7 +47,7 @@ class Product_m extends CI_Model
}
}
$column_search = array('product.kode', 'product.nama');
$column_search = array('product.kode', 'product.nama', 'g_area.kode', 'g_area.nama');
$i = 0;
foreach ($column_search as $item) { // looping awal
if ($_GET['search']['value']) { // jika datatable mengirimkan pencarian dengan metode POST
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment