Calcolo arrotondamento sull'imponibile FE se presente
This commit is contained in:
parent
587e43cae2
commit
60dbabf7b7
|
@ -320,8 +320,13 @@ class FatturaOrdinaria extends FatturaElettronica
|
||||||
$fattura->refresh();
|
$fattura->refresh();
|
||||||
|
|
||||||
// Arrotondamenti differenti nella fattura XML
|
// Arrotondamenti differenti nella fattura XML
|
||||||
$totali_righe = array_column($righe, 'PrezzoTotale');
|
$dati_riepilogo = $this->getBody()['DatiBeniServizi']['DatiRiepilogo'];
|
||||||
$totale_righe = sum($totali_righe, null, 2);
|
if (!empty($dati_riepilogo['ImponibileImporto'])) {
|
||||||
|
$totale_righe = $dati_riepilogo['ImponibileImporto'];
|
||||||
|
} else {
|
||||||
|
$totali_righe = array_column($righe, 'PrezzoTotale');
|
||||||
|
$totale_righe = sum($totali_righe, null, 2);
|
||||||
|
}
|
||||||
|
|
||||||
$diff = round(abs($totale_righe) - abs($fattura->totale_imponibile), 2);
|
$diff = round(abs($totale_righe) - abs($fattura->totale_imponibile), 2);
|
||||||
if (!empty($diff)) {
|
if (!empty($diff)) {
|
||||||
|
|
Loading…
Reference in New Issue