IDEMPIERE-249 changes in ProcessParameterPanel introduced bug in ProcessParameter
This commit is contained in:
parent
2277fec784
commit
e3591ca8a7
|
@ -209,7 +209,7 @@ public class ProcessParameter extends CDialog
|
||||||
if (Env.isBaseLanguage(Env.getCtx(), "AD_Process_Para"))
|
if (Env.isBaseLanguage(Env.getCtx(), "AD_Process_Para"))
|
||||||
sql = "SELECT p.Name, p.Description, p.Help, "
|
sql = "SELECT p.Name, p.Description, p.Help, "
|
||||||
+ "p.AD_Reference_ID, p.AD_Process_Para_ID, "
|
+ "p.AD_Reference_ID, p.AD_Process_Para_ID, "
|
||||||
+ "p.FieldLength, p.IsMandatory, p.IsRange, p.ColumnName, p.ReadOnlyLogic, p.DisplayLogic, "
|
+ "p.FieldLength, p.IsMandatory, p.IsRange, p.ColumnName, p.ReadOnlyLogic, p.DisplayLogic, p.IsEncrypted, "
|
||||||
+ "p.DefaultValue, p.DefaultValue2, p.VFormat, p.ValueMin, p.ValueMax, "
|
+ "p.DefaultValue, p.DefaultValue2, p.VFormat, p.ValueMin, p.ValueMax, "
|
||||||
+ "p.SeqNo, p.AD_Reference_Value_ID, vr.Code AS ValidationCode "
|
+ "p.SeqNo, p.AD_Reference_Value_ID, vr.Code AS ValidationCode "
|
||||||
+ "FROM AD_Process_Para p"
|
+ "FROM AD_Process_Para p"
|
||||||
|
@ -220,7 +220,7 @@ public class ProcessParameter extends CDialog
|
||||||
else
|
else
|
||||||
sql = "SELECT t.Name, t.Description, t.Help, "
|
sql = "SELECT t.Name, t.Description, t.Help, "
|
||||||
+ "p.AD_Reference_ID, p.AD_Process_Para_ID, "
|
+ "p.AD_Reference_ID, p.AD_Process_Para_ID, "
|
||||||
+ "p.FieldLength, p.IsMandatory, p.IsRange, p.ColumnName, p.ReadOnlyLogic, p.DisplayLogic, "
|
+ "p.FieldLength, p.IsMandatory, p.IsRange, p.ColumnName, p.ReadOnlyLogic, p.DisplayLogic, p.IsEncrypted, "
|
||||||
+ "p.DefaultValue, p.DefaultValue2, p.VFormat, p.ValueMin, p.ValueMax, "
|
+ "p.DefaultValue, p.DefaultValue2, p.VFormat, p.ValueMin, p.ValueMax, "
|
||||||
+ "p.SeqNo, p.AD_Reference_Value_ID, vr.Code AS ValidationCode "
|
+ "p.SeqNo, p.AD_Reference_Value_ID, vr.Code AS ValidationCode "
|
||||||
+ "FROM AD_Process_Para p"
|
+ "FROM AD_Process_Para p"
|
||||||
|
|
Loading…
Reference in New Issue