mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-06 08:27:54 -05:00
28 lines
442 B
PHP
28 lines
442 B
PHP
<?php
|
|
class Rewards extends CI_Model
|
|
{
|
|
/*
|
|
Inserts or updates a rewards
|
|
*/
|
|
public function save(&$rewards_data, $id = -1)
|
|
{
|
|
if($id == -1 || !$this->exists($id))
|
|
{
|
|
if($this->db->insert('sales_reward_points', $rewards_data))
|
|
{
|
|
$rewards_data['id'] = $this->db->insert_id();
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
$this->db->where('id', $id);
|
|
|
|
return $this->db->update('sales_reward_points', $rewards_data);
|
|
}
|
|
|
|
}
|
|
?>
|