Skip to content
Snippets Groups Projects
Commit f6bec8f0 authored by Sascha Schmidt's avatar Sascha Schmidt
Browse files

[Projekt: xRM-ContactManagement][TicketNr.: 2001172][Importer: iComm wurde...

[Projekt: xRM-ContactManagement][TicketNr.: 2001172][Importer: iComm wurde nicht komplett auf ObjectType, ObjectRowid umgestellt und legt ungültige Daten an]
parent 7730d3db
No related branches found
No related tags found
No related merge requests found
......@@ -180,7 +180,9 @@ Properties for iComm
|Address | The address for the communication entry.
|Medium | The medium ID. (It can also be a flexible value like "{2}" or "{TEMP.MED}").
|ContactID | The ID of the entry in the contact table.
|ContactID | The ID of the entry in the contact table. @deprecated It should be used ObjectRowid and ObjectType
|ObjectRowid | The UID of the entry from a context.
|ObjectType | The type of the entry from a context.
|Standard (opt.)| If this address should be set to standard (boolean).
|======
......
......@@ -474,7 +474,9 @@ function iKeywordAttribute (pObject)
* Values of the mapping line:
* Address req -- the address for the communication entry
* Medium req -- the medium id
* ContactID req -- the id of the entry in the contact table
* ContactID req -- the id of the entry in the contact table @deprecated It should be used ObjectRowid and ObjectType
* ObjectRowid req -- the UID of the entry from a context.
* ObjectType req -- the type of the entry from a context.
* Standard opt -- the standard value (boolean)
*
* @name iComm
......@@ -485,23 +487,53 @@ function iKeywordAttribute (pObject)
function iComm (pObject)
{
if (!this.doIfCheck(pObject))
{
return true;
}
var address = this.InputRecord[pObject.Address];
var medium = this.InputRecord[pObject.Medium];
var contact = this.InputRecord[pObject.ContactID];
var objectRowId = this.InputRecord[pObject.ObjectRowid];
var objectType = this.InputRecord[pObject.ObjectType];
var standard = "0";
//@deprecated It should be used ObjectRowid and ObjectType
var contactId = this.InputRecord[pObject.ContactID];
if (address == undefined)
{
address = this.resolveSymbol(pObject, pObject.Address);
}
if (medium == undefined)
{
medium = this.resolveSymbol(pObject, pObject.Medium);
if (contact == undefined)
contact = this.resolveSymbol(pObject, pObject.ContactID);
}
if (objectRowId == undefined)
{
objectRowId = this.resolveSymbol(pObject, pObject.ObjectRowid);
}
if (objectType == undefined)
{
objectType = this.resolveSymbol(pObject, pObject.ObjectType);
}
//@deprecated It should be used ObjectRowid and ObjectType
if (contactId == undefined)
{
contactId = this.resolveSymbol(pObject, pObject.ContactID);
}
if (pObject.Standard)
{
standard = "1";
}
if (!address || !medium || !contact)
if (!address || !medium || !objectRowId)
{
return true;
}
//@deprecated It should be used ObjectRowid and ObjectType
objectRowId = objectRowId || contactId;
objectType = objectType || "Contact";
const COMMUNICATION = this.getTableCase("communication");
const COMMUNICATIONID = this.getColumnCase("communicationid");
......@@ -523,8 +555,8 @@ function iComm (pObject)
var sql = new SqlBuilder(this.Config.AliasTo)
.select([COMMUNICATIONID, ADDR, MEDIUM_ID, ISSTANDARD])
.from(COMMUNICATION)
.where(COMMUNICATION + "." + OBJECT_ROWID, contact)
.and(COMMUNICATION + "." + OBJECT_TYPE, "Contact")
.where(COMMUNICATION + "." + OBJECT_ROWID, objectRowId)
.and(COMMUNICATION + "." + OBJECT_TYPE, objectType)
.and(COMMUNICATION + "." + MEDIUM_ID, CommUtil.getMediumIdsByCategory(mediumCategory), SqlBuilder.IN());
var existingData = sql.table(null, null, this.getConfiguredTimeout());
......@@ -544,8 +576,8 @@ function iComm (pObject)
if (!existingComm)
{
var columns = [COMMUNICATIONID, ADDR, MEDIUM_ID, OBJECT_ROWID, ISSTANDARD];
this.insertData(COMMUNICATION, columns, null, [util.getNewUUID(), address, medium, contact, standard], this.Config.AliasTo);
var columns = [COMMUNICATIONID, ADDR, MEDIUM_ID, OBJECT_ROWID, OBJECT_TYPE, ISSTANDARD];
this.insertData(COMMUNICATION, columns, null, [util.getNewUUID(), address, medium, objectRowId, objectType, standard], this.Config.AliasTo);
}
else
{
......
......@@ -165,7 +165,7 @@ var testfunctions = {
return this.fixtures;
}.bind(this),
ImportCommand: "insert+update",
Mapping: [[iComm, {Address: 0, Medium: 1, ContactID: 2}]]
Mapping: [[iComm, {Address: 0, Medium: 1, ObjectRowid: 2, ObjectType: 3}]]
}
return runFn(config);
},
......
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