Skip to content

Commit 9a50ada

Browse files
authored
feat: Add ahb_status field to DataElement class (#83)
* Add ahb_status field to DataElement class * Include ahb_status when creating DataElement instances
1 parent 62b2c0e commit 9a50ada

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

src/fundamend/models/anwendungshandbuch.py

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ class DataElement(FundamendBaseModel):
3434
# </D_0065>
3535
id: str # e.g. 'D_0065'
3636
name: str # e.g. 'Nachrichtentyp-Kennung'
37+
ahb_status: str | None # e.g. 'X'
3738
codes: tuple[Code, ...]
3839

3940

src/fundamend/reader/ahbreader.py

+4
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,13 @@ def _to_data_element(element: ET.Element) -> DataElement:
9191
codes.append(_to_code(child))
9292
else:
9393
raise ValueError(f"unexpected element: {child.tag}")
94+
ahb_status: str | None = None
95+
if "AHB_Status" in element.attrib and element.attrib["AHB_Status"].strip():
96+
ahb_status = element.attrib["AHB_Status"]
9497
return DataElement(
9598
id=element.tag,
9699
name=element.attrib["Name"],
100+
ahb_status=ahb_status,
97101
codes=tuple(codes),
98102
)
99103

unittests/__snapshots__/test_ahbreader.ambr

+3-3
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)