Fix minore

This commit is contained in:
Thomas Zilio 2020-02-14 17:04:34 +01:00
parent 6d44051eb3
commit 0fdbdc559e
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ switch (post('op')) {
$xml = \Util\XML::read($fattura->getXML());
$dati_generali = $xml['FatturaElettronicaBody']['DatiGenerali']['DatiGeneraliDocumento'];
$totale_documento = ($fattura->isNota()) ? -abs(floatval($dati_generali['ImportoTotaleDocumento'])) : abs(floatval($dati_generali['ImportoTotaleDocumento'])) ?: null;
$totale_documento = $fattura->isNota() ? -abs(floatval($dati_generali['ImportoTotaleDocumento'])) : abs(floatval($dati_generali['ImportoTotaleDocumento']));
} catch (Exception $e) {
$totale_documento = null;
}