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

#1060627-LeadimportMappingassistent Anpassungen am Datentyp

parent bb3036ae
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@
<column name="USER_EDIT" type="NVARCHAR(50)" />
<column name="DATE_EDIT" type="DATETIME"/>
<column name="FIELDNAME" type="CHAR(36)"/>
<column name="FIELDNAME" type="VARCHAR(100)"/>
<column name="INPUTVALUE" type="VARCHAR(300)"/>
<column name="OUTPUTVALUE" type="VARCHAR(300)"/>
<column name="LEADIMPORT_ID" type="CHAR(36)"/>
......
......@@ -14997,8 +14997,8 @@
<name>FIELDNAME</name>
<dbName></dbName>
<primaryKey v="false" />
<columnType v="1" />
<size v="36" />
<columnType v="12" />
<size v="100" />
<scale v="0" />
<notNull v="false" />
<isUnique v="false" />
......
......@@ -228,8 +228,7 @@ LeadImportUtils.getMapping = function(pleadimportId)
newSelect(["LEADIMPORTMAPPINGASSISTANT.FIELDNAME", "LEADIMPORTMAPPINGASSISTANT.INPUTVALUE", "LEADIMPORTMAPPINGASSISTANT.OUTPUTVALUE"])
.from("LEADIMPORTMAPPINGASSISTANT")
.where("LEADIMPORTMAPPINGASSISTANT.LEADIMPORT_ID", pleadimportId)
.table().forEach(function (d) {
d[0] = d[0].trim();
.table().forEach(function (d) {
if (tempData[d[0]] == undefined )
tempData[d[0]] = {} //[[d[1], d[2]]]
tempData[d[0]][d[1]] = d[2];
......
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