IDEMPIERE-967: Issue with Quick Entry editor when a checkbox is added as a QuickEntry field
This commit is contained in:
parent
013d5c4fd4
commit
abd6335c97
|
@ -345,7 +345,7 @@ public class WQuickEntry extends Window implements EventListener<Event>, ValueCh
|
||||||
|
|
||||||
boolean changed = (value != null && initialValue == null)
|
boolean changed = (value != null && initialValue == null)
|
||||||
|| (value == null && initialValue != null)
|
|| (value == null && initialValue != null)
|
||||||
|| (value != null && initialValue != null && value != initialValue);
|
|| (value != null && initialValue != null && !value.equals(initialValue));
|
||||||
|
|
||||||
boolean thisMandatoryError = false;
|
boolean thisMandatoryError = false;
|
||||||
if (field.isMandatory(true)) {
|
if (field.isMandatory(true)) {
|
||||||
|
|
Loading…
Reference in New Issue