Merge branch 'master' of https://github.com/devcode-it/openstamanager
This commit is contained in:
commit
87019796a8
|
@ -481,9 +481,9 @@ class FatturaOrdinaria extends FatturaElettronica
|
|||
$imposta_riepilogo += $riepilogo['Imposta'];
|
||||
}
|
||||
|
||||
$totale_documento = $this->getBody()['DatiGenerali']['DatiGeneraliDocumento']['ImportoTotaleDocumento'];
|
||||
$differenza_iva = round(abs($fattura->iva) - abs($imposta_riepilogo), 2);
|
||||
$diff = round(abs($fattura->totale_imponibile + abs($imposta_riepilogo) + $fattura->rivalsa_inps) - abs($totale_documento), 2);
|
||||
$totale_documento = $this->getBody()['DatiGenerali']['DatiGeneraliDocumento']['ImportoTotaleDocumento'] ?? 0;
|
||||
$differenza_iva = round(abs($fattura->iva ?? 0) - abs($imposta_riepilogo ?? 0), 2);
|
||||
$diff = round(abs(($fattura->totale_imponibile ?? 0) + (abs($imposta_riepilogo ?? 0)) + ($fattura->rivalsa_inps ?? 0)) - abs($totale_documento), 2);
|
||||
|
||||
$iva_arrotondamento = database()->fetchOne('SELECT * FROM `co_iva` WHERE `percentuale`= 0 AND `deleted_at` IS NULL LIMIT 1');
|
||||
if ($diff || $differenza_iva) {
|
||||
|
|
Loading…
Reference in New Issue