From 26b2977c9b3dec1003b424cea34b970392540811 Mon Sep 17 00:00:00 2001 From: Jing Li Date: Sun, 26 May 2024 15:58:36 +0800 Subject: [PATCH] Update --- app/Admin/Controllers/Finance/StoreStatisticController.php | 4 ++-- lang/zh_CN/finance.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Admin/Controllers/Finance/StoreStatisticController.php b/app/Admin/Controllers/Finance/StoreStatisticController.php index 118bab7..73d48b6 100644 --- a/app/Admin/Controllers/Finance/StoreStatisticController.php +++ b/app/Admin/Controllers/Finance/StoreStatisticController.php @@ -121,8 +121,8 @@ class StoreStatisticController extends AdminController '排序' => $row['ranking'], '门店' => Arr::get($row, 'store.title'), '收入' => $row['sales'], - '支出' => $row['expenditure'], - 'new_customers' => $row['new_customers'], + '兑奖' => $row['expenditure'], + '累计人数' => $row['new_customers'], ]; }); } catch (\Throwable $e) { diff --git a/lang/zh_CN/finance.php b/lang/zh_CN/finance.php index 8a33afb..9250887 100644 --- a/lang/zh_CN/finance.php +++ b/lang/zh_CN/finance.php @@ -6,7 +6,7 @@ return [ 'date' => '日期', 'store' => '门店', 'sales' => '销量', - 'expenditure' => '支出', + 'expenditure' => '兑奖', 'new_customers' => '新增客户', 'handover_amount' => '交账金额', 'ledger_amount' => '总账金额',