Various fixes to IfcCostSchedule PDF export (#6983)

* IfcCostSchedue PDF export: changed Output type from off to auto

* Fixed currency value

* Fix summary total if no nested structure present
This commit is contained in:
carlopav
2025-08-04 10:46:20 +02:00
committed by GitHub
parent 4d42512b6a
commit e00a865bce
3 changed files with 11 additions and 11 deletions
@@ -940,12 +940,12 @@ class ExportCostSchedulesToPDF(bpy.types.Operator, ExportHelper):
default=True,
)
force_schedule_type: bpy.props.EnumProperty(
name="Force output type",
description="Force the output to this type\nalso if it is not coincident with the cost schedule Predefined Type",
name="Output type",
description='Force the output to this type.\n"Auto" defaults to selected cost schedule Predefined Type',
items=[
(
"OFF",
"Off",
"AUTO",
"By PredefinedType",
"Uses Cost Schedule Predefined Type",
),
(
@@ -959,7 +959,7 @@ class ExportCostSchedulesToPDF(bpy.types.Operator, ExportHelper):
"Forces the output as a schedule of rates",
),
],
default="OFF",
default="AUTO",
)
def draw(self, context):