1003424 2Pack failed to export C_ValidCombination (Account) field correctly. IDEMPIERE-1508

This commit is contained in:
Heng Sin Low 2013-11-04 23:05:38 +08:00
parent 860a0a615d
commit 5718de9d93
1 changed files with 3 additions and 0 deletions

View File

@ -263,6 +263,9 @@ public class PoExporter {
tableName = lookupColumn.substring(0, lookupColumn.indexOf("."));
}
addTableReference(columnName, tableName, new AttributesImpl());
} else if (DisplayType.Account == displayType) {
String tableName = "C_ValidCombination";
addTableReference(columnName, tableName, new AttributesImpl());
} else if (DisplayType.isLOB(displayType)) {
addBlob(columnName);
} else if (columnName.equals(po.getUUIDColumnName()) && po.get_Value(columnName) == null) {