feat: 修改了订单列表的商品信息获取方式

This commit is contained in:
mkm 2024-07-13 11:44:19 +08:00
parent 242f125dc4
commit 59d56ff9c7

View File

@ -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']));