IDEMPIERE-963 callout problem in the Write-off Amount field / based on patch from Richard Morales

This commit is contained in:
Carlos Ruiz 2013-05-29 18:04:26 -05:00
parent ef037df1b1
commit f54b837d0e
2 changed files with 2 additions and 2 deletions

View File

@ -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
}
}

View File

@ -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
}
}