-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bring create eSuite klant logic in line with spec
- Loading branch information
1 parent
a0173a3
commit ed85115
Showing
6 changed files
with
205 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,6 +156,10 @@ def __init__(self): | |
emailadres="[email protected]", | ||
telefoonnummer="0612345678", | ||
toestemmingZaakNotificatiesAlleenDigitaal=False, | ||
voornaam="John", | ||
achternaam="Doe", | ||
voorvoegselAchternaam="van der", | ||
bedrijfsnaam="", | ||
) | ||
self.klant_kvk = generate_oas_component_cached( | ||
"kc", | ||
|
@@ -169,6 +173,12 @@ def __init__(self): | |
emailadres="[email protected]", | ||
telefoonnummer="0687654321", | ||
toestemmingZaakNotificatiesAlleenDigitaal=False, | ||
# TODO: This should really include bedrijfsnaam, but that would require | ||
# updating the schemas | ||
voornaam="", | ||
achternaam="", | ||
voorvoegselAchternaam="", | ||
bedrijfsnaam="AcmeCorp B.V.", | ||
) | ||
self.klant_vestiging = generate_oas_component_cached( | ||
"kc", | ||
|
@@ -182,6 +192,10 @@ def __init__(self): | |
emailadres="[email protected]", | ||
telefoonnummer="0612345678", | ||
toestemmingZaakNotificatiesAlleenDigitaal=False, | ||
voornaam="", | ||
achternaam="", | ||
voorvoegselAchternaam="", | ||
bedrijfsnaam="AcmeCorp B.V.", | ||
) | ||
self.contactmoment = generate_oas_component_cached( | ||
"cmc", | ||
|
Oops, something went wrong.