mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-11 18:16:40 +00:00
Fix bug with incorrect MS Project XML sequence type import
This commit is contained in:
@@ -247,11 +247,10 @@ class MSP2Ifc:
|
||||
|
||||
def create_rel_sequences(self):
|
||||
self.sequence_type_map = {
|
||||
"1": "START_START",
|
||||
"0": "FINISH_FINISH",
|
||||
"1": "FINISH_START",
|
||||
"2": "START_FINISH",
|
||||
"3": "FINISH_START",
|
||||
"4": "FINISH_FINISH",
|
||||
"0": "NOTDEFINED",
|
||||
"3": "START_START",
|
||||
}
|
||||
for task in self.tasks.values():
|
||||
if not task["PredecessorTasks"]:
|
||||
|
||||
Reference in New Issue
Block a user