Assignment Rules fix for a better data import and export isolation.

This commit is contained in:
Gustavo Adolfo Cruz Laura
2016-03-22 11:39:57 -04:00
parent 623d8e2962
commit 4c0b592fe8

View File

@@ -58,10 +58,11 @@ class AssignmentRulesMigrator implements Importable, Exportable
$oData->gateways = $this->processes->getGatewayRows($prj_uid);
$oData->steps = $this->processes->getStepRows($prj_uid);
$oData->triggers = $this->processes->getTriggerRows($prj_uid);
$oData->taskusers = $this->processes->getTaskUserRows($oData->tasks);
$assignmentData = new \StdClass();
$assignmentData->taskusers = $this->processes->getTaskUserRows($oData->tasks);
$result = array(
'workflow-definition' => (array)$oData
'workflow-definition' => (array)$assignmentData
);
return $result;