From 242f125dc4f60668e82b26c282a4148c052e48a0 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Sat, 13 Jul 2024 11:29:15 +0800 Subject: [PATCH] =?UTF-8?q?feat(OrderList):=20=E4=BF=AE=E6=94=B9=E5=95=86?= =?UTF-8?q?=E5=93=81=E4=BF=A1=E6=81=AF=E6=9F=A5=E8=AF=A2=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/lists/order/OrderList.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/app/api/lists/order/OrderList.php b/app/api/lists/order/OrderList.php index 77d7d0eb..26548a45 100644 --- a/app/api/lists/order/OrderList.php +++ b/app/api/lists/order/OrderList.php @@ -60,11 +60,14 @@ class OrderList extends BaseAdminDataLists implements ListsSearchInterface if(empty($find)){ $find = StoreProduct::where('id', $v['product_id'])->withTrashed()->find(); } - $v['store_name'] = $find['store_name']; - $v['image'] = $find['image']; + $v['store_name'] = $find['store_name']??''; + $v['image'] = $find['image']??''; // $v['price'] = $find['price']; $v['price'] = $v['cart_info']['price']; - $v['unit_name'] = StoreProductUnit::where('id', $find['unit'])->value('name') ?? ''; + $v['unit_name']=''; + if(isset($find['unit']) && $find['unit'] !=''){ + $v['unit_name'] = StoreProductUnit::where('id', $find['unit'])->value('name') ?? ''; + } }); $item['goods_count'] = count(explode(',', $item['cart_id'])); if ($item['refund_reason_time']) {