ok
Direktori : /home2/selectio/www/geniusgroove.in/crm/application/models/ |
Current File : //home2/selectio/www/geniusgroove.in/crm/application/models/Feemaster_model.php |
<?php if (!defined('BASEPATH')) { exit('No direct script access allowed'); } class Feemaster_model extends MY_Model { public function __construct() { parent::__construct(); $this->current_session = $this->setting_model->getCurrentSession(); } /** * 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($id = null) { $this->db->select('feemasters.feetype_id,feemasters.id,feemasters.class_id,feemasters.session_id,feemasters.amount,feemasters.description,classes.class,feetype.type,feetype.feecategory_id')->from('feemasters'); $this->db->join('classes', 'feemasters.class_id = classes.id'); $this->db->join('feetype', 'feemasters.feetype_id = feetype.id'); $this->db->where('feemasters.session_id', $this->current_session); if ($id != null) { $this->db->where('feemasters.id', $id); } else { $this->db->order_by('feemasters.id'); } $query = $this->db->get(); if ($id != null) { return $query->row_array(); } else { return $query->result_array(); } } /** * This function will delete the record based on the id * @param $id */ public function remove($id) { $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('id', $id); $this->db->delete('feemasters'); $message = DELETE_RECORD_CONSTANT . " On fee master id " . $id; $action = "Delete"; $record_id = $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 { } } /** * This function will take the post data passed from the controller * If id is present, then it will do an update * else an insert. One function doing both add and edit. * @param $data */ 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=========================== if (isset($data['id'])) { $this->db->where('id', $data['id']); $this->db->update('feemasters', $data); $message = UPDATE_RECORD_CONSTANT . " On fee master id " . $data['id']; $action = "Update"; $record_id = $data['id']; $this->log($message, $record_id, $action); } else { $data['session_id'] = $this->current_session; $this->db->insert('feemasters', $data); $id = $this->db->insert_id(); $message = INSERT_RECORD_CONSTANT . " On fee master id " . $id; $action = "Insert"; $record_id = $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 $id; } } public function check_Exits_group($data) { $this->db->select('*'); $this->db->from('feemasters'); $this->db->where('session_id', $this->current_session); $this->db->where('feetype_id', $data['feetype_id']); $this->db->where('class_id', $data['class_id']); $this->db->limit(1); $query = $this->db->get(); if ($query->num_rows() == 1) { return false; } else { return true; } } public function getTypeByFeecategory($type, $class_id) { $this->db->select('feemasters.id,feemasters.session_id,feemasters.amount,feemasters.description,classes.class,feetype.type')->from('feemasters'); $this->db->join('classes', 'feemasters.class_id = classes.id'); $this->db->join('feetype', 'feemasters.feetype_id = feetype.id'); $this->db->where('feemasters.class_id', $class_id); $this->db->where('feemasters.feetype_id', $type); $this->db->where('feemasters.session_id', $this->current_session); $this->db->order_by('feemasters.id'); $query = $this->db->get(); return $query->row_array(); } public function getByClass($class_id) { $this->db->select('feemasters.id,feemasters.session_id,feemasters.amount,feemasters.description,classes.class,feetype.type')->from('feemasters'); $this->db->join('classes', 'feemasters.class_id = classes.id'); $this->db->join('feetype', 'feemasters.feetype_id = feetype.id'); $this->db->where('feemasters.class_id', $class_id); $this->db->where('feemasters.session_id', $this->current_session); $this->db->order_by('feemasters.id'); $query = $this->db->get(); return $query->result_array(); } }