orie

controller

Sep 3rd, 2018
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. public function quotation_detail($id_quotation)
  2. {
  3. $this->load->model('m_quotation');
  4.  
  5. $ket = $this->db->select('ket')->where('id_quotation', $id_quotation)->limit(1)->get('produksi')->row();
  6.  
  7. $data['title'] = 'Quotation - Detail';
  8. $data['quotation'] = $this->m_quotation->print_quotation($id_quotation, $ket->ket);
  9. $data['ket'] = $ket->ket;
  10.  
  11. $data['page'] = 'pages/quotation/detail';
  12. $data['current_url'] = 'quotation';
  13. $this->_render($data);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment