-
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 Zeitmenge and Zeitspanne (as future replacements for Zeitraum) #611
Conversation
src/bo4e/com/zeitmenge.py
Outdated
class Zeitmenge(COM): | ||
""" | ||
Eine Zeitmenge ist eine Anzahl mit Zeiteinheit; z.B. "5 Tage" oder "1 Monat". | ||
Der Unterschied zur Zeitspanne ist, dass Start- und Endzeitpunkt nicht angegeben werden. | ||
Die Zeitmenge ist aus dem COM Zeitraum hervorgegangen, das in Zeitspanne und Zeitmenge aufgeteilt wurde. | ||
""" | ||
|
||
# I made those _not_ optional because the entire instance of Zeitmenge is pointless if one of the two is missing | ||
einheit: Zeiteinheit #: z.B. Tage | ||
dauer: Decimal #: z.B: 5 |
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 soll doch mit dem COM Menge verheiratet werden. Planst du, das hier einzuführen, um es später wieder rauszukicken?
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.
dfer PR ist von gestern.
src/bo4e/com/zeitspanne.py
Outdated
""" | ||
|
||
# I made those _not_ optional because the entire instance of Zeitmenge is pointless if one of the two is missing | ||
start: Optional[datetime] #: inklusiver Beginn |
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.
In Pydantic v2 musst du explizit den default-Wert None
mitgeben, wenn du das Feld auch weglassen können willst.
Hi @DeltaDaniel ich habe gesehen, du hast das schon in #625 genutzt. Sollen wir vllt erst den hier durchbringen? ich komm heute nicht mehr dazu, den mit den Absprachen von heute zu updaten. |
This branch was merged into the branch in this PR: #625, has been updated in parts and is now on main. So this PR has become obsolete. |
No description provided.