Arch: Fixed wrong export of objects of undefined IFC type

This commit is contained in:
Yorik van Havre
2019-12-13 12:29:26 -03:00
parent 4542a799b9
commit 2c430bfbf1

View File

@@ -1456,6 +1456,8 @@ def getIfcTypeFromObj(obj):
ifctype = translationtable[ifctype]
if ifctype == "VisGroup":
ifctype = "Group"
if ifctype == "Undefined":
ifctype = "BuildingElementProxy"
return "Ifc" + ifctype