Skip to content
Snippets Groups Projects
Commit 47d8c6e3 authored by Johannes Goderbauer's avatar Johannes Goderbauer
Browse files

[Projekt: Entwicklung - Neon][TicketNr.: 1032312][Keywords für bestehende Module anlegen]

-> getPropForKey
parent dc3d5347
No related branches found
No related tags found
No related merge requests found
......@@ -2,9 +2,13 @@ import("system.vars");
import("system.result");
import("system.neon");
import("Keyword_lib");
import("KeywordRegistry_basic");
var category = vars.getString("$field.CATEGORY");
var kwd = LegacyKeywordUtils.createKeyword("ACTIVITY.CATEGORY");//getPropForKey
var icon = kwd.getPropForKey(category, "defaultAvatarRepresentation", true);
var icon;
if (category)
{
var keywordAttributes = KeywordUtils.getAttributeRelationsByKey(category, $KeywordRegistry.activityCategory())
icon = keywordAttributes.defaultAvatarRepresentation;
}
result.string(icon || "NEON:HISTORY");
import("Keyword_lib");
import("KeywordRegistry_basic");
import("system.vars");
import("system.result");
import("system.neon");
var medium, contentType;
//TODO: add constants for contentTypes #1022547
medium = vars.get("$field.MEDIUM_ID");
if (medium){
contentType = LegacyKeywordUtils.createKeyword("COMMUNICATION.MEDIUM").getPropForKey(medium, "contentType", true) || "TEXT";
var medium = vars.get("$field.MEDIUM_ID");
var contentType;
if (medium)
{
var keywordAttributes = KeywordUtils.getAttributeRelationsByKey(medium, $KeywordRegistry.communicationMedium());
contentType = keywordAttributes.contentType;
}
else {
contentType = "TEXT";
}
result.string(contentType);
result.string(contentType || "TEXT");
\ No newline at end of file
......@@ -7,13 +7,17 @@ import("Keyword_lib");
import("Communication_lib");
import("Util_lib");
import("Entity_lib");
import("KeywordRegistry_basic");
var kwd = LegacyKeywordUtils.createKeyword("COMMUNICATION.MEDIUM");
var commMedium = vars.get("$field.MEDIUM_ID");
var commCategory = kwd.getPropForKey(commMedium, "contentType", true);//TODO: maybe accessible via $property - then it's not needed to keep this information within the keyword
//TODO: maybe accessible via $property - then it's not needed to load that info twice
var keywordAttributes = KeywordUtils.getAttributeRelationsByKey(commMedium, $KeywordRegistry.communicationMedium());
var commCategory = keywordAttributes.contentType || "TEXT";
var fn = CommValidationUtil.makeValidationFn(commCategory);
if (fn != null){
if (fn != null)
{
var commAddr = ProcessHandlingUtils.getOnValidationValue(vars.get("$field.ADDR"));
var additional = CommValidationUtil.getExtensionsBlueprint();
additional.countryCode = vars.get("$param.ContactsMainCountry_param");//TODO: try to use users language first and then the companies
......
......@@ -2,9 +2,11 @@ import("system.vars");
import("system.result");
import("system.neon");
import("Keyword_lib");
import("KeywordRegistry_basic");
var category = vars.getString("$field.PRIORITY");
var kwd = LegacyKeywordUtils.createKeyword("TASK.PRIORITY");
var icon = kwd.getPropForKey(category, "defaultAvatarRepresentation", true);
var keywordAttributes = KeywordUtils.getAttributeRelationsByKey(category, $KeywordRegistry.taskPriority());
var icon = keywordAttributes.defaultAvatarRepresentation;
result.string(icon || "VAADIN:TASKS");
\ No newline at end of file
......@@ -22,7 +22,7 @@ function CommUtil(){}
*/
CommUtil.getMediumIdsByCategory = function (pCategory)
{
var kwd = LegacyKeywordUtils.createKeyword("COMMUNICATION.MEDIUM");
var kwd = LegacyKeywordUtils.createKeyword("COMMUNICATION.MEDIUM");//filter keyword on category
kwd.filter(function(id, name, customs){
return customs.category == pCategory;
});
......
......@@ -62,14 +62,45 @@ KeywordUtils.getViewValue = function(keywordContainer, key)
* @return {Object} key-value-pair of the keyword-attributes; contains all attribute-keys for the keywords-entries container;
* if there is no value set for a key the null-value is given
*/
KeywordUtils.getKeywordAttributeRelations = function (pEntryId)
KeywordUtils.getAttributeRelationsByEntryId = function(pEntryId)
{
var sql = SqlCondition.begin()
.andPrepare("AB_KEYWORD_ENTRY.AB_KEYWORD_ENTRYID", pEntryId)
.buildSql("select AB_KEYWORD_ATTRIBUTE.NAME, AB_KEYWORD_ATTRIBUTE.TYPE, \n\
var cond = SqlCondition.begin()
.andPrepare("AB_KEYWORD_ENTRY.AB_KEYWORD_ENTRYID", pEntryId);
return KeywordUtils._getKeywordAttributeRelations(cond);
};
/**
* collects possible and defined keyword-attributes per keyword entry and returns them
*
* @param {String} pKeyId the key of an element within a containerName - this is the value that is stored in the reference-table (e.g. "DE")
* @param {String} pContainerName specifies the type of the keyword and therefore the list elements;
* e.g. "COUNTRY"; use an entry of the $KeywordRegistry here
* @return {Object} key-value-pair of the keyword-attributes; contains all attribute-keys for the keywords-entries container;
* if there is no value set for a key the null-value is given
*/
KeywordUtils.getAttributeRelationsByKey = function(pKeyId, pContainerName)
{
var cond = SqlCondition.begin()
.andPrepare("AB_KEYWORD_ENTRY.KEYID", pKeyId)
.andPrepare("AB_KEYWORD_ENTRY.CONTAINER", pContainerName);
return KeywordUtils._getKeywordAttributeRelations(cond);
};
/**
* internal function that collects possible and defined keyword-attributes per keyword entry and returns them
*
* @param {SqlCondition} pSqlCondition condition that shrinks a resultset to one AB_KEYWORD_ENTRY
* @return {Object} SQL-Condition object that filters
*/
KeywordUtils._getKeywordAttributeRelations = function (pSqlCondition)
{
var cond = pSqlCondition;
var sql = cond.buildSql("select AB_KEYWORD_ATTRIBUTE.NAME, AB_KEYWORD_ATTRIBUTE.TYPE, \n\
AB_KEYWORD_ATTRIBUTERELATION.CHAR_VALUE, AB_KEYWORD_ATTRIBUTERELATION.NUMBER_VALUE, AB_KEYWORD_ATTRIBUTERELATION.BOOL_VALUE \n\
from AB_KEYWORD_ENTRY \n\
left join AB_KEYWORD_ATTRIBUTE on (AB_KEYWORD_ATTRIBUTE.CONTAINER = AB_KEYWORD_ENTRY.CONTAINER) \n\
join AB_KEYWORD_ATTRIBUTE on (AB_KEYWORD_ATTRIBUTE.CONTAINER = AB_KEYWORD_ENTRY.CONTAINER) \n\
left join AB_KEYWORD_ATTRIBUTERELATION \n\
on (AB_KEYWORD_ATTRIBUTERELATION.AB_KEYWORD_ATTRIBUTE_ID = AB_KEYWORD_ATTRIBUTE.AB_KEYWORD_ATTRIBUTEID\n\
and AB_KEYWORD_ATTRIBUTERELATION.AB_KEYWORD_ENTRY_ID = AB_KEYWORD_ENTRY.AB_KEYWORD_ENTRYID)");
......
......@@ -133,7 +133,7 @@ OrgUtils.openOrgReport = function(pOrgId)
histData.forEach(function (row)
{
row[0] = datetime.toDate(row[0], dateFormat);
row[1] = LegacyKeywordUtils.getViewValue($KeywordRegistry.activityCategory(), row[1]);
row[1] = KeywordUtils.getViewValue($KeywordRegistry.activityCategory(), row[1]);
_joinArrayVals(row, 2, 2);
});
histData = ReportData.begin(["ENTRYDATE", "MEDIUM", "LOGIN", "INFO"]).add(histData);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment