You can now export Cost Schedules as CSV, ODS, XSLX with BlenderBIM or using the cli app

This commit is contained in:
Sigma Dimensions
2023-02-15 22:50:39 +01:00
parent 476ab506d0
commit 9dc69f3aa7
10 changed files with 162 additions and 42 deletions
+6 -3
View File
@@ -1,5 +1,5 @@
def add_cost_schedule(ifc):
ifc.run("cost.add_cost_schedule")
def add_cost_schedule(ifc, predefined_type):
ifc.run("cost.add_cost_schedule", predefined_type=predefined_type)
def edit_cost_schedule(ifc, cost, cost_schedule):
@@ -209,4 +209,7 @@ def contract_cost_item_rate(cost, cost_item):
cost.contract_cost_item_rate(cost_item)
def calculate_cost_item_resource_value(ifc, cost_item):
ifc.run("cost.calculate_cost_item_resource_value", cost_item=cost_item)
ifc.run("cost.calculate_cost_item_resource_value", cost_item=cost_item)
def export_cost_schedules(cost, format):
cost.export_cost_schedules(format)