From 3c1fd0285ebff35428ad0512d3e371980642270e Mon Sep 17 00:00:00 2001
From: Petr Šmerkl <46304018+SveterCZE@users.noreply.github.com>
Date: Fri, 12 Mar 2021 23:46:24 +0100
Subject: show supervisory board members in actual extract
---
templates/extract-actual.html | 111 +++++++++++++++++++++++++++++++++++++++++-
1 file changed, 110 insertions(+), 1 deletion(-)
(limited to 'templates')
diff --git a/templates/extract-actual.html b/templates/extract-actual.html
index 1a08996..b782914 100644
--- a/templates/extract-actual.html
+++ b/templates/extract-actual.html
@@ -28,6 +28,13 @@
{% endif %}
{% endfor %}
+{% set spolecnici_notes = [] %}
+{% for i in range (row.spolecnici|length) %}
+ {% if row.spolecnici[i].vymaz_datum == 0 %}
+ {% set spolecnici_notes = spolecnici_notes.append(row.spolecnici[i]) %}
+ {% endif %}
+{% endfor %}
+
{% set sole_shareholder_notes = [] %}
{% for i in range (row.jediny_akcionar|length) %}
{% if row.jediny_akcionar[i].vymaz_datum == 0 %}
@@ -42,6 +49,13 @@
{% endif %}
{% endfor %}
+{% set dozorci_rada_notes = [] %}
+{% for i in range (row.dozorci_rada_text|length) %}
+ {% if row.dozorci_rada_text[i].vymaz_datum == 0 %}
+ {% set dozorci_rada_notes = dozorci_rada_notes.append(row.dozorci_rada_text[i]) %}
+ {% endif %}
+{% endfor %}
+
{% set prokurist_notes = [] %}
{% for i in range (row.prokurista|length) %}
{% if row.prokurista[i].vymaz_datum == 0 %}
@@ -151,7 +165,7 @@
- Sídlo:{{ row.sidlo_text[0]}} |
+ Sídlo: |
{% for i in range (row.sidlo_text|length) %}
{% if row.sidlo_text[i].vymaz_datum == 0 %}
{{ row.sidlo_text[i].sidlo_text.adresa_text }} |
@@ -238,6 +252,41 @@
+ {% if dozorci_rada_notes|length > 0 %}
+ {% for i in range (dozorci_rada_notes|length) %}
+
+ Dozorčí rada: |
+ |
+
+
+ {% if dozorci_rada_notes[i].clenove|length > 0 %}
+ {% for j in range (dozorci_rada_notes[i].clenove|length) %}
+ {% if dozorci_rada_notes[i].clenove[j].vymaz_datum == 0 %}
+
+ {% if dozorci_rada_notes[i].clenove[j].funkce != "0" %} {{dozorci_rada_notes[i].clenove[j].funkce }} {% endif %} |
+ {{ dozorci_rada_notes[i].clenove[j].jmeno.jmeno }} {{ dozorci_rada_notes[i].clenove[j].jmeno.prijmeni }}{% if dozorci_rada_notes[i].clenove[j].jmeno.datum_naroz != "" %}, nar. {{ dozorci_rada_notes[i].clenove[j].jmeno.datum_naroz }}{% endif %}
+ {{ dozorci_rada_notes[i].clenove[j].adresa.adresa_text }}
+ {% if dozorci_rada_notes[i].clenove[j].funkce_od != 0 %} Den vzniku funkce: {{ dozorci_rada_notes[i].clenove[j].funkce_od}}{% endif %}
+ {% if dozorci_rada_notes[i].clenove[j].clenstvi_od != 0 %} Den vzniku členství: {{ dozorci_rada_notes[i].clenove[j].clenstvi_od}}{% endif %} |
+
+ {% endif %}
+ {% endfor %}
+ {% endif %}
+
+ {% if dozorci_rada_notes[i].pocet_clenu|length > 0 %}
+ {% for j in range (dozorci_rada_notes[i].pocet_clenu|length) %}
+ {% if dozorci_rada_notes[i].pocet_clenu[j].vymaz_datum == 0 %}
+
+ Počet členů: |
+ {{ dozorci_rada_notes[i].pocet_clenu[j].pocet_clenu_value }} |
+
+ {% endif %}
+ {% endfor %}
+ {% endif %}
+
+ {% endfor %}
+ {% endif %}
+
@@ -274,6 +323,66 @@
+ {% if spolecnici_notes|length > 0 %}
+
+ Společníci: |
+ |
+
+ {% for i in range (spolecnici_notes|length) %}
+
+ Společník: |
+ {% if spolecnici_notes[i].spolecnik_po_id == None %} {{ spolecnici_notes[i].jmeno.jmeno }} {{ spolecnici_notes[i].jmeno.prijmeni }}{% if spolecnici_notes[i].jmeno.datum_naroz != "" %}, nar. {{ spolecnici_notes[i].jmeno.datum_naroz }}{% endif %} {% endif %}
+ {% if spolecnici_notes[i].spolecnik_fo_id == None %} {{ spolecnici_notes[i].oznaceni_po.nazev }}{% if spolecnici_notes[i].oznaceni_po.reg_cislo != 0 %}, reg č. {{ spolecnici_notes[i].oznaceni_po.reg_cislo }}{% endif %}{% if spolecnici_notes[i].oznaceni_po.ico != 0 %}, IČ {{ spolecnici_notes[i].oznaceni_po.ico }}{% endif %} {% endif %}
+ {{spolecnici_notes[i].adresa.adresa_text}} |
+
+ {% set spolecnik_podily = [] %}
+ {% for j in range (spolecnici_notes[i].podily|length) %}
+ {% if spolecnici_notes[i].podily[j].vymaz_datum == 0 %}
+ {% set spolecnik_podily = spolecnik_podily.append(spolecnici_notes[i].podily[j]) %}
+ {% endif %}
+ {% endfor %}
+
+ {% for k in range (spolecnik_podily|length) %}
+
+ Podíl: |
+
+ {% if spolecnik_podily[k].vklad_typ == "KORUNY" %}
+ {% set vklad_typ_string = "Kč" %}
+ {% elif spolecnik_podily[k].vklad_typ == "EURA" %}
+ {% set vklad_typ_string = "Euro" %}
+ {% else %}
+ {% set vklad_typ_string = "" %}
+ {% endif %}
+
+
+ {% if spolecnik_podily[k].splaceni_typ == "KORUNY" %}
+ {% set splaceni_typ_string = "Kč" %}
+ {% elif spolecnik_podily[k].splaceni_typ == "PROCENTA" %}
+ {% set splaceni_typ_string = "%" %}
+ {% elif spolecnik_podily[k].splaceni_typ == "EURA" %}
+ {% set splaceni_typ_string = "Euro" %}
+ {% else %}
+ {% set splaceni_typ_string = "" %}
+ {% endif %}
+
+
+ {% if spolecnik_podily[k].souhrn_typ == "PROCENTA" %}
+ {% set souhrn_typ_string = "%" %}
+ {% else %}
+ {% set souhrn_typ_string = "" %}
+ {% endif %}
+ Vklad: {{ spolecnik_podily[k].vklad_text }} {{ vklad_typ_string }}
+ Splaceno: {{ spolecnik_podily[k].splaceni_text }} {{ splaceni_typ_string }}
+ {% if spolecnik_podily[k].souhrn_text != "0"%}Podíl: {{ spolecnik_podily[k].souhrn_text }} {{ souhrn_typ_string }}{% endif %}
+ {% if spolecnik_podily[k].druh_podilu.druh_podilu != "0" %} Druh podílu: {{ spolecnik_podily[k].druh_podilu.druh_podilu }}{% endif %}
+ |
+
+ {% endfor %}
+
+
+
+ {% endfor %}
+ {% endif %}
--
cgit