Skip to content

Commit 6b33763

Browse files
author
Jens Kürten
committed
feat: Add cdb_object_id field to BOMItem model
1 parent 3389542 commit 6b33763

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

csfunctions/objects/part.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,8 @@ class Material(BaseObject):
234234
class BOMItem(BaseObject):
235235
object_type: Literal[ObjectType.BOM_ITEM] = ObjectType.BOM_ITEM
236236

237+
cdb_object_id: str | None = Field(None, description="Object ID")
238+
237239
baugruppe: str | None = Field(None, description="Assembly")
238240
b_index: str | None = Field(None, description="Assembly Index")
239241
component_materialnr_erp: str | None = Field(None, description="Material Number ERP Component")

0 commit comments

Comments
 (0)