Files
opensourcepos/application/models/inventory.php
2014-02-25 17:34:25 -05:00

18 lines
351 B
PHP

<?php
class Inventory extends CI_Model
{
function insert($inventory_data)
{
return $this->db->insert('inventory',$inventory_data);
}
function get_inventory_data_for_item($item_id)
{
$this->db->from('inventory');
$this->db->where('trans_items',$item_id);
$this->db->order_by("trans_date", "desc");
return $this->db->get();
}
}
?>