⚠ In case you've missed it, we have migrated to our new website, with a brand new forum. For more details about the migration you can read our blog post for website migration. This is an archived forum. ⚠

  •     

profile picture

does not display print and export.



Fauzan
  • profile picture
  • Member

Posted 21 December 2015 - 07:56 AM

does not display the print menu,

anyone help,

 

 

public function stock_pembelian()
{
$crud = $this->crud->generate_crud('pembelian');
$crud->columns('id_barang', 'id_supplier', 'harga_satuan', 'jumlah_beli', 'satuan_barang','tanggal_beli', 'keterangan');
$crud->set_relation('id_supplier', 'supplier', 'nama_supplier');
$crud->set_relation('id_barang', 'barang', 'nama_barang');
 
$this->mTitle = 'Stock Pembelian';
$this->mViewData['crud_data'] = $this->crud->render();
$this->render('crud');
}