1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-01-23 20:30:51 +01:00

Corretto arrotondamento iva in stampa fattura

This commit is contained in:
Fabio Lovato 2018-06-15 16:40:19 +02:00
parent f915bf5102
commit ffc5795477

View File

@ -314,7 +314,7 @@ echo '
// Info per il footer
$imponibile = sum($imponibile);
$iva = sum($iva, null, 2) + $records[0]['iva_rivalsainps'];
$iva = sum($iva, 0) + $records[0]['iva_rivalsainps'];
$sconto = sum($sconto);
$totale = $imponibile + $iva - $sconto + $records[0]['rivalsainps'];