IDEMPIERE-5567 Insert Log not being created - fix wrong parenthesis (#2212)
This commit is contained in:
parent
b5efecc282
commit
2b785e3900
|
@ -3692,9 +3692,9 @@ public abstract class PO
|
||||||
&& !"Password".equals(p_info.getColumnName(i))
|
&& !"Password".equals(p_info.getColumnName(i))
|
||||||
&& (insertLog.equalsIgnoreCase("Y")
|
&& (insertLog.equalsIgnoreCase("Y")
|
||||||
|| (insertLog.equalsIgnoreCase("K")
|
|| (insertLog.equalsIgnoreCase("K")
|
||||||
&& ( p_info.getColumn(i).IsKey)
|
&& ( p_info.getColumn(i).IsKey
|
||||||
|| ( !p_info.hasKeyColumn()
|
|| ( !p_info.hasKeyColumn()
|
||||||
&& p_info.getColumn(i).ColumnName.equals(PO.getUUIDColumnName(p_info.getTableName())))))
|
&& p_info.getColumn(i).ColumnName.equals(PO.getUUIDColumnName(p_info.getTableName()))))))
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
// change log on new
|
// change log on new
|
||||||
|
|
Loading…
Reference in New Issue