fixed the group that should be associated with a field

This commit is contained in:
Suzanne Soy 2021-03-06 02:10:10 +00:00
parent 5ddee57ef7
commit c7bddb6630

View File

@ -87,10 +87,10 @@ class XternalAppsParametricTool():
xml, types, modelInstance, inputs = self.interpretXML() xml, types, modelInstance, inputs = self.interpretXML()
for (input, modelElement, type) in inputs.values(): for (input, modelElement, type) in inputs.values():
simpleName = re.sub(r'( |[^-a-zA-Z0-9])+', ' ', input.attrib['label']).title().replace(' ', '') simpleName = re.sub(r'( |[^-a-zA-Z0-9])+', ' ', input.attrib['label']).title().replace(' ', '')
input.xpath('ancestor-or-self::group') group = "/".join(input.xpath('ancestor-or-self::xforms:group/xforms:label/text()', namespaces=ns)) or None
obj.addProperty(typeToFreeCADType(type), obj.addProperty(typeToFreeCADType(type),
simpleName, simpleName,
"/".join(input.xpath('ancestor-or-self::xforms:group/xforms:label/text()', namespaces=ns)) or None, group,
input.attrib['label'] + '\nA value of type ' + type) input.attrib['label'] + '\nA value of type ' + type)
@property @property