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

Add Bankverbindung #884

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 2 additions & 0 deletions src/bo4e/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@
"Zaehlertyp",
"ZaehlertypSpezifikation",
"ZusatzAttribut",
"Bankverbindung",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Das sollte alphabetisch einsortiert sein

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oder wird das hier irgendwie so autogeneriert?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ne händisch, ich meine aber dass mir gesagt wurde dass das aber auto sortiert werden soll

"__version__",
"__gh_version__",
]
Expand Down Expand Up @@ -247,6 +248,7 @@
from .com.aufabschlagstaffelproort import AufAbschlagstaffelProOrt
from .com.ausschreibungsdetail import Ausschreibungsdetail
from .com.ausschreibungslos import Ausschreibungslos
from .com.bankverbindung import Bankverbindung
from .com.betrag import Betrag
from .com.com import COM
from .com.dienstleistung import Dienstleistung
Expand Down
5 changes: 5 additions & 0 deletions src/bo4e/bo/geschaeftspartner.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

from pydantic import Field

from ..com.bankverbindung import Bankverbindung
from ..enum.typ import Typ
from ..utils import postprocess_docstring
from .geschaeftsobjekt import Geschaeftsobjekt
Expand Down Expand Up @@ -78,6 +79,10 @@ class Geschaeftspartner(Geschaeftsobjekt):
#: Internetseite des Marktpartners
website: Optional[str] = None
#: Adresse des Geschäftspartners
bankverbindung: Optional[Bankverbindung] = None
#: Bankverbindung des Geschäftspartners
steuernummer: Optional[str] = None
#: Steuernummer des Geschäftspartners
adresse: Optional["Adresse"] = None
#: Todo: Add optional connection to marktteilnehmer as discussed in workshop
#: not clear what is the best solution here - circular import marktteilnehmer?
Expand Down
38 changes: 38 additions & 0 deletions src/bo4e/com/bankverbindung.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
"""
Contains Bankverbindung class and corresponding marshmallow schema for de-/serialization
"""

# pylint: disable=too-few-public-methods, too-many-instance-attributes
# pylint: disable=no-name-in-module
from typing import Optional

from ..utils import postprocess_docstring
from .com import COM


@postprocess_docstring
class Bankverbindung(COM):
"""
Eine Komponente zur Abbildung einer einzelner Bankverbindung

.. raw:: html

<object data="../_static/images/bo4e/com/Bankverbindung.svg" type="image/svg+xml"></object>

.. HINT::
`Bankverbindung JSON Schema <https://json-schema.app/view/%23?url=https://raw.githubusercontent.com/BO4E/BO4E-Schemas/{__gh_version__}/src/bo4e_schemas/com/Bankverbindung.json>`_

"""

iban: Optional[str] = None
#: International Bank Account Number = IBAN z.B.: DE07 1234 1234 1234 1234 12

kontoinhaber: Optional[str] = None
#: Juristische Person welche das Konto hält

bankkennung: Optional[str] = None
#: Ein eindeutiger Code, wie z.B. BIC (Bank Identifier Code) oder SWIFT-Code, der eine bestimmte Bank bei
#: internationalen Transaktionen identifiziert (z.B. BIC: DEUTDEFF für die Deutsche Bank)."

bankname: Optional[str] = None
#: Name der bank z.B. Deutsche Bank
26 changes: 26 additions & 0 deletions tests/test_bankverbindung.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import pytest

from bo4e import Bankverbindung
from tests.serialization_helper import assert_serialization_roundtrip


class TestBankverbindung:
@pytest.mark.parametrize(
"bankverbindung",
[
pytest.param(
Bankverbindung(
iban="DE07123412341234123412",
kontoinhaber="Jürgen W.",
bankkennung="DEUTDEFF",
bankname="Deutsche Bank",
),
id="maximal attributes",
),
],
)
def test_serialization_roundtrip(self, bankverbindung: Bankverbindung) -> None:
"""
Test de-/serialisation of Ausschreibungslos
"""
assert_serialization_roundtrip(bankverbindung)
13 changes: 13 additions & 0 deletions tests/test_geschaeftspartner.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from bo4e import (
Adresse,
Anrede,
Bankverbindung,
Geschaeftspartner,
Geschaeftspartnerrolle,
Kontaktweg,
Expand All @@ -27,6 +28,12 @@ class TestGeschaeftspartner:
vorname="Hans",
nachname="Müller-Schmidt",
organisationstyp=Organisationstyp.UNTERNEHMEN,
bankverbindung=Bankverbindung(
iban="DE07123412341285723412",
kontoinhaber="Hans Müller-Schmidt",
bankkennung="DEUTDEFF",
bankname="Deutsche Bank",
),
handelsregisternummer="HRB 254466",
amtsgericht="Amtsgericht München",
kontaktwege=[Kontaktweg()],
Expand All @@ -52,6 +59,12 @@ class TestGeschaeftspartner:
kontaktwege=[Kontaktweg()],
umsatzsteuer_id="AT12345",
geschaeftspartnerrollen=[Geschaeftspartnerrolle.DIENSTLEISTER],
bankverbindung=Bankverbindung(
iban="DE07123412341234123412",
kontoinhaber="Jürgen W.",
bankkennung="DEUTDEFF",
bankname="Deutsche Bank",
),
adresse=Adresse(
postleitzahl="1014", ort="Wien 1", strasse="Ballhausplatz", hausnummer="2", landescode=Landescode.AT # type: ignore[attr-defined]
),
Expand Down
Loading