mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-17 03:51:06 +01:00
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') {
|
||||
$element['title'] = ' ';
|
||||
|
Loading…
x
Reference in New Issue
Block a user