Commit 5c1592b8 by Jansa Jose

cancel booking web

parent c8c681aa
......@@ -30,7 +30,9 @@ public function index()
$completed_consultation = $this->Patient_model->get_patient_completed_consultation($userdata['id']);
$confirmed_consultation = $this->Patient_model->get_patient_confirmed_consultation($userdata['id']); //get all confirmed and waiting list bookings
$confirmed_consultation = $this->Patient_model->get_patient_confirmed_consultation($userdata['id']);
//echo $this->db->last_query();exit();
//get all confirmed and waiting list bookings
/*$canceled_consultation = $this->Patient_model->get_patient_canceled_consultation($userdata['id']); //get all canceled bookings*/
$policy = $this->Patient_model->get_policy();
......
......@@ -384,6 +384,8 @@ public function check_waiting_list($data)
$this->db->where('payment_status',1);
$this->db->group_by('id');
$query = $this->db->get();
return $query->row_array();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment