|
@@ -195,7 +195,9 @@
|
|
|
<th>当前库存 (Stock)</th>
|
|
<th>当前库存 (Stock)</th>
|
|
|
<th>基数 (LevelBase)</th>
|
|
<th>基数 (LevelBase)</th>
|
|
|
<th>累计税收 (Revenue)</th>
|
|
<th>累计税收 (Revenue)</th>
|
|
|
- <th>累计暗税 (RevenueD)</th>
|
|
|
|
|
|
|
+ <th>今日税收</th>
|
|
|
|
|
+ <th>今日rtp</th>
|
|
|
|
|
+ <th>中奖率</th>
|
|
|
<th width="120">操作</th>
|
|
<th width="120">操作</th>
|
|
|
</tr>
|
|
</tr>
|
|
|
</thead>
|
|
</thead>
|
|
@@ -207,6 +209,9 @@
|
|
|
$levelBase = ($roomStock->LevelBase ?? 10000) / 100;
|
|
$levelBase = ($roomStock->LevelBase ?? 10000) / 100;
|
|
|
$revenue = ($roomStock->Revenue ?? 0) / 100;
|
|
$revenue = ($roomStock->Revenue ?? 0) / 100;
|
|
|
$revenueD = ($roomStock->RevenueD ?? 0) / 100;
|
|
$revenueD = ($roomStock->RevenueD ?? 0) / 100;
|
|
|
|
|
+ $todayRevenue = ($rst2[$sortId]->todayRevenue ?? 0) / 100;
|
|
|
|
|
+ $todayRtp = ($rst2[$sortId]->todayRtp ?? 0);
|
|
|
|
|
+ $todayWinRatio = ($rst2[$sortId]->todayWinRatio ?? 0) * 100;
|
|
|
@endphp
|
|
@endphp
|
|
|
<tr>
|
|
<tr>
|
|
|
<td>
|
|
<td>
|
|
@@ -241,9 +246,9 @@
|
|
|
<td class="text-right text-muted">
|
|
<td class="text-right text-muted">
|
|
|
{{ number_format($revenue, 2) }}
|
|
{{ number_format($revenue, 2) }}
|
|
|
</td>
|
|
</td>
|
|
|
- <td class="text-right text-muted">
|
|
|
|
|
- {{ number_format($revenueD, 2) }}
|
|
|
|
|
- </td>
|
|
|
|
|
|
|
+ <td class="text-right text-muted">{{ $todayRevenue }}</td>
|
|
|
|
|
+ <td class="text-right text-muted">{{ $todayRtp }}</td>
|
|
|
|
|
+ <td class="text-right text-muted">{{ $todayWinRatio }} %</td>
|
|
|
<td class="text-center">
|
|
<td class="text-center">
|
|
|
<button class="btn btn-sm btn-primary save-room-stock" data-sort-id="{{ $sortId }}">
|
|
<button class="btn btn-sm btn-primary save-room-stock" data-sort-id="{{ $sortId }}">
|
|
|
<i class="mdi mdi-content-save"></i> 保存
|
|
<i class="mdi mdi-content-save"></i> 保存
|