Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extension of Invoice Types: Add AUSGLEICHSENERGIERECHNUNG, ABSCHLUSSRECHNUNG... #545

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion json_schemas/bo/Netznutzungsrechnung.json
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,14 @@
"MEHRMINDERMENGENRECHNUNG",
"MESSSTELLENBETRIEBSRECHNUNG",
"BESCHAFFUNGSRECHNUNG",
"AUSGLEICHSENERGIERECHNUNG"
"AUSGLEICHSENERGIERECHNUNG",
"ABSCHLUSSRECHNUNG",
"ABSCHLAGSRECHNUNG",
"TURNUSRECHNUNG",
"MONATSRECHNUNG",
"ZWISCHENRECHNUNG",
"INTEGRIERTE_13TE_RECHNUNG",
"ZUSAETZLICHE_13TE_RECHNUNG"
],
"title": "Rechnungstyp",
"type": "string"
Expand Down
9 changes: 8 additions & 1 deletion json_schemas/bo/Rechnung.json
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,14 @@
"MEHRMINDERMENGENRECHNUNG",
"MESSSTELLENBETRIEBSRECHNUNG",
"BESCHAFFUNGSRECHNUNG",
"AUSGLEICHSENERGIERECHNUNG"
"AUSGLEICHSENERGIERECHNUNG",
"ABSCHLUSSRECHNUNG",
"ABSCHLAGSRECHNUNG",
"TURNUSRECHNUNG",
"MONATSRECHNUNG",
"ZWISCHENRECHNUNG",
"INTEGRIERTE_13TE_RECHNUNG",
"ZUSAETZLICHE_13TE_RECHNUNG"
],
"title": "Rechnungstyp",
"type": "string"
Expand Down
7 changes: 7 additions & 0 deletions src/bo4e/enum/rechnungstyp.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,10 @@ class Rechnungstyp(StrEnum):
)
BESCHAFFUNGSRECHNUNG = "BESCHAFFUNGSRECHNUNG" #: Rechnungen zwischen einem Händler und Einkäufer von Energie.
AUSGLEICHSENERGIERECHNUNG = "AUSGLEICHSENERGIERECHNUNG" #: Rechnung an den Verursacher von Ausgleichsenergie.
ABSCHLUSSRECHNUNG = "ABSCHLUSSRECHNUNG" #: ABSCHLUSSRECHNUNG
ABSCHLAGSRECHNUNG = "ABSCHLAGSRECHNUNG" #: ABSCHLAGSRECHNUNG
TURNUSRECHNUNG = "TURNUSRECHNUNG" #: TURNUSRECHNUNG
MONATSRECHNUNG = "MONATSRECHNUNG" #: MONATSRECHNUNG
ZWISCHENRECHNUNG = "ZWISCHENRECHNUNG" #: ZWISCHENRECHNUNG
INTEGRIERTE_13TE_RECHNUNG = "INTEGRIERTE_13TE_RECHNUNG" #: INTEGRIERTE_13TE_RECHNUNG
ZUSAETZLICHE_13TE_RECHNUNG = "ZUSAETZLICHE_13TE_RECHNUNG" #: ZUSAETZLICHE_13TE_RECHNUNG