mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-09 17:31:45 +00:00
4bb549f3e9
* P6XML Parser failing on calendar type * add work plan references a get_person which is not an attribute. modified to get_user to work * Initial support for Primavera XER files * IFC4D impl XER calendars exceptions and work time * merged updats * refactoring code for the 4D model to avoid duplicate code * Assign process in the api module was missing an atrribute QuantityIn Process * Merged changes from master * refactoring * resolved conflicts * refactoring code for IFC4D * refactoring code for IFC4D * refactoring code for IFC4D * Reverted the changes to IfcRelAssignsToProcess usecase * Changed the class to be more discriptive from Utils to ScheduleIfcGenerator * reverted changes to add_work_plan and Makefile Co-authored-by: Dion Moult <dion@thinkmoult.com>
45 lines
1.6 KiB
Python
45 lines
1.6 KiB
Python
import ifcopenshell
|
|
import ifcopenshell.api
|
|
|
|
|
|
class Usecase:
|
|
def __init__(self, file, **settings):
|
|
self.file = file
|
|
self.settings = {
|
|
"relating_process": None,
|
|
"related_object": None,
|
|
}
|
|
|
|
for key, value in settings.items():
|
|
self.settings[key] = value
|
|
|
|
def execute(self):
|
|
if self.settings["related_object"].HasAssignments:
|
|
for assignment in self.settings["related_object"].HasAssignments:
|
|
if (
|
|
assignment.is_a("IfclRelAssignsToProcess")
|
|
and assignment.RelatingProcess == self.settings["relating_process"]
|
|
):
|
|
return
|
|
|
|
operates_on = None
|
|
if self.settings["relating_process"].OperatesOn:
|
|
operates_on = self.settings["relating_process"].OperatesOn[0]
|
|
|
|
if operates_on:
|
|
related_objects = list(operates_on.RelatedObjects)
|
|
related_objects.append(self.settings["related_object"])
|
|
operates_on.RelatedObjects = related_objects
|
|
ifcopenshell.api.run("owner.update_owner_history", self.file, **{"element": operates_on})
|
|
else:
|
|
operates_on = self.file.create_entity(
|
|
"IfcRelAssignsToProcess",
|
|
**{
|
|
"GlobalId": ifcopenshell.guid.new(),
|
|
"OwnerHistory": ifcopenshell.api.run("owner.create_owner_history", self.file),
|
|
"RelatedObjects": [self.settings["related_object"]],
|
|
"RelatingProcess": self.settings["relating_process"],
|
|
}
|
|
)
|
|
return operates_on
|