mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-08 07:38:54 +01:00
Aumento cifre decimali a 4 in XML fattura elettronica
This commit is contained in:
parent
e67eb7e08e
commit
f1d311d25e
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user