Skip to content
Snippets Groups Projects
Commit c3861257 authored by Ruben Estrada's avatar Ruben Estrada
Browse files

#1777 fixes bug that generated empty reference fields for records created via...

#1777 fixes bug that generated empty reference fields for records created via workflow when target and source module are the same
parent 3edabed4
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,9 @@ class VTCreateEntityTask extends VTTask {
$field = $fieldValue;
$module = $referenceModule;
if ($referenceModule == $entityType) {
$fieldValue = $newEntity->column_fields[$fieldValue];
$components = vtws_getIdComponents($entity->get($field));
$referenceRecordId = $components[1];
$fieldValue = $referenceRecordId;
} else if (php7_count($matches) > 0) {
$referenceField = $matches[1];
$referencedModule = $matches[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