openstamanager/templates/riepilogo_interventi/bottom.php

21 lines
681 B
PHP
Raw Normal View History

2019-07-12 18:37:58 +02:00
<?php
include_once __DIR__.'/../../core.php';
$somma_imponibile = sum($somma_imponibile);
$somma_sconto = sum($somma_sconto);
$somma_totale_imponibile = sum($somma_totale_imponibile);
echo '
<tr>
<th width="5%" style="border-right: 0"></th>
<th class="text-right" style="border-left: 0;">
<b>'.tr('Totale', [], ['upper' => true]).':</b>
</th>
<th class="text-right">'.moneyFormat($somma_imponibile, 2).'</th>
<th class="text-right">'.moneyFormat($somma_sconto, 2).'</th>
<th class="text-right">'.moneyFormat($somma_totale_imponibile, 2).'</th>
</tr>
</tbody>
</table>';