123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- namespace App\Console\Commands;
- use Illuminate\Console\Command;
- use App\Models\Order;
- use App\Models\StatOrder;
- use App\Models\CommissionLog;
- class V2boardStatistics extends Command
- {
- /**
- * The name and signature of the console command.
- *
- * @var string
- */
- protected $signature = 'v2board:statistics';
- /**
- * The console command description.
- *
- * @var string
- */
- protected $description = '统计任务';
- /**
- * Create a new command instance.
- *
- * @return void
- */
- public function __construct()
- {
- parent::__construct();
- }
- /**
- * Execute the console command.
- *
- * @return mixed
- */
- public function handle()
- {
- ini_set('memory_limit', -1);
- $this->statOrder();
- }
- private function statOrder()
- {
- $endAt = strtotime(date('Y-m-d'));
- $startAt = strtotime('-1 day', $endAt);
- $orderBuilder = Order::where('paid_at', '>=', $startAt)
- ->where('paid_at', '<', $endAt)
- ->whereNotIn('status', [0, 2]);
- $orderCount = $orderBuilder->count();
- $orderAmount = $orderBuilder->sum('total_amount');
- $commissionBuilder = CommissionLog::where('created_at', '>=', $startAt)
- ->where('created_at', '<', $endAt)
- ->where('get_amount', '>', 0);
- $commissionCount = $commissionBuilder->count();
- $commissionAmount = $commissionBuilder->sum('get_amount');
- $data = [
- 'order_count' => $orderCount,
- 'order_amount' => $orderAmount,
- 'commission_count' => $commissionCount,
- 'commission_amount' => $commissionAmount,
- 'record_type' => 'd',
- 'record_at' => $startAt
- ];
- $statistic = StatOrder::where('record_at', $startAt)
- ->where('record_type', 'd')
- ->first();
- if ($statistic) {
- $statistic->update($data);
- return;
- }
- StatOrder::create($data);
- }
- }
|