mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-23 12:29:58 +01:00
fix: calcolo importazione fattura di acquisto quando il nodo ImportoTotaleDocumento non è valorizzato. quando
This commit is contained in:
parent
f7c28c9bc4
commit
f31fd3764f
@ -482,6 +482,10 @@ class FatturaOrdinaria extends FatturaElettronica
|
||||
}
|
||||
|
||||
$totale_documento = $this->getBody()['DatiGenerali']['DatiGeneraliDocumento']['ImportoTotaleDocumento'];
|
||||
if (empty($totale_documento)) {
|
||||
//se ImportoTotaleDocumento non è valorizzato recupero l'importo dal nodo ImportoPagamento
|
||||
$totale_documento = $this->getBody()['DatiPagamento']['DettaglioPagamento']['ImportoPagamento'];
|
||||
}
|
||||
$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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user