Added sums to Invoice/Index

This commit is contained in:
Frank Schubert
2024-08-07 20:38:29 +02:00
parent df1904ec96
commit 3284b6c42f
4 changed files with 208 additions and 4 deletions

View File

@@ -125,16 +125,16 @@ $pagination_entity_name = "Billingrecords";
<table class="table table-sm table-striped table-bordered">
<tr>
<th class="text-right">Summe Rechnungen Periodisch:</th>
<td>€ <?=number_format($sum_price, 2, ",", ".")?></td>
<td class="text-monospace">€ <?=number_format($sum_price, 2, ",", ".")?></td>
</tr><tr>
<th class="text-right">Summe Rechnungen Einmalig:</th>
<td>€ <?=number_format($sum_price_setup, 2, ",", ".")?></td>
<td class="text-monospace">€ <?=number_format($sum_price_setup, 2, ",", ".")?></td>
</tr><tr>
<th class="text-right">Summe Gutschriften Periodisch:</th>
<td>€ <?=number_format($sum_credit_price, 2, ",", ".")?></td>
<td class="text-monospace">€ <?=number_format($sum_credit_price, 2, ",", ".")?></td>
</tr><tr>
<th class="text-right">Summe Gutschriften Einmalig:</th>
<td>€ <?=number_format($sum_credit_price_setup, 2, ",", ".")?></td>
<td class="text-monospace">€ <?=number_format($sum_credit_price_setup, 2, ",", ".")?></td>
</tr><tr>
<th></th>
<td></td>