IDEMPIERE-3190:can't open info window if identifier field get wrong value

This commit is contained in:
hieplq 2016-09-09 22:46:25 +07:00
parent 10129bba55
commit 38fff8897c
1 changed files with 6 additions and 1 deletions

View File

@ -447,7 +447,12 @@ public class InfoWindow extends InfoPanel implements ValueChangeListener, EventL
isQueryByUser = true;
for (int i = 0; i < identifiers.size(); i++) {
WEditor editor = identifiers.get(i);
editor.setValue(queryValue);
try{
editor.setValue(queryValue);
}catch(Exception ex){
log.log(Level.SEVERE, "error", ex.getCause());
}
testCount(false);
if (m_count > 0) {
break;