Modifiche riepilogo totali stampa intervento
This commit is contained in:
parent
fa510903c3
commit
90b3906960
|
@ -411,24 +411,10 @@ $netto_a_pagare = abs($documento->netto);
|
||||||
|
|
||||||
$show_sconto = $sconto > 0;
|
$show_sconto = $sconto > 0;
|
||||||
|
|
||||||
$incorpora_iva = setting('Utilizza prezzi di vendita comprensivi di IVA');
|
|
||||||
|
|
||||||
// TOTALE COSTI FINALI
|
// TOTALE COSTI FINALI
|
||||||
if ($options['pricing']) {
|
if ($options['pricing']) {
|
||||||
if ($incorpora_iva) {
|
// Totale imponibile
|
||||||
// TOTALE INTERVENTO
|
echo '
|
||||||
echo '
|
|
||||||
<tr>
|
|
||||||
<td colspan="4" class="text-right">
|
|
||||||
<b>'.tr('Totale intervento', [], ['upper' => true]).':</b>
|
|
||||||
</td>
|
|
||||||
<th class="text-center">
|
|
||||||
<b>'.moneyFormat($totale, 2).'</b>
|
|
||||||
</th>
|
|
||||||
</tr>';
|
|
||||||
} else {
|
|
||||||
// Totale imponibile
|
|
||||||
echo '
|
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="4" class="text-right">
|
<td colspan="4" class="text-right">
|
||||||
<b>'.tr('Imponibile', [], ['upper' => true]).':</b>
|
<b>'.tr('Imponibile', [], ['upper' => true]).':</b>
|
||||||
|
@ -439,35 +425,35 @@ if ($options['pricing']) {
|
||||||
</th>
|
</th>
|
||||||
</tr>';
|
</tr>';
|
||||||
|
|
||||||
// Eventuale sconto totale
|
// Eventuale sconto totale
|
||||||
if ($show_sconto) {
|
if ($show_sconto) {
|
||||||
echo '
|
|
||||||
<tr>
|
|
||||||
<td colspan="4" class="text-right">
|
|
||||||
<b>'.tr('Sconto', [], ['upper' => true]).':</b>
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<th class="text-center">
|
|
||||||
<b>'.moneyFormat($sconto, 2).'</b>
|
|
||||||
</th>
|
|
||||||
</tr>';
|
|
||||||
|
|
||||||
// Totale imponibile
|
|
||||||
echo '
|
|
||||||
<tr>
|
|
||||||
<td colspan="4" class="text-right">
|
|
||||||
<b>'.tr('Totale imponibile', [], ['upper' => true]).':</b>
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<th class="text-center">
|
|
||||||
<b>'.moneyFormat($totale_imponibile, 2).'</b>
|
|
||||||
</th>
|
|
||||||
</tr>';
|
|
||||||
}
|
|
||||||
|
|
||||||
// IVA
|
|
||||||
// Totale intervento
|
|
||||||
echo '
|
echo '
|
||||||
|
<tr>
|
||||||
|
<td colspan="4" class="text-right">
|
||||||
|
<b>'.tr('Sconto', [], ['upper' => true]).':</b>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<th class="text-center">
|
||||||
|
<b>'.moneyFormat($sconto, 2).'</b>
|
||||||
|
</th>
|
||||||
|
</tr>';
|
||||||
|
|
||||||
|
// Totale imponibile
|
||||||
|
echo '
|
||||||
|
<tr>
|
||||||
|
<td colspan="4" class="text-right">
|
||||||
|
<b>'.tr('Totale imponibile', [], ['upper' => true]).':</b>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<th class="text-center">
|
||||||
|
<b>'.moneyFormat($totale_imponibile, 2).'</b>
|
||||||
|
</th>
|
||||||
|
</tr>';
|
||||||
|
}
|
||||||
|
|
||||||
|
// IVA
|
||||||
|
// Totale intervento
|
||||||
|
echo '
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="4" class="text-right">
|
<td colspan="4" class="text-right">
|
||||||
<b>'.tr('Iva', [], ['upper' => true]).':</b>
|
<b>'.tr('Iva', [], ['upper' => true]).':</b>
|
||||||
|
@ -478,8 +464,8 @@ if ($options['pricing']) {
|
||||||
</th>
|
</th>
|
||||||
</tr>';
|
</tr>';
|
||||||
|
|
||||||
// TOTALE INTERVENTO
|
// TOTALE INTERVENTO
|
||||||
echo '
|
echo '
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="4" class="text-right">
|
<td colspan="4" class="text-right">
|
||||||
<b>'.tr('Totale intervento', [], ['upper' => true]).':</b>
|
<b>'.tr('Totale intervento', [], ['upper' => true]).':</b>
|
||||||
|
@ -488,7 +474,6 @@ if ($options['pricing']) {
|
||||||
<b>'.moneyFormat($totale, 2).'</b>
|
<b>'.moneyFormat($totale, 2).'</b>
|
||||||
</th>
|
</th>
|
||||||
</tr>';
|
</tr>';
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
|
|
Loading…
Reference in New Issue