Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public function quotation_detail($id_quotation)
- {
- $this->load->model('m_quotation');
- $ket = $this->db->select('ket')->where('id_quotation', $id_quotation)->limit(1)->get('produksi')->row();
- $data['title'] = 'Quotation - Detail';
- $data['quotation'] = $this->m_quotation->print_quotation($id_quotation, $ket->ket);
- $data['ket'] = $ket->ket;
- $data['page'] = 'pages/quotation/detail';
- $data['current_url'] = 'quotation';
- $this->_render($data);
- }
Advertisement
Add Comment
Please, Sign In to add comment