Commit 4381311a by Jansa Jose

Merge branch 'jansa'

parents 8f40fb57 5d448eeb
...@@ -4599,7 +4599,7 @@ CASE when tbl_registration.gender='0' then 'MALE' when tbl_registration.gender=' ...@@ -4599,7 +4599,7 @@ CASE when tbl_registration.gender='0' then 'MALE' when tbl_registration.gender='
public function accept_consultation_date_change($data){ public function accept_consultation_date_change($data){
$result = $this->db->get_where('tbl_patient_notification',array('id'=>$data['id']))->row(); $result = $this->db->get_where('tbl_patient_notification',array('id'=>$data['id']))->row();
if($result){ if($result){
$book_data = $this->db->get_where('tbl_booking',array('id'=>$data['free_booking_id']))->row_array(); $book_data = $this->db->get_where('tbl_booking',array('id'=>$result->free_booking_id))->row_array();
$update_data = array( $update_data = array(
'booking_status'=>'1', 'booking_status'=>'1',
......
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