feat(OrderList): 修改商品信息查询逻辑

This commit is contained in:
mkm 2024-07-13 11:29:15 +08:00
parent 75c6e3b05a
commit 242f125dc4

View File

@ -60,11 +60,14 @@ class OrderList extends BaseAdminDataLists implements ListsSearchInterface
if(empty($find)){ if(empty($find)){
$find = StoreProduct::where('id', $v['product_id'])->withTrashed()->find(); $find = StoreProduct::where('id', $v['product_id'])->withTrashed()->find();
} }
$v['store_name'] = $find['store_name']; $v['store_name'] = $find['store_name']??'';
$v['image'] = $find['image']; $v['image'] = $find['image']??'';
// $v['price'] = $find['price']; // $v['price'] = $find['price'];
$v['price'] = $v['cart_info']['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'])); $item['goods_count'] = count(explode(',', $item['cart_id']));
if ($item['refund_reason_time']) { if ($item['refund_reason_time']) {