IDEMPIERE-963 callout problem in the Write-off Amount field / based on patch from Richard Morales
This commit is contained in:
parent
ef037df1b1
commit
f54b837d0e
|
@ -170,7 +170,7 @@ public class WNumberEditor extends WEditor implements ContextMenuListener
|
|||
|
||||
ValueChangeEvent changeEvent = new ValueChangeEvent(this, this.getColumnName(), oldValue, newValue);
|
||||
super.fireValueChange(changeEvent);
|
||||
oldValue = newValue;
|
||||
oldValue = getComponent().getValue(); // IDEMPIERE-963 - check again the value could be changed by callout
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -172,7 +172,7 @@ public class WStringEditor extends WEditor implements ContextMenuListener
|
|||
}
|
||||
ValueChangeEvent changeEvent = new ValueChangeEvent(this, this.getColumnName(), oldValue, newValue);
|
||||
super.fireValueChange(changeEvent);
|
||||
oldValue = newValue;
|
||||
oldValue = getComponent().getValue(); // IDEMPIERE-963 - check again the value could be changed by callout
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue