IDEMPIERE-3190:can't open info window if identifier field get wrong value
This commit is contained in:
parent
10129bba55
commit
38fff8897c
|
@ -447,7 +447,12 @@ public class InfoWindow extends InfoPanel implements ValueChangeListener, EventL
|
||||||
isQueryByUser = true;
|
isQueryByUser = true;
|
||||||
for (int i = 0; i < identifiers.size(); i++) {
|
for (int i = 0; i < identifiers.size(); i++) {
|
||||||
WEditor editor = identifiers.get(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);
|
testCount(false);
|
||||||
if (m_count > 0) {
|
if (m_count > 0) {
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue