Skip to content
Snippets Groups Projects
Commit 80da0d15 authored by Sascha Schmidt's avatar Sascha Schmidt
Browse files

Rename variable (MR/CR)

parent e555d98d
No related branches found
No related tags found
No related merge requests found
......@@ -2,15 +2,15 @@ import("KeywordRegistry_basic");
import("system.entities");
import("system.vars");
var data = vars.get("$sys.selection");
var selection = vars.get("$sys.selection");
var updateConfig = entities.createConfigForUpdatingRows()
.entity("Task_entity")
.fieldValues({
"STATUS": $KeywordRegistry.taskStatus$ended()
});
data.forEach(function (dataRow)
selection.forEach(function (dataRow)
{
updateConfig.uid(dataRow);
entities.updateRow(updateConfig);
......
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