IDEMPIERE-2613 Process saved params doesn't update Display and ReadOnly Logics
This commit is contained in:
parent
e2844a9c63
commit
476c843c98
|
@ -485,8 +485,6 @@ public class ProcessParameterPanel extends Panel implements
|
|||
for ( int i = 0; i<params.length; i++)
|
||||
{
|
||||
MPInstancePara para = params[i];
|
||||
para.getParameterName();
|
||||
|
||||
if ( mField.getColumnName().equals(para.getParameterName()) )
|
||||
{
|
||||
|
||||
|
@ -516,7 +514,7 @@ public class ProcessParameterPanel extends Panel implements
|
|||
}
|
||||
}
|
||||
if (editor.getValue() != null) {
|
||||
ValueChangeEvent changeEvent = new ValueChangeEvent(editor, editor.getColumnName(), editor.getValue(), null);
|
||||
ValueChangeEvent changeEvent = new ValueChangeEvent(editor, editor.getColumnName(), null, editor.getValue());
|
||||
valueChange(changeEvent);
|
||||
// Note that the second editor2 in ranges has no event verification
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue