-
Notifications
You must be signed in to change notification settings - Fork 5
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
base: main
Are you sure you want to change the base?
Add Bankverbindung #884
Conversation
src/bo4e/com/bankverbindung.py
Outdated
iban: Optional[str] = None | ||
|
||
kontoinhaber: Optional[str] = None | ||
|
||
bankkennung: Optional[str] = None | ||
|
||
bankname: Optional[str] = None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wäre ganz gut, hier docstrings zu haben. Insbesondere bei bankkennung
. Soll das ein SWIFT Code sein?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
src/bo4e/com/bankverbindung.py
Outdated
if TYPE_CHECKING: | ||
from ..enum.preismodell import Preismodell | ||
from ..enum.rechnungslegung import Rechnungslegung | ||
from ..enum.sparte import Sparte | ||
from ..enum.vertragsform import Vertragsform | ||
from .ausschreibungsdetail import Ausschreibungsdetail | ||
from .menge import Menge | ||
from .zeitraum import Zeitraum |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
welchen dieser importe verwenden wir hier überhaupt?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
src/bo4e/com/bankverbindung.py
Outdated
iban: Optional[str] = None | ||
# International Bank Account Number = IBAN for example: DE07 1234 1234 1234 1234 12 | ||
|
||
kontoinhaber: Optional[str] = None | ||
# individual or entity in whose name a bank account is registered and who has legal rights over it | ||
|
||
bankkennung: Optional[str] = None | ||
# A unique code, such as a BIC (Bank Identifier Code) or SWIFT code, that identifies a specific bank in | ||
# international transactions (e.g., BIC: DEUTDEFF for Deutsche Bank) | ||
|
||
bankname: Optional[str] = None | ||
# name of the bank e.g. Deutsche Bank |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
kannst du deutsche docstrings drauß machen?
also einmal mit :
nach dem #
und dann halt inhaltlich auf deutsch?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hast du ein bsp für mich wie du es genau haben willst?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so?
648d26f
Damit das COM nicht im luftleeren Raum steht, sollte es entsprechend PR Hochfrequenz/BO4E-dotnet#466 auch noch zum Geschaeftspartner hinzugefügt werden. Hier: 5cff34e |
@@ -193,6 +193,7 @@ | |||
"Zaehlertyp", | |||
"ZaehlertypSpezifikation", | |||
"ZusatzAttribut", | |||
"Bankverbindung", |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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
Abgesehen von der Alphabetfrage passt es so für mich |
Im Moment wird das weder autogeneriert noch automatisch sortiert. Es ist auch nicht richtig sortiert, nur innerhalb von BOs, COMs und ENUMs. |
No description provided.