['gps_imei'], '=' => ['license','status'], ]; } /** * @notes 获取列表 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author likeadmin * @date 2023/08/17 09:23 */ public function lists(): array { return Vehicle::where($this->searchWhere)->where('is_del',0) ->field(['id', 'license', 'gps_imei', 'gps_carid', 'status']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() ->each(function($item){ $item['status_name'] = $item->status_name; $item['rent'] = VehicleRent::where('car_id',$item['id'])->find(); $product_count = 0; if($item['rent'] && $item['rent']['lessee_two_flag'] == 1){ //获取物流信息 $logistics = Logistics::field('order_id')->where('courier_id',$item['rent']['lessee_two_user_id'])->where('status',1)->select()->toArray(); foreach($logistics as $v){ //获取订单信息 Product::field('product_num')->where('order_id', $v['order_id'])->select()->each(function($pro_item) use(&$product_count){ $product_count += $pro_item['product_num']; })->toArray(); } } $item['goods_total'] = $product_count; return $item; }) ->toArray(); } /** * @notes 获取数量 * @return int * @author likeadmin * @date 2023/08/17 09:23 */ public function count(): int { return Vehicle::where($this->searchWhere)->count(); } }