Hello,
In a disclosure I have the following code with result tags:
{% comment %} CLAUSULE B - ATAD-INTERESTAFTREKBEPERKING {% endcomment %}
{% comment %}Captures{% endcomment %}
{% if custom.ATADinterestlimit.yes_no == 1 and custom.ATAD.option1 == true %}
{% capture ATAD_interestlimit %}{% t “Wij wensen op te merken dat in het kader van de interestaftrekbeperking het geconsolideerde financieringskostensurplus (financieringskosten verminderd met de financieringsopbrengsten) nog slechts aftrekbaar is tot maximum het hoogste van volgende 2 bedragen:”" %}{% t "- 30% van de geconsolideerde fiscale EBITDA"" %} {% t "- 3 miljoen EUR."" %}
{% t “Aangezien voor uw dossier het gecumuleerde financieringskosten surplus van de groep effectief kleiner is dan € 3 Mio, valt het dan ook te overwegen om te verzaken aan de EBITDA berekening. Er werd dus eveneens geen verworpen uitgave gerapporteerd.” %}
{% t “Indien wordt verzaakt aan de EBITDA berekening, dient evenwel minstens 1 groepsvennootschap een overeenkomst bij de aangifte vennootschapsbelasting te voegen waarbij alle leden van de groep overeen komen om af te zien van de fiscale EBITDA-berekening.” %}
{% t “De overeenkomst “Vrijstelling van de berekening van de EBITDA” die door elke groepsmaatschappij moet worden ondertekend zal u via afzonderlijk schrijven worden bezorgd.” %}{% endcapture %}
{% if custom.ATAD.vrij_veld == true %}
{% capture ATAD_interestlimit_vrij_veld %}{% t “Aan te vullen voor specifiek dossier: VRIJ AAN TE VULLEN” %}{% endcapture %}
{% endif %}
{% endif %}{% if custom.ATADinterestlimit.yes_no == 1 and custom.ATAD.option1 == true %}
{{ header_text2 }}
|-75%---------------------------------------------------------------------|-----------------------------------------------------------------------------+
| {{ ATAD_interestlimit }}
| {% if custom.ATAD.vrij_veld == true %}{% input custom.ATAD_interest.vrij_veld as:text default:ATAD_interestlimit_vrij_veld %} {% endif %}{% endif %}
{% if custom.ATADinterestlimit.yes_no == 1 and custom.ATAD.option1 == true %}
{% result ‘ATAD_interestlimit’ ATAD_interestlimit %}
{% if custom.ATAD_interest.vrij_veld != blank %}
{% result ‘ATAD.vrij_veld’ custom.ATAD_interest.vrij_veld %}
{% else %}
{% result ‘ATAD.vrij_veld’ ATAD_interestlimit_vrij_veld %}
{% endif %}
{% endif %}
The code works perfect in my disclosure. This is the result on the screen:
But I have a problem in my document when I call the result tag for the free text I don’t receive text.
This is the code in my document:
{% if period.reconciliations.2018_working_docs.custom.ATADinterestlimit.yes_no == 1 %}
{::group}
{% t “CLAUSULE B - ATAD-INTERESTAFTREKBEPERKING” %}
{{ period.reconciliations.2018_working_docs.results.ATAD_interestlimit }}
{{ period.reconciliations.2018_working_docs.results.ATAD.vrij_veld }}{:/group}
{% endif %}
This is the result:
You can see that the text “Vrije tekst” is not shown?
My second problem is that the font from the text "- 30% to De overeenkomst … "is not the same as the first paragrah “Wij wensen …” and I don’t know why because whole the text comes from one result tag.
Can you help me please?
Thanks a lot,
Sylvie