소스 검색

update: statistics

tokumeikoi 4 년 전
부모
커밋
5766ec1951
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      app/Console/Commands/V2boardStatistics.php

+ 2 - 2
app/Console/Commands/V2boardStatistics.php

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