IDEMPIERE-1068 Information in QuickEntry window isn't displayed as it is in ADWindow
This commit is contained in:
parent
af6e216036
commit
f84d93036b
|
@ -301,8 +301,12 @@ public class WQuickEntry extends Window implements EventListener<Event>, ValueCh
|
||||||
int idxt = quickTabs.indexOf(field.getGridTab());
|
int idxt = quickTabs.indexOf(field.getGridTab());
|
||||||
PO po = quickPOs.get(idxt);
|
PO po = quickPOs.get(idxt);
|
||||||
Object value = po.get_Value(field.getColumnName());
|
Object value = po.get_Value(field.getColumnName());
|
||||||
editor.setValue(value);
|
if (value != null) {
|
||||||
field.setValue(value, false);
|
editor.setValue(value);
|
||||||
|
field.setValue(value, false);
|
||||||
|
} else {
|
||||||
|
editor.dynamicDisplay();
|
||||||
|
}
|
||||||
initialValues.add(editor.getValue());
|
initialValues.add(editor.getValue());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue