db->insert($table, $data); }else{ $insert = $this->db->insert_batch($table, $data); } return $insert; } public function update($table, $data, $pk, $id = null, $batch = false) { if($batch === false){ $insert = $this->db->update($table, $data, array($pk => $id)); }else{ $insert = $this->db->update_batch($table, $data, $pk); } return $insert; } public function delete($table, $data, $pk) { $this->db->where_in($pk, $data); return $this->db->delete($table); } public function getDataDaftarHarga($id = null){ if ($id === null) { $this->db->select('*'); $this->db->from('daftar_harga'); }else{ $this->db->select('*'); $this->db->from('daftar_harga'); $this->db->where(['ID_DH' => $id]); } return $this->db->get()->result_array(); } public function getDataDaftarHargaKonsistensi($id = null){ if ($id === null) { $this->db->select('*'); $this->db->from('barang a'); $this->db->join('daftar_harga b','b.ID_DH=a.DH_ID','right'); $this->db->order_by('b.ID_DH','ASC'); $this->db->group_by('b.ID_DH','ASC'); }else{ $this->db->select('*'); $this->db->from('barang a'); $this->db->join('daftar_harga b','b.ID_DH=a.DH_ID','right'); $this->db->order_by('b.ID_DH','ASC'); $this->db->group_by('b.ID_DH','ASC'); $this->db->where(['b.ID_DH' => $id]); } return $this->db->get()->result_array(); } } ?>