Below you can find an example of a cover letter that can be send to the client, along with the management report (jaarbundel).
Create variables to take along in the report text :
{% assign winst_verlies = -#60__68-#70__78 %}
Use this variable in a text :
sluit met een
{% if winst_verlies >= 0%} te bestemmen winst
{% else %} te verwerken verlies
{% endif %}
van het boekjaar van **EUR {{ winst_verlies | currency }}**.
The complete example of a cover letter :
<table class="usr-width-100">
<thead>
<tr>
<th class="usr-width-60"></th>
<th class="usr-width-30"></th>
<th class="usr-width-10"></th>
</tr>
</thead>
<tbody>
<tr>
<td class=""></td>
<td class="usr-align-left">{{ company.name }} {{ company.company_form }}</td>
<td class=""></td>
</tr>
<tr>
<td class=""></td>
<td class="usr-align-left">{{ company.street }}</td>
<td class=""></td>
</tr>
<tr>
<td class=""></td>
<td class="usr-align-left">{{ company.city }}</td>
<td class=""></td>
</tr>
<tr>
<td class="" colspan="3"></td>
</tr>
<tr>
<td class=""></td>
<td class="usr-align-left">Gent, {{'today' | date: '%d %B %Y' }}</td>
<td class=""></td>
</tr>
<tr>
<td class="" colspan="3"></td>
</tr>
<tr>
<td class="" colspan="3"></td>
</tr>
</tbody>
</table>
Geachte,
<br>
**_A. Opdracht_**
In navolging van onze werkzaamheden hebben wij de cijfers opgemaakt
**{{period.year_start_date | date: '%-d %B %Y' }}** tot **{{period.end_date | date: '%-d %B %Y'}}**
van de **{{company.company_form | upcase}} {{company.name | upcase }}** op basis van de door
u verstrekte gegevens.
De verantwoordelijkheid voor de juistheid en volledigheid van die gegevens en
de hierop gebaseerde cijfers over deze periode berust bij de leiding van de vennootschap.
<br>
{% input custom.opdrachtbrief.opdracht as:text default:' ' size:mini %}
<br>
_**B. Werkzaamheden**_
Onze werkzaamheden bestonden, in hoofdzaak uit het verzamelen, verwerken, rubriceren en
samenvatten van financiële gegevens.
De aard en omvang van deze werkzaamheden brengen met zich mee dat zij niet kunnen
resulteren in de zekerheid omtrent de getrouwheid van de cijfers over de periode
{{period.year_start_date | date: '%-d %B %Y' }} tot {{period.end_date | date: '%-d %B %Y'}}.
<br>
Onze opdracht bestaat er niet in om de echtheid na te gaan van de bedragen en documenten
die ons zijn overgemaakt, noch van de inhoud en de conformiteit met de wettelijke bepalingen
van akten, contracten, inventarissen, facturen en bewijsstukken van welke aard ook, die ons
zijn toevertrouwd of voorgelegd als zijnde bewijskrachtige stukken.
Bovendien hebben wij niet als opdracht om de juistheid, volledigheid, getrouwheid of
wettelijkheid van de jaarrekening te verifiëren of te attesteren.
Niettegenstaande het voormelde verzoeken wij het bestuursorgaan om ons per kerende
en schriftelijk op de hoogte te brengen van eventuele onvolledigheden, onjuistheden of
andere opmerkingen die het bestuursorgaan in de jaarrekening en het Jaarrapport zou
vaststellen en die de getrouwheid van de jaarrekening en het Jaarrapport in het gedrang
zou kunnen brengen.
{% input custom.opdrachtbrief.werkzaamheden as:text default:' ' size:mini %}
<br>
_**C. Bevestiging**_
Op basis van de ons verstrekte gegevens hebben wij de cijfers over de periode
**{{period.year_start_date | date: '%-d %B %Y' }}** tot **{{period.end_date | date: '%-d %B %Y'}}**
samengesteld. De jaarrekening waarvan de balanstotalen **EUR {{ period.accounts.assets.value | currency }}**
bedragen, sluit met een {% if winst_verlies >= 0%} te bestemmen winst {% else %} te verwerken
verlies {% endif %} van het boekjaar van **EUR {{ winst_verlies | currency }}**.
De resultaatbestemming werd reeds in de balans verwerkt.
Alvorens publicatie en neerlegging van de jaarrekening, wordt deze eerst nog besproken met {{ director_type }} en na goedkeuring van de algemene vergadering neergelegd.
{% input custom.opdrachtbrief.bevestiging as:text default:' ' size:mini %}
<br>
Steeds bereid tot andere toelichting,
Met vriendelijke groeten
<br>
<br>
{% input custom.opdrachtbrief.naam %}
{% input custom.opdrachtbrief.functie %}
This case has been updated on 03/10/2022 to include HTML tables.
In most environments, the directors are available as period.directors, so you could do something very similar to the whatâs done in âhet verslag van de zaakvoerdersâ:
Is it possible to add the detail you have typed in for example the account of âvoordelen alle aardâ (account 746400) to generate automatically in your âbegeleidend schrijvenâ ? If yes, how to you start ? Thx in advance !
Iâve done this and it works almost. We get all the bestuurder, but the template mentions everyware âZaakvoerdersâ.
Iâve copied the code from âVerslag zaakvoerderâ.
Another issue - in my âbegeleidend schrijvenâ I want to use a text if an amount in account is higher than the year before.
I think it has something to do with period.minus_1y, but how to integrate in text template.
You helped me with the integration of the âvoordelen alle aardâ, where the detail is automatically shown in my letter. This is ok, but in my letter I get lines under each âvoordeelâ - is their a way to get them out , because it doesnât look great that way. See example below.
In my detail of the âvoordelen alle aardâ⊠If I just want the text out of my detail and not the amounts, can i use the for in my code ? I want to put in the amounts manually.
{% for detail in current_account.details %}
|----------80%--------|---------20%--------:+
|{{detail.custom.title}}|{% input custom.some.value as:currency%}{% endfor %}
Thatâs caused by your definition of the table @Andrew
If you do it like this :
|----------80%--------|---------20%--------:+{% for detail in current_account.details %}
|{{detail.custom.title}}|{% input custom.some.value as:currency%}{% endfor %}
youâll have the view youâll want.
Because you put the table after the first part of the fori-loop, that table was executed for every loop, causing a line for each iteration of the loop.
One thing. If I put an amount in the table, all my lines are filled with that same amount. Does the for-loop has something to do with that ? Can something be done about this ?
Which template are you using to make those details? Can you post the code of that? Because I think you are using one of those custom variable thatâs in the detail, and you want to add extra amount to each line, no?
Hopefully this isnât confusing bc Iâm answering to different questions within one topicâŠ
The code you are searching for, is this :
|{% for zaakvoerder in period.directors %}{{ zaakvoerder.name }}<br>{% if director_type == 'bestuurders' %}{% if zaakvoerder.statutory == true %}Gedelegeerd bestuurder{% else %}Bestuurder{% endif %}{% else %}{% if zaakvoerder.statutory == true %}Statutair zaakvoerder{% else %}Zaakvoerder{% endif %}{% endif %} |{% assign modulo = forloop.index | modulo:columns %}{% if modulo == 0 %}{% unless forloop.last %}
So, this all depends what is given in the âbedrijfsparametersâ. Is everything filled in correctly there? That is, check the names that are up for âstatutairâ and such
If the issue with the signature is also happening in other reports, then itâs better to contact our helpdesk.
If not, then itâs something to the adjusted code of your custom made text template.