Skip to content
Snippets Groups Projects
Commit 36c129d9 authored by Johannes Hörmann's avatar Johannes Hörmann Committed by Sophia Leierseder
Browse files

lib fixes

parent 411c46dd
No related branches found
No related tags found
No related merge requests found
......@@ -357,7 +357,7 @@ ContextUtils.getNameSubselectSql = function(pContextIdDbField, pRowIdDbField)
var selectMap = ContextUtils.getSelectMap ()
for (let contextId in selectMap)
{
select += "when '" + contextId + "' then (select " + selectMap[contextId].titleExpression + " from " + selectMap[contextId].getFullFromClause() + (pRowIdDbField ? " where " + selectMap[pContextId].getFullIdField() + " = " + pRowIdDbField : " ") + ") ";
select += "when '" + contextId + "' then (select " + selectMap[contextId].titleExpression + " from " + selectMap[contextId].getFullFromClause() + (pRowIdDbField ? " where " + selectMap[contextId].getFullIdField() + " = " + pRowIdDbField : " ") + ") ";
}
select += "else 'Not defined in ContextUtils.getNameSql()!'";
......
......@@ -257,6 +257,17 @@ function KeywordAttribute(pContainerName, pAttributeName)
this.dbField = this.type.trim();
}
KeywordAttribute.prototype.getValue = function(pKeyId)
{
var sql = SqlCondition.begin()
.andPrepare("AB_KEYWORD_ENTRY.CONTAINER", this.container)
.andPrepare("AB_KEYWORD_ATTRIBUTERELATION.AB_KEYWORD_ATTRIBUTE_ID", this.id)
.andPrepare("AB_KEYWORD_ENTRY.KEYID", pKeyId)
.buildSql("select " + this.dbField + " from AB_KEYWORD_ENTRY join AB_KEYWORD_ATTRIBUTERELATION on AB_KEYWORD_ENTRY.AB_KEYWORD_ENTRYID = AB_KEYWORD_ATTRIBUTERELATION.AB_KEYWORD_ENTRY_ID");
return db.cell(sql);
}
/**
* provides methods for interactions with the sepcial-keywords "LANGUAGE"
*
......
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