Ken 5 päivää sitten
vanhempi
commit
cef0bc2f39
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      app/Services/BalanceLogService.php

+ 1 - 1
app/Services/BalanceLogService.php

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