IDEMPIERE-967: Issue with Quick Entry editor when a checkbox is added as a QuickEntry field

This commit is contained in:
Deepak Pansheriya 2013-05-28 15:09:38 +05:30
parent 013d5c4fd4
commit abd6335c97
1 changed files with 1 additions and 1 deletions

View File

@ -345,7 +345,7 @@ public class WQuickEntry extends Window implements EventListener<Event>, ValueCh
boolean changed = (value != null && initialValue == null)
|| (value == null && initialValue != null)
|| (value != null && initialValue != null && value != initialValue);
|| (value != null && initialValue != null && !value.equals(initialValue));
boolean thisMandatoryError = false;
if (field.isMandatory(true)) {