Merge branch 'fronkdev' into 'master'

Billing/Index Sums

See merge request fronk/thetool!452
This commit is contained in:
Frank Schubert
2024-07-08 19:27:49 +00:00

View File

@@ -111,23 +111,22 @@ $pagination_entity_name = "Billingrecords";
</div>
</div>
<div class="row">
<div class="row justify-content-end">
<div class="col-4">
<div>
<h4>Summen</h4>
<table class="table table-striped table-bordered">
<table class="table table-sm table-striped table-bordered">
<tr>
<th class="text-right">Summe Rechnungen Periodisch:</th>
<td><?=$sum_price?></td>
<td><?=number_format($sum_price, 2, ",", ".")?></td>
</tr><tr>
<th class="text-right">Summe Rechnungen Einmalig:</th>
<td><?=$sum_price_setup?></td>
<td><?=number_format($sum_price_setup, 2, ",", ".")?></td>
</tr><tr>
<th class="text-right">Summe Gutschriften Periodisch:</th>
<td><?=$sum_credit_price?></td>
<td><?=number_format($sum_credit_price, 2, ",", ".")?></td>
</tr><tr>
<th class="text-right">Summe Gutschriften Einmalig:</th>
<td><?=$sum_credit_price_setup?></td>
<td><?=number_format($sum_credit_price_setup, 2, ",", ".")?></td>
</tr>
</table>