swapped in/out

This commit is contained in:
Frank Schubert
2025-07-17 20:47:10 +02:00
parent 207eabea15
commit 8f73a21ca3

View File

@@ -85,19 +85,19 @@
<table class="table table-sm table-striped">
<tr>
<th class="text-right">Anzahl eingehende Calls:</th>
<td class="text-monospace text-right"><?=number_format($out["count"], 0, ",", ".")?></td>
<td class="text-monospace text-right"><?=number_format($in["count"], 0, ",", ".")?></td>
</tr>
<tr>
<th class="text-right">Sekunden gesamt:</th>
<td class="text-monospace text-right"><?=number_format($out["seconds"], 0, ",", ".")?></td>
<td class="text-monospace text-right"><?=number_format($in["seconds"], 0, ",", ".")?></td>
</tr>
<tr>
<th class="text-right">Verrechenbare Minuten:</th>
<td class="text-monospace text-right"><?=number_format($out["billable"], 0, ",", ".")?></td>
<td class="text-monospace text-right"><?=number_format($in["billable"], 0, ",", ".")?></td>
</tr>
<tr>
<th class="text-right">Kosten:</th>
<td class="text-monospace text-right">€ <?=number_format($out["cost"], 0, ",", ".")?></td>
<td class="text-monospace text-right">€ <?=number_format($in["cost"], 0, ",", ".")?></td>
</tr>
</table>
<?php endif; ?>
@@ -109,19 +109,19 @@
<table class="table table-sm table-striped">
<tr>
<th class="text-right">Anzahl ausgehende Calls:</th>
<td class="text-monospace text-right"><?=number_format($in["count"], 0, ",", ".")?></td>
<td class="text-monospace text-right"><?=number_format($out["count"], 0, ",", ".")?></td>
</tr>
<tr>
<th class="text-right"h>Sekunden gesamt:</th>
<td class="text-monospace text-right"><?=number_format($in["seconds"], 0, ",", ".")?></td>
<td class="text-monospace text-right"><?=number_format($out["seconds"], 0, ",", ".")?></td>
</tr>
<tr>
<th class="text-right">Verrechenbare Minuten:</th>
<td class="text-monospace text-right"><?=number_format($in["billable"], 0, ",", ".")?></td>
<td class="text-monospace text-right"><?=number_format($out["billable"], 0, ",", ".")?></td>
</tr>
<tr>
<th class="text-right">Kosten:</th>
<td class="text-monospace text-right">€ <?=number_format($in["cost"], 0, ",", ".")?></td>
<td class="text-monospace text-right">€ <?=number_format($out["cost"], 0, ",", ".")?></td>
</tr>
</table>
<?php endif; ?>