IDEMPIERE-2079 2Pack problem exporting/importing translation tabs

This commit is contained in:
Carlos Ruiz 2014-07-18 19:11:47 -05:00
parent 5176931fc1
commit 6953754984
1 changed files with 3 additions and 1 deletions

View File

@ -159,10 +159,12 @@ public class GridTab2PackExporter implements IGridTabExporter {
/**
* {@inheritDoc}
* With 2Pack, everry tab is support to export
* With 2Pack, just trl tabs are not intended to be exported (they are exported as translation
*/
@Override
public boolean isExportableTab(GridTab gridTab) {
if (gridTab.getTableName().toLowerCase().endsWith("_trl"))
return false;
return true;
}
}