diff --git a/plugins/exportFE/src/Validator.php b/plugins/exportFE/src/Validator.php index 43046b34b..5b1d210fb 100644 --- a/plugins/exportFE/src/Validator.php +++ b/plugins/exportFE/src/Validator.php @@ -590,7 +590,11 @@ class Validator // Operazioni di normalizzazione // Formattazione decimali if ($info['type'] == 'decimal') { - $output = number_format($output, 2, '.', ''); + if( in_array($key, array('Quantita', 'PrezzoUnitario', 'PrezzoTotale')) ){ + $output = number_format($output, 4, '.', ''); + } else { + $output = number_format($output, 2, '.', ''); + } } // Formattazione date