mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-02 06:27:50 -05:00
149 lines
2.9 KiB
PHP
149 lines
2.9 KiB
PHP
<?php
|
|
class Person extends CI_Model
|
|
{
|
|
/*
|
|
Determines whether the given person exists
|
|
*/
|
|
public function exists($person_id)
|
|
{
|
|
$this->db->from('people');
|
|
$this->db->where('people.person_id', $person_id);
|
|
|
|
return ($this->db->get()->num_rows() == 1);
|
|
}
|
|
|
|
/*
|
|
Gets all people
|
|
*/
|
|
public function get_all($limit = 10000, $offset = 0)
|
|
{
|
|
$this->db->from('people');
|
|
$this->db->order_by('last_name', 'asc');
|
|
$this->db->limit($limit);
|
|
$this->db->offset($offset);
|
|
|
|
return $this->db->get();
|
|
}
|
|
|
|
/*
|
|
Gets total of rows
|
|
*/
|
|
public function get_total_rows()
|
|
{
|
|
$this->db->from('people');
|
|
$this->db->where('deleted', 0);
|
|
|
|
return $this->db->count_all_results();
|
|
}
|
|
|
|
/*
|
|
Gets information about a person as an array.
|
|
*/
|
|
public function get_info($person_id)
|
|
{
|
|
$query = $this->db->get_where('people', array('person_id' => $person_id), 1);
|
|
|
|
if($query->num_rows() == 1)
|
|
{
|
|
return $query->row();
|
|
}
|
|
else
|
|
{
|
|
//create object with empty properties.
|
|
$person_obj = new stdClass;
|
|
|
|
foreach($this->db->list_fields('people') as $field)
|
|
{
|
|
$person_obj->$field = '';
|
|
}
|
|
|
|
return $person_obj;
|
|
}
|
|
}
|
|
|
|
/*
|
|
Get people with specific ids
|
|
*/
|
|
public function get_multiple_info($person_ids)
|
|
{
|
|
$this->db->from('people');
|
|
$this->db->where_in('person_id', $person_ids);
|
|
$this->db->order_by('last_name', 'asc');
|
|
|
|
return $this->db->get();
|
|
}
|
|
|
|
/*
|
|
Inserts or updates a person
|
|
*/
|
|
public function save(&$person_data, $person_id = FALSE)
|
|
{
|
|
if(!$person_id || !$this->exists($person_id))
|
|
{
|
|
if($this->db->insert('people', $person_data))
|
|
{
|
|
$person_data['person_id'] = $this->db->insert_id();
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
$this->db->where('person_id', $person_id);
|
|
|
|
return $this->db->update('people', $person_data);
|
|
}
|
|
|
|
/*
|
|
Get search suggestions to find person
|
|
*/
|
|
public function get_search_suggestions($search, $limit = 25)
|
|
{
|
|
$suggestions = array();
|
|
|
|
// $this->db->select('person_id');
|
|
// $this->db->from('people');
|
|
// $this->db->where('deleted', 0);
|
|
// $this->db->where('person_id', $search);
|
|
// $this->db->group_start();
|
|
// $this->db->like('first_name', $search);
|
|
// $this->db->or_like('last_name', $search);
|
|
// $this->db->or_like('CONCAT(first_name, " ", last_name)', $search);
|
|
// $this->db->or_like('email', $search);
|
|
// $this->db->or_like('phone_number', $search);
|
|
// $this->db->group_end();
|
|
// $this->db->order_by('last_name', 'asc');
|
|
|
|
foreach($this->db->get()->result() as $row)
|
|
{
|
|
$suggestions[] = array('label' => $row->person_id);
|
|
}
|
|
|
|
//only return $limit suggestions
|
|
if(count($suggestions > $limit))
|
|
{
|
|
$suggestions = array_slice($suggestions, 0, $limit);
|
|
}
|
|
|
|
return $suggestions;
|
|
}
|
|
|
|
/*
|
|
Deletes one Person (doesn't actually do anything)
|
|
*/
|
|
public function delete($person_id)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
/*
|
|
Deletes a list of people (doesn't actually do anything)
|
|
*/
|
|
public function delete_list($person_ids)
|
|
{
|
|
return TRUE;
|
|
}
|
|
}
|
|
?>
|