IDEMPIERE-2613 Process saved params doesn't update Display and ReadOnly Logics

This commit is contained in:
Carlos Ruiz 2015-06-03 10:31:34 -05:00
parent e2844a9c63
commit 476c843c98
1 changed files with 1 additions and 3 deletions

View File

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