File: /home/dmstechonline/crm.chaitanyahospitalvirar.com/application/models/Expmedicine_model.php
<?php
if (!defined('BASEPATH')) {
exit('No direct script access allowed');
}
class Expmedicine_model extends MY_Model
{
public function __construct()
{
parent::__construct();
}
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('vehicles', $data);
$message = UPDATE_RECORD_CONSTANT . " On Vehicles id " . $data['id'];
$action = "Update";
$record_id = $data['id'];
$this->log($message, $record_id, $action);
} else {
$this->db->insert('vehicles', $data);
$insert_id = $this->db->insert_id();
$message = INSERT_RECORD_CONSTANT . " On vehicles 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 get($id = null)
{
$this->db->select()->from('vehicles');
if ($id != null) {
$this->db->where('vehicles.id', $id);
} else {
$this->db->order_by('vehicles.id', 'desc');
}
$query = $this->db->get();
if ($id != null) {
return $query->row();
} else {
return $query->result_array();
}
}
public function getDetails($id)
{
$query = $this->db->select('vehicles.*')->where('id', $id)->get('vehicles');
return $query->row_array();
}
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('vehicles');
$message = DELETE_RECORD_CONSTANT . " On Vehicles 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 {
return $record_id;
}
}
public function addCallAmbulance($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('ambulance_call', $data);
$message = UPDATE_RECORD_CONSTANT . " On Ambulance Call id " . $data['id'];
$action = "Update";
$record_id = $data['id'];
$this->log($message, $record_id, $action);
} else {
$this->db->insert('ambulance_call', $data);
$insert_id = $this->db->insert_id();
$message = INSERT_RECORD_CONSTANT . " On Ambulance Call 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 getCallAmbulance()
{
$query = $this->db->select('ambulance_call.*,vehicles.vehicle_no,vehicles.vehicle_model')
->join('vehicles', 'vehicles.id = ambulance_call.vehicle_no')
->get('ambulance_call');
return $query->result_array();
}
public function getCallDetails($id)
{
$query = $this->db->select('ambulance_call.*')->where('id', $id)->get('ambulance_call');
return $query->row_array();
}
public function delete($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('ambulance_call');
$message = DELETE_RECORD_CONSTANT . " On Ambulance Call 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 {
return $record_id;
}
}
public function getList()
{
$first_date = date('Y-m-01');
$last_date = date('Y-m-t 23:59:59.993');
$query = $this->db->query("select medicine_batch_details.*,pharmacy.medicine_name,pharmacy.medicine_company,pharmacy.supplier,pharmacy.medicine_group,medicine_category.medicine_category from medicine_batch_details JOIN pharmacy ON medicine_batch_details.pharmacy_id = pharmacy.id JOIN medicine_category ON pharmacy.medicine_category_id = medicine_category.id where medicine_batch_details.expiry_date_format >= '" . $first_date . "' and medicine_batch_details.expiry_date_format<= '" . $last_date . "' and medicine_batch_details.expiry_date_format <= '" . date("Y-m-d") . "' order by expiry_date_format");
return $query->result_array();
}
}