Fix #608
This commit is contained in:
parent
0c597e2697
commit
f018728b5a
|
@ -9,7 +9,7 @@ $v_totale = [];
|
||||||
$autofill = new \Util\Autofill(5, 40);
|
$autofill = new \Util\Autofill(5, 40);
|
||||||
$rows_per_page = $fattura_accompagnatoria ? 15 : 20;
|
$rows_per_page = $fattura_accompagnatoria ? 15 : 20;
|
||||||
if (!empty($options['last-page-footer'])) {
|
if (!empty($options['last-page-footer'])) {
|
||||||
$rows_per_page += 10;
|
$rows_per_page += 7;
|
||||||
}
|
}
|
||||||
$autofill->setRows($rows_per_page);
|
$autofill->setRows($rows_per_page);
|
||||||
|
|
||||||
|
|
|
@ -262,13 +262,13 @@ if (!empty($record['ritenutaacconto']) || !empty($documento->totale_ritenuta_con
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class="cell-padded text-center" colspan="'.$first_colspan.'">
|
<td class="cell-padded text-center" colspan="'.$first_colspan.'">
|
||||||
'.moneyFormat(abs($documento->ritenuta_acconto) + $documento->totale_ritenuta_contributi, 2).'
|
'.moneyFormat(abs($documento->ritenuta_acconto) + abs($documento->totale_ritenuta_contributi), 2).'
|
||||||
</td>';
|
</td>';
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
|
|
||||||
<td class="cell-padded text-center" colspan="'.$second_colspan.'">
|
<td class="cell-padded text-center" colspan="'.$second_colspan.'">
|
||||||
'.moneyFormat($totale - abs($documento->ritenuta_acconto) - $documento->totale_ritenuta_contributi, 2).'
|
'.moneyFormat($netto_a_pagare, 2).'
|
||||||
</td>
|
</td>
|
||||||
</tr>';
|
</tr>';
|
||||||
}
|
}
|
||||||
|
@ -281,7 +281,7 @@ if (!empty($record['split_payment'])) {
|
||||||
echo '
|
echo '
|
||||||
<tr>
|
<tr>
|
||||||
<th class="text-center small" colspan="'.$first_colspan.'">
|
<th class="text-center small" colspan="'.$first_colspan.'">
|
||||||
'.tr('iva a carico del destinatario', [], ['upper' => true]).'
|
'.tr('IVA a carico del destinatario', [], ['upper' => true]).'
|
||||||
</th>
|
</th>
|
||||||
|
|
||||||
<th class="text-center small" colspan="'.$second_colspan.'">
|
<th class="text-center small" colspan="'.$second_colspan.'">
|
||||||
|
@ -296,7 +296,7 @@ if (!empty($record['split_payment'])) {
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td class="cell-padded text-center" colspan="'.$second_colspan.'">
|
<td class="cell-padded text-center" colspan="'.$second_colspan.'">
|
||||||
'.moneyFormat($totale - $totale_iva - abs($documento->ritenuta_acconto) - $documento->totale_ritenuta_contributi, 2).'
|
'.moneyFormat($netto_a_pagare, 2).'
|
||||||
</td>
|
</td>
|
||||||
</tr>';
|
</tr>';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue