deploy awal

This commit is contained in:
atuy
2026-06-27 13:11:58 +07:00
commit c32764f514
8977 changed files with 1499555 additions and 0 deletions
+51
View File
@@ -0,0 +1,51 @@
<?php
class Model_stok extends CI_Model{
function tampil_data()
{
return
$this->db->join('barang','barang.id_barang = stok.id_barang','left')
->join('suplier','suplier.id_suplier = barang.id_suplier','left')
->join('kategori','kategori.id_kategori = barang.id_kategori','left')
->get('stok')->result();
}
function tampil_data2(){
return $this->db->get('stok')->result();
}
function post($data)
{
$this->db->insert('stok', $data);
}
function get_one($id)
{
$param = array ('id_stok'=>$id);
return $this->db->get_where('stok', $param);
}
function edit($id,$data)
{
$this->db->where('id_stok', $id);
$this->db->update('stok', $data);
}
function tambah_stok($id,$data)
{
$this->db->where('id_barang', $id);
$this->db->update('stok', $data);
}
function hapus($id)
{
$this->db->where('id_stok', $id);
$this->db->delete('stok');
}
function get_stok($id){
$param = array('id_barang' => $id);
return $this->db->get_where('stok',$param)->row();
}
}