This commit is contained in:
Roly Rudy Gutierrez Pinto
2017-01-13 11:06:08 -04:00
parent 2b50177eb0
commit 4bc77e4ba9

View File

@@ -2505,6 +2505,7 @@ class Processes
$data->processVariables[$key]['VAR_UID'] = $newGuid; $data->processVariables[$key]['VAR_UID'] = $newGuid;
} }
} }
$data->uid["PROCESS_VARIABLES"] = $map;
} }
} catch (Exception $e) { } catch (Exception $e) {
@@ -2608,6 +2609,9 @@ class Processes
public function renewAll(&$oData) public function renewAll(&$oData)
{ {
$oData->uid = array(); $oData->uid = array();
if (isset($oData->process["PRO_PARENT"]) && isset($oData->process["PRO_UID"])) {
$oData->uid["PROCESS"] = array($oData->process["PRO_PARENT"] => $oData->process["PRO_UID"]);
}
$this->renewAllTaskGuid($oData); $this->renewAllTaskGuid($oData);
$this->renewAllDynaformGuid($oData); $this->renewAllDynaformGuid($oData);