From 7016b66c56acdd06fef585e0714dc2abc258dda2 Mon Sep 17 00:00:00 2001 From: unknown <736250432@qq.com> Date: Wed, 23 Aug 2023 18:58:45 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=85=AC=E5=8F=B8=E4=B8=8B?= =?UTF-8?q?=E9=9D=A2=E8=BD=A6=E8=BE=86=E5=88=97=E8=A1=A8=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/controller/VehicleController.php | 16 +++++++++++++++- app/api/logic/VehicleLogic.php | 21 ++++++++++++++++++--- app/api/route/app.php | 3 ++- 3 files changed, 35 insertions(+), 5 deletions(-) diff --git a/app/api/controller/VehicleController.php b/app/api/controller/VehicleController.php index 88152ff1..fd04e767 100644 --- a/app/api/controller/VehicleController.php +++ b/app/api/controller/VehicleController.php @@ -11,7 +11,7 @@ use think\response\Json; */ class VehicleController extends BaseApiController { - public array $notNeedLogin = ['getCompany','setContract','getRentRecord','updateRentRecord','tricycle','multipleRent','singleRent']; + public array $notNeedLogin = ['getCompany','setContract','getRentRecord','updateRentRecord','getCompanyCars']; /* *获取平台公司接口 @@ -85,4 +85,18 @@ class VehicleController extends BaseApiController return $this->fail($result['msg']); } } + + public function getCompanyCars() { + $params = $this->request->get(['company_id','company_type']); + if(empty($params['company_id']) || empty($params['company_type'])){ + return $this->fail('缺少必要参数'); + } + $result = VehicleLogic::getCompanyCars($params); + //返回数据 + if($result['code'] == 1){ + return $this->success($result['msg'],$result['data']); + }else{ + return $this->fail($result['msg']); + } + } } diff --git a/app/api/logic/VehicleLogic.php b/app/api/logic/VehicleLogic.php index 75110a45..86066346 100644 --- a/app/api/logic/VehicleLogic.php +++ b/app/api/logic/VehicleLogic.php @@ -29,7 +29,7 @@ use app\common\model\vehicle\VehicleRentRecord; */ class VehicleLogic extends BaseLogic { - public static function companyInfo() { + public static function companyInfo():array { $data = Company::field('id,company_name')->where('company_name',30)->select(); if($data){ return ['code'=>1,'msg'=>'请求成功','data'=>$data->toArray()]; @@ -91,7 +91,7 @@ class VehicleLogic extends BaseLogic } } - public static function rendRecordInfo($contract_id) { + public static function rendRecordInfo($contract_id):array { $record = VehicleRentRecord::field('car_ids,num,start_time,end_time')->where('contract_id',$contract_id)->find(); if(!$record){ return ['code'=>0,'msg'=>'数据不存在']; @@ -110,7 +110,7 @@ class VehicleLogic extends BaseLogic return ['code'=>1,'msg'=>'请求成功','data'=>$data]; } - public static function rendRecordEdit($contract_id) { + public static function rendRecordEdit($contract_id):array { $record = VehicleRentRecord::where('contract_id',$contract_id)->where('status',1)->find(); if(!$record){ return ['code'=>0,'msg'=>'数据不存在']; @@ -183,4 +183,19 @@ class VehicleLogic extends BaseLogic return ['code'=>0,'msg'=>$e->getMessage()]; } } + + public static function getCompanyCars($params):array { + $company_str = $params['company_type'] == 1 ? 'lessee_one_company_id' : 'lessee_two_company_id'; + $data = VehicleRent::field('car_id')->where($company_str,$params['company_id'])->select()->each(function($item){ + $car = Vehicle::field('license,gps_imei')->where('id',$item['car_id'])->find(); + $item['gps_imei'] = $car['gps_imei']; + $item['license'] = $car['license']; + return $item; + }); + if($data){ + return ['code'=>1,'msg'=>'请求成功','data'=>$data->toArray()]; + }else{ + return ['code'=>1,'msg'=>'请求失败']; + } + } } diff --git a/app/api/route/app.php b/app/api/route/app.php index d858365e..05dc62b4 100755 --- a/app/api/route/app.php +++ b/app/api/route/app.php @@ -34,4 +34,5 @@ Route::rule('getCarHistory','Gps/getCarHistory','get'); Route::rule('getCompany','Vehicle/getCompany','get'); Route::rule('setContract','Vehicle/setContract','post'); Route::rule('getRentRecord','Vehicle/getRentRecord','get'); -Route::rule('updateRentRecord','Vehicle/updateRentRecord','post'); \ No newline at end of file +Route::rule('updateRentRecord','Vehicle/updateRentRecord','post'); +Route::rule('getCompanyCars','Vehicle/getCompanyCars','get'); \ No newline at end of file