File: /home/dmstechonline/crm.chaitanyahospitalvirar.com/application/models/Paymentsetting_model.php
<?php
if (!defined('BASEPATH')) {
exit('No direct script access allowed');
}
class Paymentsetting_model extends MY_Model
{
public function __construct()
{
parent::__construct();
}
/**
* This funtion takes id as a parameter and will fetch the record.
* If id is not provided, then it will fetch all the records form the table.
* @param int $id
* @return mixed
*/
public function get()
{
$this->db->select()->from('payment_settings');
$query = $this->db->get();
return $query->result();
}
public function getActiveMethod()
{
$this->db->select()->from('payment_settings');
$this->db->where('is_active', 'yes');
$query = $this->db->get();
return $query->row();
}
public function add($data)
{
$this->db->trans_start(); # Starting Transaction
$this->db->trans_strict(false); # See Note 01. If you wish can remove as well
//=======================Code Start===========================
$this->db->where('payment_type', $data['payment_type']);
$q = $this->db->get('payment_settings');
if ($q->num_rows() > 0) {
$this->db->where('id', $q->row()->id);
$this->db->update('payment_settings', $data);
$message = UPDATE_RECORD_CONSTANT . " On Payment Settings id " . $q->row()->id;
$action = "Update";
$record_id = $q->row()->id;
$this->log($message, $record_id, $action);
} else {
$this->db->insert('payment_settings', $data);
$insert_id = $this->db->insert_id();
$message = INSERT_RECORD_CONSTANT . " On Payment Settings id " . $insert_id;
$action = "Insert";
$record_id = $insert_id;
$this->log($message, $record_id, $action);
}
//======================Code End==============================
$this->db->trans_complete(); # Completing transaction
/* Optional */
if ($this->db->trans_status() === false) {
# Something went wrong.
$this->db->trans_rollback();
return false;
} else {
return $record_id;
}
}
public function valid_paymentsetting()
{
$payment_setting = $this->input->post('payment_setting');
if ($payment_setting == "none") {
return true;
}
if (!$this->check_data_exists($payment_setting)) {
$this->form_validation->set_message('paymentsetting', 'Please fill your %s detail');
return false;
} else {
return true;
}
}
public function check_data_exists($payment_setting)
{
$this->db->where('payment_type', $payment_setting);
$query = $this->db->get('payment_settings');
if ($query->num_rows() > 0) {
return true;
} else {
return false;
}
}
public function active($data, $other = false)
{
if (!$other) {
$this->db->where('payment_type', $data['payment_type']);
$this->db->update('payment_settings', $data);
$data['is_active'] = "no";
$payment_type = $data['payment_type'];
unset($data['payment_type']);
$this->db->where('payment_type !=', $payment_type);
$this->db->update('payment_settings', $data);
} else {
$this->db->update('payment_settings', $data);
}
}
}