IDEMPIERE-5824 - Fixed wrong entity type is set when creating a tab in an existing window using the Create Window, Tab & Field from Table process (#1968)
This commit is contained in:
parent
f1a0f7aac1
commit
3791149ddc
|
@ -173,6 +173,7 @@ public class CreateWindowFromTable extends SvrProcess
|
||||||
}
|
}
|
||||||
|
|
||||||
MTab tab = new MTab(window);
|
MTab tab = new MTab(window);
|
||||||
|
tab.setEntityType(entityType);
|
||||||
tab.setSeqNo(tabSeqNo);
|
tab.setSeqNo(tabSeqNo);
|
||||||
tab.setName(table.getName());
|
tab.setName(table.getName());
|
||||||
tab.setAD_Table_ID(p_AD_Table_ID);
|
tab.setAD_Table_ID(p_AD_Table_ID);
|
||||||
|
|
Loading…
Reference in New Issue