seven 2 주 전
부모
커밋
2f11a97840
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Services/BalanceLogService.php

+ 1 - 1
app/Services/BalanceLogService.php

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