Skip to content
Snippets Groups Projects
Commit b5ca592c authored by Sebastian Listl's avatar Sebastian Listl :speech_balloon:
Browse files

Liquibase and scan service fixes

parent 4e3efbcd
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,6 @@
<include file="generatedData/classificationscore.xml" relativeToChangelogFile="true"/>
<include file="generatedData/classificationstorage.xml" relativeToChangelogFile="true"/>
<include file="generatedData/classificationtype.xml" relativeToChangelogFile="true"/>
<include file="generatedData/commrestriction.xml" relativeToChangelogFile="true"/>
<include file="generatedData/communication.xml" relativeToChangelogFile="true"/>
<include file="generatedData/contact.xml" relativeToChangelogFile="true"/>
<include file="generatedData/contract.xml" relativeToChangelogFile="true"/>
......
This diff is collapsed.
......@@ -80,9 +80,5 @@
<name>407d9b32-c379-428b-b1e1-d92a820971fd</name>
<view>SalesprojectPreviewMultiple_view</view>
</neonViewReference>
<neonViewReference>
<name>c860de14-8ebe-438f-92c3-cba727a15690</name>
<view>SalesprojectAttribute_view</view>
</neonViewReference>
</references>
</neonContext>
......@@ -663,7 +663,7 @@ BulkMailUtils.startBulkmailWorkFlow = function(pMailLogId, pLinkId)
{
return
}
var [actionType, workflowKey, signalName] = newSelect(["ACTION_TYPE", "WORKFLOWPROCESSDEFINITION_KEY", "WORKFLOWSIGNAL_NAME"])
var [linkActionType, workflowKey, signalName] = newSelect(["ACTION_TYPE", "WORKFLOWPROCESSDEFINITION_KEY", "WORKFLOWSIGNAL_NAME"])
.from("WEBLINK")
.where("WEBLINK.WEBLINKID", pLinkId)
.arrayRow();
......@@ -673,18 +673,18 @@ BulkMailUtils.startBulkmailWorkFlow = function(pMailLogId, pLinkId)
.where("MAIL_LOG.MAIL_LOGID", pMailLogId)
.cell();
var variables = {
var processVariables = {
"mailLogId": pMailLogId,
"linkId": pLinkId,
"contactId": contactId
};
if (actionType == $KeywordRegistry.weblinkActionType$startWorkflow() && workflowKey)
if (linkActionType == $KeywordRegistry.weblinkActionType$startWorkflow() && workflowKey)
{
workflow.startProcessByKey(workflowKey, variables);
workflow.startProcessByKey(workflowKey, processVariables);
}
else if (actionType == $KeywordRegistry.weblinkActionType$sendWorkflowSignal() && signalName)
else if (linkActionType == $KeywordRegistry.weblinkActionType$sendWorkflowSignal() && signalName)
{
workflow.signalEventReceived(signalName, variables);
workflow.signalEventReceived(signalName, processVariables);
}
}
......
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