Skip to content
Snippets Groups Projects
Commit c30957f8 authored by Tomáš Valenta's avatar Tomáš Valenta
Browse files

update required address bits

parent 6924d307
No related branches found
No related tags found
No related merge requests found
Pipeline #15414 passed
...@@ -222,7 +222,7 @@ class Signee( ...@@ -222,7 +222,7 @@ class Signee(
"address_zip", "address_zip",
"address_country", "address_country",
): ):
if getattr(self, field): if getattr(self, field) not in ("", None):
return True return True
return False return False
...@@ -247,7 +247,10 @@ class Signee( ...@@ -247,7 +247,10 @@ class Signee(
} }
) )
if self.entity_type != self.EntityTypes.OTHER: if self.entity_type not in (
self.EntityTypes.OTHER,
self.EntityTypes.NATURAL_PERSON,
):
for field in ( for field in (
"address_street_with_number", "address_street_with_number",
"address_district", "address_district",
......
...@@ -448,7 +448,7 @@ ...@@ -448,7 +448,7 @@
{% if not signature.signee.entity_has_public_address %} {% if not signature.signee.entity_has_public_address %}
{% if user.can_view_confidential %} {% if user.can_view_confidential %}
<div class="flex items-center mb-3"> <div class="flex items-center mb-3">
{% include "contracts/includes/private_info_icon.html" %}<span class="text-red-600">Máš přístup k celé adrese.</span> {% include "contracts/includes/private_info_icon.html" %}<span class="text-red-600">Máš přístup k soukromým informacím.</span>
</div> </div>
{% else %} {% else %}
<span class="text-gray-500">(zobrazujeme pouze obec)</span> <span class="text-gray-500">(zobrazujeme pouze obec)</span>
...@@ -467,12 +467,12 @@ ...@@ -467,12 +467,12 @@
{% endif %} {% endif %}
{% if signature.signee.ico_number %} {% if signature.signee.ico_number %}
<br><br> <br>
<strong>IČO</strong>: {{ signature.signee.ico_number }} <strong>IČO</strong>: {{ signature.signee.ico_number }}
{% endif %} {% endif %}
{% if user.can_view_confidential and signature.signee.date_of_birth %} {% if user.can_view_confidential and signature.signee.date_of_birth %}
<br><br> <br>
<strong>Datum narození</strong>: {{ signature.signee.date_of_birth }} <strong>Datum narození</strong>: {{ signature.signee.date_of_birth }}
{% endif %} {% endif %}
......
...@@ -49,12 +49,12 @@ ...@@ -49,12 +49,12 @@
{% endif %} {% endif %}
{% if signee.ico_number %} {% if signee.ico_number %}
<br><br> <br>
<strong>IČO</strong>: {{ signee.ico_number }} <strong>IČO</strong>: {{ signee.ico_number }}
{% endif %} {% endif %}
{% if user.can_view_confidential and signee.date_of_birth %} {% if user.can_view_confidential and signee.date_of_birth %}
<br><br> <br>
<strong>Datum narození</strong>: {{ signee.date_of_birth }} <strong>Datum narození</strong>: {{ signee.date_of_birth }}
{% endif %} {% endif %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment