Fix per permettere valore 0 su impostazioni decimali per quantità e importi in stampa
This commit is contained in:
parent
7faaf50888
commit
0aebed89cf
|
@ -206,7 +206,7 @@ class SelectHandler implements HandlerInterface
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$element['text'] = empty($element['text']) ? $element['descrizione'] : $element['text'];
|
$element['text'] = ($element['text'] == "" || $element['text'] == null ) ? $element['descrizione'] : $element['text'];
|
||||||
|
|
||||||
if ($link == 'stampa') {
|
if ($link == 'stampa') {
|
||||||
$element['title'] = ' ';
|
$element['title'] = ' ';
|
||||||
|
|
Loading…
Reference in New Issue