Hello,
In our disclosure Box 15 we are using different tables to put the data.
This is my input in year 2017:
.When I go to the year 2018, the data need to be shown in:
Is it possible to do this via the code?
Thanks,
Sylvie
This is my code for the disclosure:
Blockquote
{% t= “Onderneming” fr:“Société” en:“Company” de:“Firma” %}
{% t= “Afsluitdatum” fr:“Date de clôture” en:“End date” de:“Anmeldeschluss” %}
{% t= “Balans” fr:“Bilan” en:“Balance sheet” de:“Bilanz” %}
{% t= “Omzet” fr:“Chiffre d’affaires” en:“Turnover” de:“Umsatzerlöse” %}
{% t= “Personeel” fr:“Personnel” en:“Staff” de:“Personal” %}
{% t= “Subtotaal” fr:“Sous-total” en:“Subtotal” de:“Zwischensumme” %}
{% t= “Subtotaal correcties” fr:“Sous-total corrections” en:“Subtotal corrections” de:“Zwischensumme Korrekturen” %}
{% t= “Geconsolideerde gegevens” fr:“Données consolidées” en:“Consolidated data” de:“Konsolidierte Daten” %}
{% t= “Voldaan aan criteria VKT-schema?” fr:“Satisfait aux critères schéma abrégé ?” en:“Met criteria abbreviated-schema?” de:“Abgekürzte Kriterien erfüllt?” %}
{% t= “HUIDIG BOEKJAAR” fr:“EXERCICE EN COURS” en:“CURRENT FISCAL YEAR” de:“LAUFENDE GESCHAFTSJAHR” %}
{% t= “Correcties huidig boekjaar” fr:“Corrections exercice en cours” en:“Corrections current fiscal year” de:“Korrekturen laufende Geschäftsjahr” %}
{% t= “VORIG AFGESLOTEN BOEKJAAR” fr:“EXERCICE CLOTURE PRECEDENT” en:“LAST CLOSED FISCAL YEAR” de:“LETZTEN ABGESCHLOSSENEN GESCHAFTSJAHR” %}
{% t= “Correcties vorig afgesloten boekjaar” fr:“Corrections exercice clôturé précédent” en:“Corrections last closed fiscal year” de:“Korrekturen letzten abgeschlossenen Geschäftsjahr” %}
{% t= “VOORLAATST AFGESLOTEN BOEKJAAR” fr:“AVANT DERNIER EXERCICE CLOTURE” en:“LAST BUT ONE CLOSED FISCAL YEAR” de:“ZULETZT ABER EINE STEUERLICHE JAHR ABGESCHLOSSEN” %}
{% t= “Correcties voorlaatst afgesloten boekjaar” fr:“Corrections avant dernier exercice clôturé” en:“Corrections last but one closed fiscal year” de:“Korrekturen zuletzt aber eine steuerliche Jahr abgeschlossen” %}
{% t= “Op te stellen schema jaarrekening:” fr:“Schéma comptes annuels à établir :” en:“To schedule annual accounts:” de:“Planen Sie Jahresabschlüsse” %}
{% t= “VKT schema” fr:“Schéma abrégé” en:“Abbreviated schema” de:“Verkürzter Form” %}
{% t= "VOL schema fr:“Schéma complet” en:“Full schema” de:“Volle Form” %}
{% t= “JA” fr:“OUI” en:“YES” de:“JA” %}
{% t= "NEE fr:“NON” en:“NO” de:“NEIN” %}
{% t= “onderneming” nl:“onderneming” fr:“Ssciété” en:“company” de:“firma” %}
{% t= “afsluidatum” nl:“aflsuidatum” fr:“date de clôture” en:“end date” de:“anmeldeschluss” %}
{% t= “balans” nl:“balans” fr:“bilan” en:“balance sheet” de:“bilanz” %}
{% t= “omzet” nl:“omzet” fr:“chiffre d’affaires” en:“turnover” de:“umsatzerlöse” %}
{% t= “personeel” nl:“personeel” fr:“personnel” en:“staff” de:“personal” %}
{% assign vak15_PY = period.minus_1y.reconciliations.vak15 %}
{% assign vak15_PY_1 = period.minus_2y.reconciliations.vak15 %}
{% ic %}Version 1.0 dd 02/02/2017{% endic %}
{% t “HUIDIG BOEKJAAR” %}
|{% t “Onderneming” %} |{% t “Afsluitdatum” %} |{% t “Balans” %} | {% t “Omzet” %} |{% t “Personeel” %}
|:---------40%------------------|---------15%---------------------------:|---------15%-----------------------------:|---------15%----------------------------:|----15%-------:+ {% fori detail in custom.vak15_details %}
|{% input detail.onderneming %}{% result ‘detail_onderneming’ (detail.onderneming) %} |{% input detail.afsluitdatum as:date %} | {% $0+input detail.balans as:currency %} {% result ‘detail_balans’ (detail.balans) %}| {% $1+input detail.omzet as:currency %} |{% $2+input detail.personeel as:currency %} {% endfori %}
|_ {% t “Subtotaal” %} | | {{ $0 | currency }} | {{ $1 | currency }} | {{ $2 | currency }} _|
|
{% t “Correcties huidig boekjaar” %}
|{% t “Onderneming” %} |{% t “Afsluitdatum” %} |{% t “Balans” %} | {% t “Omzet” %} |
|:---------40%-------------------|---------15%----------------------------:|---------15%-------------------------------:|---------15%------------------------------:|----15%-------:+ {% fori detail2 in custom.vak15_2_details %}
|{% input detail2.onderneming %} |{% input detail2.afsluitdatum as:date %} | {% $10+input detail2.balans as:currency %} | {% $11+input detail2.omzet as:currency %} | {% endfori %}
|_ {% t “Subtotaal” %} |
Blockquote