From d02aec9aa4e26a055e7e076c0c994d9a596611c9 Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Mon, 17 Mar 2025 12:09:58 +0100 Subject: [PATCH] requirement convert template added --- templates/py/requirement_specification.py | 36 +++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 templates/py/requirement_specification.py diff --git a/templates/py/requirement_specification.py b/templates/py/requirement_specification.py new file mode 100644 index 0000000..b645dc0 --- /dev/null +++ b/templates/py/requirement_specification.py @@ -0,0 +1,36 @@ +def specification(req_spec): + req_spec.title({{ data.titel|tojson }}) +{% set sec = namespace(cnt = 1) %} +{%- for uid in data.uid_list_sorted %} + {%- with item=data.item_dict[uid] %} + {%- if item.system_type_uid == '_4-K5EHYYEem_kd-7nxt1sg' %} + # + # Section + # + sec_uuid = req_spec.add( + itemtype="SEC", + id={{ sec.cnt }}, + {%- set sec.cnt = sec.cnt + 1 %} + heading={{ item.Heading|tojson }}, + ) + {%- elif item.system_type_uid == '_MR7eNHYYEem_kd-7nxt1sg' %} + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id={{ item.ID[4:]}}, + heading={{ item.Heading|tojson }}, + {%- if 'Description' in item and item.Description != '' %} + description={{ item.Description|tojson }}, + {%- if 'ReasonForImplementation' in item and item.ReasonForImplementation != '' %} + reason={{ item.ReasonForImplementation|tojson }}, + {%- endif %} + {%- if 'Fitcriterion' in item and item.Fitcriterion != '' %} + fitcriterion={{ item.Fitcriterion|tojson }}, + {%- endif %} + {%- endif %} + ) + {%- endif %} + {%- endwith %} +{%- endfor %}