Skip to content
Snippets Groups Projects
Commit 4dca13f7 authored by Sebastian Pongratz's avatar Sebastian Pongratz :ping_pong:
Browse files

Merge branch '1082217_attributeObjectSelectionGrouping' into '2021.1.1'

1082217 resolve names when grouping by objectselection attributes

See merge request xrm/basic!1095
parents 87eec670 a8a0405a
No related branches found
No related tags found
No related merge requests found
import("Contact_lib");
import("Util_lib");
import("Employee_lib");
import("KeywordData_lib");
......@@ -12,6 +13,7 @@ import("system.project");
import("system.entities");
import("Sql_lib");
import("Keyword_lib");
import("KeywordRegistry_basic");
/**
* Provides functions for the work with attributes,<br>
......@@ -1244,6 +1246,62 @@ Object.assign(AttributeTypes.OBJECTSELECTION, {
contentType: "UNKNOWN",
databaseField: "ID_VALUE",
useLookup: true,
getDisplayValueSql: function (pAttributeData)
{
/* This switch-case isn't a great solution regarding the entity model, but there is currently no other solution to resolve
* these display values when grouping by attributes. Don't copy or re-use this!
*/
var idField = "AB_ATTRIBUTERELATION." + this.databaseField;
var sqlMask = new SqlMaskingUtils();
switch (pAttributeData.dropDownDefinition)
{
case "Activity_entity":
return newSelect("ACTIVITY.SUBJECT").from("ACTIVITY").where("ACTIVITY.ACTIVITYID = " + idField);
case "Attribute_entity":
return newSelect("AB_ATTRIBUTE.ATTRIBUTE_NAME").from("AB_ATTRIBUTE").where("AB_ATTRIBUTE.AB_ATTRIBUTEID = " + idField);
case "BulkMail_entity":
return newSelect("BULKMAIL.NAME").from("BULKMAIL").where("BULKMAIL.BULKMAILID = " + idField);
case "Campaign_entity":
return newSelect("CAMPAIGN.NAME").from("CAMPAIGN").where("CAMPAIGN.CAMPAIGNID = " + idField);
case "CampaignStep_entity":
return newSelect("CAMPAIGNSTEP.NAME").from("CAMPAIGNSTEP").where("CAMPAIGNSTEP.CAMPAIGNSTEPID = " + idField);
case "AnyContact_entity":
case "Person_entity":
return "(" + ContactUtils.getResolvingDisplaySubSql(idField) + ")";
case "Organisation_entity":
return newSelect("ORGANISATION.NAME").from("ORGANISATION")
.join("CONTACT", "CONTACT.ORGANISATION_ID = ORGANISATION.ORGANISATIONID and CONTACT.PERSON_ID is null")
.where("CONTACT.CONTACTID = " + idField);
case "Contract_entity":
return newSelect(sqlMask.concatWithSeparator([
KeywordUtils.getResolvedTitleSqlPart($KeywordRegistry.contractType(), "CONTRACT.CONTRACTTYPE"),
"CONTRACT.CONTRACTCODE"
], " | ", false))
.from("CONTRACT").where("CONTRACT.CONTRACTID = " + idField);
case "DocumentTemplate_entity":
return newSelect("DOCUMENTTEMPLATE.NAME").from("DOCUMENTTEMPLATE").where("DOCUMENTTEMPLATE.DOCUMENTTEMPLATEID = " + idField);
case "Language_entity":
return newSelect("AB_LANGUAGE.NAME_LATIN").from("AB_LANGUAGE").where("AB_LANGUAGE.ISO3 = " + idField);
case "Offer_entity":
return newSelect(sqlMask.concatWithSeparator(["OFFER.OFFERCODE", "OFFER.VERSNR"], " - ", false))
.from("OFFER").where("OFFER.OFFERID = " + idField);
case "Order_entity":
return newSelect("SALESORDER.SALESORDERCODE").from("SALESORDER").where("SALESORDER.SALESORDERID = " + idField);
case "Product_entity":
return newSelect("PRODUCT.PRODUCTNAME").from("PRODUCT").where("PRODUCT.PRODUCTID = " + idField);
case "Salesproject_entity":
return newSelect(sqlMask.concatWithSeparator(["SALESPROJECT.PROJECTCODE", "SALESPROJECT.PROJECTTITLE"], " | ", false))
.from("SALESPROJECT").where("SALESPROJECT.SALESPROJECTID = " + idField);
case "SerialLetter_entity":
return newSelect("SERIALLETTER.TITLE").from("SERIALLETTER").where("SERIALLETTER.SERIALLETTERID = " + idField);
case "SupportTicket_entity":
return newSelect("TASK.SUBJECT").from("TICKET").leftJoin("TASK", "TICKET.TASK_ID = TASK.TASKID").where("TICKET.TICKETID = " + idField);
case "Task_entity":
return newSelect("TASK.SUBJECT").from("TASK").where("TASK.TASKID = " + idField);
default:
return "''";
}
},
getViewValue: function (pValue, pModule)
{
if (pValue)
......
......@@ -3860,6 +3860,8 @@ SqlMaskingUtils.prototype.isNull = function (pField, pReplacement)
{
if (pReplacement == undefined)
pReplacement = "''";
if (pField instanceof SqlBuilder)
pField = "(" + pField.toString() + ")";
switch (this.dbType)
{
case db.DBTYPE_SQLSERVER2000:
......
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