mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-06-05 22:09:38 +02:00
Aumento cifre decimali a 4 in XML fattura elettronica
This commit is contained in:
@@ -590,7 +590,11 @@ class Validator
|
|||||||
// Operazioni di normalizzazione
|
// Operazioni di normalizzazione
|
||||||
// Formattazione decimali
|
// Formattazione decimali
|
||||||
if ($info['type'] == 'decimal') {
|
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
|
// Formattazione date
|
||||||
|
Reference in New Issue
Block a user