Merge branch 'fronkdev' into 'master'

swapped in/out

See merge request fronk/thetool!1561
This commit is contained in:
Frank Schubert
2025-07-17 18:47:39 +00:00

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; ?>