util.dataforms: Turn number values into timestamps for datetime fields

Makes it symmetric with parsing.
This commit is contained in:
Kim Alvefur 2021-10-26 15:17:49 +02:00
parent fc677f515f
commit f956b07ca0
2 changed files with 4 additions and 2 deletions

View file

@ -103,7 +103,9 @@ function form_t.form(layout, data, formtype)
if value ~= nil then
if type(value) == "number" then
if field_type == "boolean" then
if field.datatype == "xs:dateTime" then
value = datetime.datetime(value);
elseif field_type == "boolean" then
value = value ~= 0;
else
value = ("%g"):format(value);