mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-23 16:26:24 +00:00
You can now export Cost Schedules as CSV, ODS, XSLX with BlenderBIM or using the cli app
This commit is contained in:
@@ -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)
|
||||
Reference in New Issue
Block a user