This commit is contained in:
unknown 2023-10-12 16:30:36 +08:00
parent a10bd4e7cb
commit 7b092cc06a

View File

@ -126,27 +126,31 @@ class VehicleController extends BaseApiController
} }
} }
public function cancelRent() { public function cancelRent(): Json
{
//获取参数 //获取参数
$params = $this->request->post(['car_id','status']); $carIds = $this->request->post('car_ids');
if(empty($params['car_id']) || empty($params['status'])){ if(empty($carIds)){
return $this->fail('参数错误'); return $this->fail('参数错误');
} }
//更新 Db::startTrans();
$vehicleRent = VehicleRent::where('car_id',$params['car_id'])->find(); try {
if(empty($vehicleRent)){ //删除租赁信息
return $this->fail('数据错误'); VehicleRent::where('car_id','in',$carIds)->delete();
} //重置车辆状态
$result1 = VehicleRent::where('car_id',$params['car_id'])->update([ $vehicles = Vehicle::field('id,type')->where('id','in',$carIds)->select();
'status' => $params['status'], foreach ($vehicles as $v) {
]); if($v['type'] == 1){
$result2 = Vehicle::where('id',$params['car_id'])->update([ Vehicle::where('id',$v['id'])->delete();
'status' => 3,
]);
if($result1 && $result2){
return $this->success('请求成功');
}else{ }else{
return $this->fail('失败'); Vehicle::where('id',$v['id'])->update(['status'=>0]);
}
}
Db::commit();
return $this->success('请求成功');
}catch (\Exception $e) {
Db::rollback();
return $this->fail($e->getMessage());
} }
} }