修改店铺商品统计

This commit is contained in:
liu 2024-07-02 14:42:48 +08:00
parent c2a46c93a9
commit faa314d14a

View File

@ -904,7 +904,9 @@ class WorkbenchLogic extends BaseLogic
'SUM(collect_num) as collect',
'ROUND((COUNT(distinct(pay_uid))-1)/COUNT(distinct(uid)),2) as changes',
'COUNT(distinct(pay_uid))-1 as repeats'
])->group('product_id')->order('pay', ' desc')->limit(20)->select()->toArray();
])->group('product_id')->order('pay', 'desc')
->limit(20)
->select()->toArray();
foreach ($list as $key => &$item) {
$find = StoreProduct::where('id', $item['product_id'])->field('store_name,image')->find();
$item['store_name'] = $find['store_name'];