mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 09:21:46 +08:00 
			
		
		
		
	update: fix stat
This commit is contained in:
		| @@ -48,9 +48,11 @@ class StatController extends Controller | ||||
|                     ->whereNotIn('status', [0, 2]) | ||||
|                     ->sum('total_amount'), | ||||
|                 'commission_month_payout' => Order::where('actual_commission_balance' ,'!=', NULL) | ||||
|                     ->where('created_at', '>=', strtotime(date('Y-m-1'))) | ||||
|                     ->where('created_at', '<', time()) | ||||
|                     ->sum('actual_commission_balance'), | ||||
|                 'commission_last_month_payout' => Order::where('actual_commission_balance' ,'!=', NULL) | ||||
|                     ->where('created_at', '>=', strtotime('-1 month', strtotime(date('Y-m-1')))) | ||||
|                     ->where('created_at', '<', strtotime(date('Y-m-1'))) | ||||
|                     ->sum('actual_commission_balance'), | ||||
|             ] | ||||
|   | ||||
		Reference in New Issue
	
	Block a user