mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-02 14:37:55 -05:00
22 lines
505 B
PHP
22 lines
505 B
PHP
<?php
|
|
class Inventory extends CI_Model
|
|
{
|
|
public function insert($inventory_data)
|
|
{
|
|
return $this->db->insert('inventory', $inventory_data);
|
|
}
|
|
|
|
public function get_inventory_data_for_item($item_id, $location_id = FALSE)
|
|
{
|
|
$this->db->from('inventory');
|
|
$this->db->where('trans_items', $item_id);
|
|
if($location_id != FALSE)
|
|
{
|
|
$this->db->where('trans_location', $location_id);
|
|
}
|
|
$this->db->order_by('trans_date', 'desc');
|
|
|
|
return $this->db->get();
|
|
}
|
|
}
|
|
?>
|