IDEMPIERE-5148 PackOut DataSingle for Column doesn't create the column in the target database (#1126)
This commit is contained in:
parent
5cebb50f58
commit
327b32dc53
|
@ -185,6 +185,10 @@ public class GenericPOElementHandler extends AbstractElementHandler {
|
||||||
addTypeName(atts, "table");
|
addTypeName(atts, "table");
|
||||||
document.startElement("","", tableName, atts);
|
document.startElement("","", tableName, atts);
|
||||||
PoExporter filler = new PoExporter(ctx, document, po);
|
PoExporter filler = new PoExporter(ctx, document, po);
|
||||||
|
if (MColumn.Table_Name.equals(po.get_TableName())) {
|
||||||
|
filler.addString("IsSyncDatabase", "Y", new AttributesImpl());
|
||||||
|
excludes.add("IsSyncDatabase");
|
||||||
|
}
|
||||||
filler.export(excludes, true);
|
filler.export(excludes, true);
|
||||||
ctx.packOut.getCtx().ctx.put("Table_Name",tableName);
|
ctx.packOut.getCtx().ctx.put("Table_Name",tableName);
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue