diff --git a/app/api/lists/order/OrderList.php b/app/api/lists/order/OrderList.php index 26548a45..f30f4e1f 100644 --- a/app/api/lists/order/OrderList.php +++ b/app/api/lists/order/OrderList.php @@ -56,17 +56,18 @@ class OrderList extends BaseAdminDataLists implements ListsSearchInterface $item['goods_list'] = StoreOrderCartInfo::where('oid', $item['id']) ->field('product_id,cart_num,verify_code,is_writeoff,writeoff_time,old_cart_id,cart_info')->limit(3)->select() ->each(function ($v) use ($item) { - $find = StoreBranchProduct::where('product_id', $v['product_id'])->where('store_id', $item['store_id'])->withTrashed()->find(); - if(empty($find)){ - $find = StoreProduct::where('id', $v['product_id'])->withTrashed()->find(); - } - $v['store_name'] = $find['store_name']??''; - $v['image'] = $find['image']??''; -// $v['price'] = $find['price']; - $v['price'] = $v['cart_info']['price']; + $v['store_name'] = ''; + $v['image'] = ''; + $v['price'] = ''; $v['unit_name']=''; - if(isset($find['unit']) && $find['unit'] !=''){ - $v['unit_name'] = StoreProductUnit::where('id', $find['unit'])->value('name') ?? ''; + if(isset($v['cart_info'])){ + // foreach( $v['cart_info'] as $k=>$vv){ + $v['store_name'] =$v['cart_info']['name']; + $v['image'] =$v['cart_info'] ['image']; + $v['price'] = $v['cart_info']['price']; + $v['unit_name']=$v['cart_info']['unit_name']??''; + // } + } }); $item['goods_count'] = count(explode(',', $item['cart_id']));