mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
77 lines
1.7 KiB
PHP
77 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use Illuminate\Console\Command;
|
|
use App\Models\Order;
|
|
use App\Models\User;
|
|
|
|
class CheckCommission extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'check:commission';
|
|
|
|
/**
|
|
* 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()
|
|
{
|
|
$this->autoCheck();
|
|
$this->autoPayCommission();
|
|
}
|
|
|
|
public function autoCheck()
|
|
{
|
|
if ((int)config('v2board.commission_auto_check_enable', 1)) {
|
|
Order::where('commission_status', 0)
|
|
->where('status', 3)
|
|
->where('updated_at', '<=', strtotime('-3 day', time()))
|
|
->update([
|
|
'commission_status' => 1
|
|
]);
|
|
}
|
|
}
|
|
|
|
public function autoPayCommission()
|
|
{
|
|
$order = Order::where('commission_status', 1)
|
|
->where('status', 3)
|
|
->get();
|
|
foreach ($order as $item) {
|
|
if ($item->invite_user_id) {
|
|
$inviter = User::find($item->invite_user_id);
|
|
if (!$inviter) continue;
|
|
$inviter->commission_balance = $inviter->commission_balance + $item->commission_balance;
|
|
if ($inviter->save()) {
|
|
$item->commission_status = 2;
|
|
$item->save();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|