Skip to content
Snippets Groups Projects
Commit efc79923 authored by Benjamin Ulrich's avatar Benjamin Ulrich :speech_balloon:
Browse files

Merge branch '2021.1.3' into '2021.2.0'

2021.1.3 > 2021.2.0

See merge request xrm/basic!1278
parents 345699a2 358555fc
No related branches found
No related tags found
No related merge requests found
......@@ -45,17 +45,21 @@ CommunicationBlacklist.prototype.getFilter = function ()
CommunicationBlacklist.prototype.loadBlacklistRecipients = function (pBulkMailId)
{
var blacklistLoadConfig = entities.createConfigForLoadingRows()
.fields(["CONTACT_ID"])
.entity("BulkMailRecipient_entity")
.provider("RecipientsToBeMailed")
.addParameter("BulkMailId_param", pBulkMailId)
.filter(JSON.stringify(this.filter));
var blacklist = entities.getRows(blacklistLoadConfig);
blacklist.forEach(function (recipient)
if (!Utils.isNullOrEmpty(this.filter.childs))
{
this.blacklistContactIds.add(recipient["CONTACT_ID"]);
}, this);
var blacklistLoadConfig = entities.createConfigForLoadingRows()
.fields(["CONTACT_ID"])
.entity("BulkMailRecipient_entity")
.provider("RecipientsToBeMailed")
.addParameter("BulkMailId_param", pBulkMailId)
.filter(JSON.stringify(this.filter));
var blacklist = entities.getRows(blacklistLoadConfig);
blacklist.forEach(function (recipient)
{
this.blacklistContactIds.add(recipient["CONTACT_ID"]);
}, this);
}
return this;
}
......
......@@ -98,7 +98,6 @@ IncomingEmailExecutor.prototype.setActivityEmployeeContact = function(pContactId
else
{
this.activityData.employeeContactId = pContactId;
this.activityData.links.push(["Person", pContactId]);
this.activityData.employeeContactLanguage = pLanguageIso3;
}
}
......@@ -324,12 +323,9 @@ IncomingEmailExecutor.prototype.createActivity = function(pAdditionalLinks, pIsE
failback: []
};
if (Utils.toBoolean(vars.get("$sys.isserver")))
{
this.getSenderInfo().forEach(this._getProcessingFunction(true, senderContacts), this);
this.activityData.links = this.activityData.links.concat(senderContacts.prefered.length > 0 ? senderContacts.prefered :
senderContacts.failback);
}
for (var i = 0, l = this.mailRecipients.length; i < l; i++)
{
......
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