Skip to content
Snippets Groups Projects
Commit 7c5e5bc8 authored by felmer's avatar felmer
Browse files

SSDM-7204: add registrator and registration timestamp to material items in xml...

SSDM-7204: add registrator and registration timestamp to material items in xml delivered by the data source
parent c1572342
No related branches found
No related tags found
No related merge requests found
...@@ -245,7 +245,9 @@ def createDataSetMetaData(entity, url_elm): ...@@ -245,7 +245,9 @@ def createDataSetMetaData(entity, url_elm):
return ET.SubElement(url_elm, "x:xd", attrib = attrs) return ET.SubElement(url_elm, "x:xd", attrib = attrs)
def createMaterialMetaData(material, url_elm): def createMaterialMetaData(material, url_elm):
attrs = {"kind": "MATERIAL", "code": material.getCode(), "type": material.getType().getCode(), "registration-timestamp": getRegistrationTimestamp(material)} attrs = {"kind": "MATERIAL", "code": material.getCode(), "type": material.getType().getCode(),
"registration-timestamp": getRegistrationTimestamp(material),
"registrator": material.getRegistrator().getUserId()}
return ET.SubElement(url_elm, "x:xd", attrib = attrs) return ET.SubElement(url_elm, "x:xd", attrib = attrs)
def attachProperties(entity, xd_elm): def attachProperties(entity, xd_elm):
......
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