update
This commit is contained in:
parent
73abacefad
commit
73eceab30f
@ -110,8 +110,8 @@ class VehicleLogic extends BaseLogic
|
||||
}
|
||||
if($data['status'] == 2){
|
||||
//获取租赁信息
|
||||
$rentInfo = VehicleRent::where('car_id',$data['id'])->find();
|
||||
$contract = Contract::where('id',$rentInfo['contract_id'])->find();
|
||||
$rentInfo = VehicleRent::where('car_id',$data['id'])->findOrEmpty()->toArray();
|
||||
$contract = Contract::where('id',$rentInfo['contract_id'])->findOrEmpty();
|
||||
$rentInfo['contract_file'] = $contract['file'];
|
||||
$data['rent_info'] = !empty($rentInfo) ? $rentInfo : [];
|
||||
//获取物流信息
|
||||
|
Loading…
x
Reference in New Issue
Block a user