IDEMPIERE-1297 2Pack: Remove code for the lookup of record and reference using business key. Fixed regression.
This commit is contained in:
parent
93972b9c6e
commit
cb926b2119
|
@ -312,7 +312,7 @@ public class ColumnElementHandler extends AbstractElementHandler {
|
|||
filler.add("AD_Column_ID", new AttributesImpl());
|
||||
|
||||
filler.addString("IsSyncDatabase", "Y", new AttributesImpl());
|
||||
filler.addTableReference("AD_Table_ID", "TableName", new AttributesImpl());
|
||||
filler.addTableReference("AD_Table_ID", "AD_Table", new AttributesImpl());
|
||||
filler.addTableReference("AD_Reference_Value_ID", "AD_Reference", new AttributesImpl());
|
||||
|
||||
excludes.add("IsSyncDatabase");
|
||||
|
|
|
@ -197,8 +197,8 @@ public class PoExporter {
|
|||
if (!preservedOrg)
|
||||
addString("AD_Org_ID", "@AD_Org_ID@", new AttributesImpl());
|
||||
else {
|
||||
addTableReference(X_AD_Client.Table_Name, "Value", new AttributesImpl());
|
||||
addTableReference(X_AD_Org.Table_Name, "Value", new AttributesImpl());
|
||||
addTableReference("AD_Client_ID", X_AD_Client.Table_Name, new AttributesImpl());
|
||||
addTableReference("AD_Org_ID", X_AD_Org.Table_Name, new AttributesImpl());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue