This commit is contained in:
unknown 2023-09-01 13:29:11 +08:00
parent f3e5f60bac
commit b2c9de3685

View File

@ -121,4 +121,28 @@ class VehicleController extends BaseApiController
return $this->fail('失败');
}
}
public function cancelRent() {
//获取参数
$params = $this->request->post(['car_id','status']);
if(empty($params['car_id']) || empty($params['status'])){
return $this->fail('参数错误');
}
//更新
$vehicleRent = VehicleRent::where('car_id',$params['car_id'])->find();
if(empty($vehicleRent)){
return $this->fail('数据错误');
}
$result1 = VehicleRent::where('car_id',$params['car_id'])->update([
'status' => $params['status'],
]);
$result2 = Vehicle::where('id',$params['car_id'])->update([
'status' => 3,
]);
if($result1 && $result2){
return $this->success('请求成功');
}else{
return $this->fail('失败');
}
}
}