update: statistics

This commit is contained in:
tokumeikoi 2020-12-25 00:53:46 +08:00
parent faeaa02a84
commit 5766ec1951

View File

@ -50,8 +50,8 @@ class V2BoardStatistics extends Command
{ {
$endAt = strtotime(date('Y-m-d')); $endAt = strtotime(date('Y-m-d'));
$startAt = strtotime('-1 day', $endAt); $startAt = strtotime('-1 day', $endAt);
$builder = Order::where('updated_at', '>=', $startAt) $builder = Order::where('created_at', '>=', $startAt)
->where('updated_at', '<', $endAt) ->where('created_at', '<', $endAt)
->whereIn('status', [3, 4]); ->whereIn('status', [3, 4]);
$orderCount = $builder->count(); $orderCount = $builder->count();
$orderAmount = $builder->sum('total_amount'); $orderAmount = $builder->sum('total_amount');