Skip to content

Commit

Permalink
Allow unknown construction date = onbekend
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenHosper committed Dec 12, 2024
1 parent 47ca3e3 commit 64086e4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Update the docs.
- Add the GLD Endpoints and models.
- Add GLD option to bulk endpoint.
- Enhancement: Allow for unknown construction date (IMBRO/A).


## 0.66 (2024-12-05)
Expand Down
4 changes: 4 additions & 0 deletions api/bro_upload/templates/move_GMW_Construction.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@
<ns:maintenanceResponsibleParty>{{ sourcedocs_data.maintenanceResponsibleParty }}</ns:maintenanceResponsibleParty>
<ns:wellHeadProtector codeSpace="urn:bro:gmw:WellHeadProtector">{{ sourcedocs_data.wellHeadProtector }}</ns:wellHeadProtector>
<ns:wellConstructionDate>
{% if not sourcedocs_data.wellConstructionDate %}
<ns1:date>onbekend</ns1:date>
{% elif sourcedocs_data.wellConstructionDate %}
<ns1:date>{{ sourcedocs_data.wellConstructionDate }}</ns1:date>
{% endif %}
</ns:wellConstructionDate>
<ns:deliveredLocation>
<ns2:location ns3:id="id-f072811a-323d-40f4-8ebc-7fb0df43c660" srsName="urn:ogc:def:crs:EPSG::28992">
Expand Down
4 changes: 4 additions & 0 deletions api/bro_upload/templates/registration_GMW_Construction.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@
<ns:maintenanceResponsibleParty>{{ sourcedocs_data.maintenanceResponsibleParty }}</ns:maintenanceResponsibleParty>
<ns:wellHeadProtector codeSpace="urn:bro:gmw:WellHeadProtector">{{ sourcedocs_data.wellHeadProtector }}</ns:wellHeadProtector>
<ns:wellConstructionDate>
{% if not sourcedocs_data.wellConstructionDate %}
<ns1:date>onbekend</ns1:date>
{% elif sourcedocs_data.wellConstructionDate %}
<ns1:date>{{ sourcedocs_data.wellConstructionDate }}</ns1:date>
{% endif %}
</ns:wellConstructionDate>
<ns:deliveredLocation>
<ns2:location ns3:id="id-f072811a-323d-40f4-8ebc-7fb0df43c660" srsName="urn:ogc:def:crs:EPSG::28992">
Expand Down
4 changes: 4 additions & 0 deletions api/bro_upload/templates/replace_GMW_Construction.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@
<ns:maintenanceResponsibleParty>{{ sourcedocs_data.maintenanceResponsibleParty }}</ns:maintenanceResponsibleParty>
<ns:wellHeadProtector codeSpace="urn:bro:gmw:WellHeadProtector">{{ sourcedocs_data.wellHeadProtector }}</ns:wellHeadProtector>
<ns:wellConstructionDate>
{% if not sourcedocs_data.wellConstructionDate %}
<ns1:date>onbekend</ns1:date>
{% elif sourcedocs_data.wellConstructionDate %}
<ns1:date>{{ sourcedocs_data.wellConstructionDate }}</ns1:date>
{% endif %}
</ns:wellConstructionDate>
<ns:deliveredLocation>
<ns2:location ns3:id="id-f072811a-323d-40f4-8ebc-7fb0df43c660" srsName="urn:ogc:def:crs:EPSG::28992">
Expand Down

0 comments on commit 64086e4

Please sign in to comment.