From 0fdbdc559e3c27d67e45d7a3256be6363945bdd3 Mon Sep 17 00:00:00 2001 From: Thomas Zilio Date: Fri, 14 Feb 2020 17:04:34 +0100 Subject: [PATCH] Fix minore --- modules/fatture/actions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/fatture/actions.php b/modules/fatture/actions.php index bc586bc39..17ff0115d 100755 --- a/modules/fatture/actions.php +++ b/modules/fatture/actions.php @@ -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; }