Compare commits

..

1 Commits

Author SHA1 Message Date
5cc59bb505 fix : stat 2025-08-06 16:02:42 +08:00

View File

@@ -97,7 +97,7 @@ class ChefService extends BaseService
$v['sku_title'] = $skuList[$v['sku_id']]['title'] ?? '';
$v['sku_price'] = $skuList[$v['sku_id']]['price'] ?? '0.00';
$v['total_price'] = bcmul($skuList[$v['sku_id']]['price'],(string)$v['sale'],2);
$v['chef_name'] = $chefList[$v['chef_id']] ?? '';
$v['chef_name'] = $chefList[$v['chef_id']]['chinese_name'] ?? '';
}
return $this->return->success('success', ['list' => $list]);