seven 2 месяцев назад
Родитель
Сommit
0d038e73bc
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      app/Services/BetService.php

+ 1 - 1
app/Services/BetService.php

@@ -657,7 +657,7 @@ class BetService extends BaseService
 
         foreach($openList as $k => $v){
             $amount = $v['amount'];
-            if($v['profit'] > 0){
+            if($v['profit'] >= 0){
                 $profit = number_format($v['profit'],2);
                 $yl = bcsub($v['profit'], $v['amount'], 2); // 盈利
                 $text .= "会员下注 【" . $v['lastStr'] . "】 {$amount} {$profit} {$yl}\n";