diff --git a/entity/Attribute_entity/entityfields/attributeactions/children/newchildattribute/onActionProcess.js b/entity/Attribute_entity/entityfields/attributeactions/children/newchildattribute/onActionProcess.js index 1ec2bc6c8d7639880db01b7e9d2bb1fa1794cda7..8eaaf95dc4bca242b13fa05f1901a7543e03a4d6 100644 --- a/entity/Attribute_entity/entityfields/attributeactions/children/newchildattribute/onActionProcess.js +++ b/entity/Attribute_entity/entityfields/attributeactions/children/newchildattribute/onActionProcess.js @@ -10,5 +10,7 @@ if (vars.exists("$local.rows")) var type = row[0].ATTRIBUTE_TYPE.trim(); if (type == $AttributeTypes.GROUP || type == $AttributeTypes.COMBO) params["attrParentId_param"] = row[0].AB_ATTRIBUTEID; + else if (row[0].ATTRIBUTE_PARENT_ID) + params["attrParentId_param"] = row[0].ATTRIBUTE_PARENT_ID; } neon.openContext("Attribute", null, null, neon.OPERATINGSTATE_NEW, params); \ No newline at end of file diff --git a/entity/Attribute_entity/entityfields/full_attribute_name/valueProcess.js b/entity/Attribute_entity/entityfields/full_attribute_name/valueProcess.js index 40820d463337ab8ae4c656ed49bc07256a59c571..bbb180a80e100e25ffa17f9f5772f3bc40c53aa5 100644 --- a/entity/Attribute_entity/entityfields/full_attribute_name/valueProcess.js +++ b/entity/Attribute_entity/entityfields/full_attribute_name/valueProcess.js @@ -2,4 +2,5 @@ import("system.vars"); import("system.result"); import("Attribute_lib"); -result.string(AttributeUtil.getFullAttributeName(vars.get("$field.AB_ATTRIBUTEID"))); +var parentName = AttributeUtil.getFullAttributeName(vars.get("$field.ATTRIBUTE_PARENT_ID")); +result.string((parentName ? parentName + " / " : "") + vars.get("$field.ATTRIBUTE_NAME")); diff --git a/others/db_changes/data_alias/basic/2019.2/AttributeKeyword.xml b/others/db_changes/data_alias/basic/2019.2/AttributeKeyword.xml index 9e0b5a7112973263fbffaa25761aa8e5b95f23b6..f409c3f08ab75ece812100f50d3dd64068127305 100644 --- a/others/db_changes/data_alias/basic/2019.2/AttributeKeyword.xml +++ b/others/db_changes/data_alias/basic/2019.2/AttributeKeyword.xml @@ -13,5 +13,8 @@ <addColumn tableName="AB_ATTRIBUTERELATION"> <column name="MEMO_VALUE" type="NCLOB"/> </addColumn> + <createIndex indexName="IDX_ATTRPARENT" tableName="AB_ATTRIBUTE"> + <column name="ATTRIBUTE_PARENT_ID"/> + </createIndex> </changeSet> </databaseChangeLog> \ No newline at end of file diff --git a/process/Attribute_lib/process.js b/process/Attribute_lib/process.js index 010f064aef2e1a8bfc867c756aae7b2065b5b58a..bc1a40ea598397c16c6f2507c697da2a19ec276e 100644 --- a/process/Attribute_lib/process.js +++ b/process/Attribute_lib/process.js @@ -64,6 +64,8 @@ AttributeUtil.getPossibleAttributes = function (pObjectType, pIncludeGroups, pFi */ AttributeUtil.getFullAttributeName = function (pAttributeId) { + if (!pAttributeId) + return ""; var attributeNames = []; var attribute; var idType = SqlUtils.getSingleColumnType("AB_ATTRIBUTE.AB_ATTRIBUTEID");