Files
opensourcepos/application/models/Rewards.php
2017-04-17 21:47:22 +01:00

27 lines
441 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);
}
}
?>