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:
Diego Ruiz 2023-08-09 14:36:48 +02:00 committed by GitHub
parent f1a0f7aac1
commit 3791149ddc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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);