mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-01 14:07:54 -05:00
35 lines
742 B
PHP
35 lines
742 B
PHP
<?php
|
|
|
|
class Item_lib
|
|
{
|
|
var $CI;
|
|
|
|
function __construct()
|
|
{
|
|
$this->CI =& get_instance();
|
|
}
|
|
|
|
function get_item_location()
|
|
{
|
|
if(!$this->CI->session->userdata('item_location'))
|
|
{
|
|
$stock_locations = $this->CI->Stock_locations->get_undeleted_all()->result_array();
|
|
$location_name = $stock_locations[0]['location_id'];
|
|
$this->set_item_location($location_name);
|
|
}
|
|
return $this->CI->session->userdata('item_location');
|
|
}
|
|
|
|
function set_item_location($location)
|
|
{
|
|
$this->CI->session->set_userdata('item_location',$location);
|
|
}
|
|
|
|
function clear_item_location()
|
|
{
|
|
$this->CI->session->unset_userdata('item_location');
|
|
}
|
|
}
|
|
|
|
?>
|