seven 1 month ago
parent
commit
2a04236f55
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Services/BalanceLogService.php

+ 1 - 1
app/Services/BalanceLogService.php

@@ -145,7 +145,7 @@ class BalanceLogService extends BaseService
         $text = '';
         $text .= "当日流水: " . $flow . "\n";
         $text .= "当日返水: " . $refund . "\n";
-        $text .= "当日盈利: " . ($profit + $refund - $flow)  . "\n";
+        $text .= "当日盈利: " . ($profit + $refund + $flow)  . "\n";
         $text .= "余额: " . $walletInfo['available_balance'] . "\n";
         return [
             'chat_id' => $memberId,