Skip to content
Snippets Groups Projects
Commit b2a74d23 authored by Florian Maier's avatar Florian Maier
Browse files

[Projekt: xRM-ContactManagement][TicketNr.: 2001171][Serienaktion...

[Projekt: xRM-ContactManagement][TicketNr.: 2001171][Serienaktion Eigenschaften setzen in Aktivität fehlerhaft]
parent 66603e2c
No related branches found
No related tags found
No related merge requests found
import("system.logging");
import("Util_lib");
import("system.neon");
import("Sql_lib");
......@@ -23,15 +24,19 @@ function FilterViewActionUtils() {}
FilterViewActionUtils.getUidsByEntityFilter = function (pContext, pFilter, pParameters)
{
if (Utils.isString(pFilter))
pFilter = JSON.parse(pFilter);
if (Utils.isString(pParameters))
pParameters = JSON.parse(pParameters);
//uids from Person and Organisation are loaded with simple sql queries because that's much faster than over the entity'
if (pContext == "Person" && "condition" in pFilter)
{
return new SqlBuilder()
{
pFilter = JSON.parse(pFilter);
}
if (Utils.isString(pParameters))
{
pParameters = JSON.parse(pParameters);
}
//uids from Person and Organisation are loaded with simple sql queries because that's much faster than over the entity'
//TODO: design modular + filter recipe
if (pContext == "Person" && "condition" in pFilter)
{
return new SqlBuilder()
.selectDistinct("CONTACT.CONTACTID")
.from("PERSON")
.join("CONTACT", "CONTACT.PERSON_ID = PERSON.PERSONID")
......@@ -39,10 +44,10 @@ FilterViewActionUtils.getUidsByEntityFilter = function (pContext, pFilter, pPara
.leftJoin("ADDRESS", "ADDRESS.ADDRESSID = CONTACT.ADDRESS_ID")
.whereIfSet(pFilter.condition)
.arrayColumn();
}
if (pContext == "Organisation" && "condition" in pFilter)
{
return new SqlBuilder()
}
if (pContext == "Organisation" && "condition" in pFilter)
{
return new SqlBuilder()
.selectDistinct("CONTACT.CONTACTID")
.from("ORGANISATION")
.join("CONTACT", newWhere("ORGANISATION.ORGANISATIONID = CONTACT.ORGANISATION_ID").and("CONTACT.PERSON_ID is null"))
......@@ -50,22 +55,39 @@ FilterViewActionUtils.getUidsByEntityFilter = function (pContext, pFilter, pPara
.leftJoin("CLASSIFICATIONSTORAGE", "CLASSIFICATIONSTORAGE.OBJECT_ROWID = CONTACT.CONTACTID")
.whereIfSet(pFilter.condition)
.arrayColumn();
}
}
if(pContext == "Activity" && "condition" in pFilter)
{
return new SqlBuilder()
.selectDistinct("ACTIVITY.ACTIVITYID")
.from("ACTIVITY")
.leftJoin("CONTACT", "CONTACT.CONTACTID = ACTIVITY.RESPONSIBLE")
.leftJoin("PERSON", "PERSON.PERSONID = CONTACT.PERSON_ID")
.whereIfSet(pFilter.condition)
.arrayColumn();
}
//General solution to get the uids using entities.getRows
var loadRowsConfig = entities.createConfigForLoadingRows()
//General solution to get the uids using entities.getRows
var loadRowsConfig = entities.createConfigForLoadingRows()
.entity(ContextUtils.getEntity(pContext))
.fields(["#UID"])
if (pFilter.filter)
loadRowsConfig.filter(JSON.stringify(pFilter.filter));
if(pParameters)
Object.keys(pParameters).forEach(function(key){loadRowsConfig.addParameter(key, pParameters[key])});
.fields(["#UID"]);
if (pFilter.filter)
{
loadRowsConfig.filter(JSON.stringify(pFilter.filter));
}
return entities.getRows(loadRowsConfig).map(function (row)
{
return row["#UID"];
});
if(pParameters)
{
Object.keys(pParameters).forEach(function(key){
loadRowsConfig.addParameter(key, pParameters[key])
});
}
return entities.getRows(loadRowsConfig).map(function (row)
{
return row["#UID"];
});
}
/**
......
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