Merged in victorsl/processmaker (pull request #2217)

PM-00000 "Fix to import process" SOLVED
This commit is contained in:
Julio Cesar Laura Avendaño
2015-05-19 10:18:54 -04:00
3 changed files with 58 additions and 21 deletions

View File

@@ -969,6 +969,18 @@ class Processes
}
}
if (isset($oData->taskExtraProperties)) {
foreach ($oData->taskExtraProperties as $key => $value) {
$record = $value;
if (isset($map[$record["OBJ_UID"]])) {
$newUid = $map[$record["OBJ_UID"]];
$oData->taskExtraProperties[$key]["OBJ_UID"] = $newUid;
}
}
}
if (isset($oData->webEntry)) {
foreach ($oData->webEntry as $key => $value) {
$record = $value;