Corretto arrotondamento iva in stampa fattura
This commit is contained in:
parent
f915bf5102
commit
ffc5795477
|
@ -314,7 +314,7 @@ echo '
|
||||||
|
|
||||||
// Info per il footer
|
// Info per il footer
|
||||||
$imponibile = sum($imponibile);
|
$imponibile = sum($imponibile);
|
||||||
$iva = sum($iva, null, 2) + $records[0]['iva_rivalsainps'];
|
$iva = sum($iva, 0) + $records[0]['iva_rivalsainps'];
|
||||||
$sconto = sum($sconto);
|
$sconto = sum($sconto);
|
||||||
|
|
||||||
$totale = $imponibile + $iva - $sconto + $records[0]['rivalsainps'];
|
$totale = $imponibile + $iva - $sconto + $records[0]['rivalsainps'];
|
||||||
|
|
Loading…
Reference in New Issue