Skip to content
Snippets Groups Projects
Commit 27ab0913 authored by Sebastian Listl's avatar Sebastian Listl :speech_balloon:
Browse files

MST import messages

parent 9ab5c596
No related branches found
No related tags found
No related merge requests found
import("Sql_lib");
import("system.datetime");
import("system.neon");
import("system.logging");
import("Util_lib");
import("system.vars");
......@@ -7,9 +8,16 @@ var messages = vars.get("$sys.selection");
var description = messages.map(function (id)
{
var [user, date, message] = JSON.parse(id);
return "[" + user + " " + date + "]\n" + message + "\n";
}).join("\n");
date = Date.parse(date).valueOf();
return "[" + datetime.toDate(date, "dd.MM.yyyy HH:mm") + "] " + user + "<br>" + message + "<br>";
}).join("<br>");
var links = newSelect(["OBJECT_TYPE", "OBJECT_ROWID"])
.from("MST_TEAMLINK")
.where("MST_TEAMLINK.MST_TEAM_ID", vars.get("$param.TeamId_param"))
.table();
neon.openContext("Activity", "ActivityEdit_view", null, neon.OPERATINGSTATE_NEW, {
"Info_param": description
"Info_param": description,
"PresetLinks_param": JSON.stringify(links)
});
\ No newline at end of file
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