Skip to content

Commit

Permalink
[#233] Update klantinteracties.json and help_text in migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmursa-dev committed Dec 23, 2024
1 parent 634a0f3 commit e727954
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 4.2.15 on 2024-12-20 11:34
# Generated by Django 4.2.15 on 2024-12-23 13:15

import django.core.validators
from django.db import migrations, models
Expand All @@ -22,7 +22,7 @@ class Migration(migrations.Migration):
("vestiging", "Vestiging"),
("overige", "Overige"),
],
help_text="Type van het object, bijvoorbeeld: 'INGESCHREVEN NATUURLIJK PERSOON'.",
help_text="Type van het object, bijvoorbeeld: 'NATUURLIJK PERSOON'.",
max_length=200,
verbose_name="objecttype",
),
Expand Down Expand Up @@ -50,7 +50,7 @@ class Migration(migrations.Migration):
("rsin", "Rsin"),
("overige", "Overige"),
],
help_text="Naam van de eigenschap die het object identificeert, bijvoorbeeld: 'Burgerservicenummer'.",
help_text="Naam van de eigenschap die het object identificeert, bijvoorbeeld: 'Bsn'.",
max_length=200,
verbose_name="soort object ID",
),
Expand Down
6 changes: 2 additions & 4 deletions src/openklant/components/klantinteracties/models/partijen.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,17 +355,15 @@ class PartijIdentificator(models.Model):
# Partij-identificator fields
partij_identificator_code_objecttype = models.CharField(
_("objecttype"),
help_text=_(
"Type van het object, bijvoorbeeld: 'INGESCHREVEN NATUURLIJK PERSOON'."
),
help_text=_("Type van het object, bijvoorbeeld: 'NATUURLIJK PERSOON'."),
choices=PartijIdentificatorCodeObjectType.choices,
max_length=200,
blank=True,
)
partij_identificator_code_soort_object_id = models.CharField(
_("soort object ID"),
help_text=_(
"Naam van de eigenschap die het object identificeert, bijvoorbeeld: 'Burgerservicenummer'."
"Naam van de eigenschap die het object identificeert, bijvoorbeeld: 'Bsn'."
),
choices=PartijIdentificatorCodeSoortObjectId.choices,
max_length=200,
Expand Down
8 changes: 4 additions & 4 deletions src/openklant/fixtures/klantinteracties.json
Original file line number Diff line number Diff line change
Expand Up @@ -340,10 +340,10 @@
"uuid": "dd328a2e-7b8e-4809-be28-f9f894c11c34",
"partij": 1,
"andere_partij_identificator": "",
"partij_identificator_code_objecttype": "INGESCHREVEN NATUURLIJK PERSOON",
"partij_identificator_code_soort_object_id": "Burgerservicenummer",
"partij_identificator_object_id": "123456788",
"partij_identificator_code_register": "BRP"
"partij_identificator_code_objecttype": "natuurlijk_persoon",
"partij_identificator_code_soort_object_id": "bsn",
"partij_identificator_object_id": "296648875",
"partij_identificator_code_register": "brp"
}
},
{
Expand Down

0 comments on commit e727954

Please sign in to comment.