Commit a8d1d26f by Jansa Jose

Merge branch 'master' into 'local_production'

dc See merge request !110
parents fe05ca60 efb51b99
...@@ -139,7 +139,7 @@ public function mechanic_logout($mechanic_id){ ...@@ -139,7 +139,7 @@ public function mechanic_logout($mechanic_id){
$respArr['status'] = "success"; $respArr['status'] = "success";
$respArr['message'] = "Logged Out Successfully"; $respArr['message'] = "Logged Out Successfully";
} }
return $status; return $respArr;
} }
public function forgot_password($username){ public function forgot_password($username){
......
...@@ -4,8 +4,8 @@ class Webservice_model extends CI_Model { ...@@ -4,8 +4,8 @@ class Webservice_model extends CI_Model {
parent::__construct(); parent::__construct();
date_default_timezone_set('Asia/Kolkata'); date_default_timezone_set('Asia/Kolkata');
} }
/***************************************************************************************/ /*************************************************************************************************/
/****************************************Mobile API's***********************************/ /****************************************Mobile API's*********************************************/
public function checkMobAvailability($data = array()){ public function checkMobAvailability($data = array()){
$res = array('status'=>'success', 'message'=>'Mobile Number Available','data'=>array('phone'=>$data['phone'],'is_available'=>true)); $res = array('status'=>'success', 'message'=>'Mobile Number Available','data'=>array('phone'=>$data['phone'],'is_available'=>true));
...@@ -223,7 +223,6 @@ class Webservice_model extends CI_Model { ...@@ -223,7 +223,6 @@ class Webservice_model extends CI_Model {
if(empty($postData)){ if(empty($postData)){
return $respArr; return $respArr;
} }
if(isset($postData['vehicle_id']) && !empty($postData['vehicle_id'])){ if(isset($postData['vehicle_id']) && !empty($postData['vehicle_id'])){
$result = $this->db->get_where('customer_vehicle',array('customer_veh_id'=>$postData['vehicle_id']))->row(); $result = $this->db->get_where('customer_vehicle',array('customer_veh_id'=>$postData['vehicle_id']))->row();
$postData['mileage'] = ''; $postData['mileage'] = '';
...@@ -611,7 +610,6 @@ class Webservice_model extends CI_Model { ...@@ -611,7 +610,6 @@ class Webservice_model extends CI_Model {
$respArr['message'] = 'Amount is Required'; $respArr['message'] = 'Amount is Required';
return $respArr; return $respArr;
} }
if($this->db->update('mechanic_booking',array('status'=>'1'),array('booking_id'=>$postData['bookingId'],'mechanic_id'=>$postData['mechanicId']))){ if($this->db->update('mechanic_booking',array('status'=>'1'),array('booking_id'=>$postData['bookingId'],'mechanic_id'=>$postData['mechanicId']))){
$this->db->update('mechanic_booking',array('status'=>'2'),array('booking_id'=>$postData['bookingId'],'mechanic_id !='=>$postData['mechanicId'])); $this->db->update('mechanic_booking',array('status'=>'2'),array('booking_id'=>$postData['bookingId'],'mechanic_id !='=>$postData['mechanicId']));
$this->db->update('bookings',array('status'=>'5','cost'=>$postData['amount']),array('booking_id'=>$postData['bookingId'])); $this->db->update('bookings',array('status'=>'5','cost'=>$postData['amount']),array('booking_id'=>$postData['bookingId']));
......
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