Beroepskosten - reconciliation

Hello @Andrew,

You’ll need to take the variable or object (that has the amount you wish to link to in another template), in a result-tag.

For instance:

if the register $23 has the amount you wish to link to, you can add it in a result tag like this :

{% result 'total_beperking' $23 %}

So the amount $23 holds, will be saved in the result-tag total_beperking; this can be used in

  • another template other than report, by using this code :

{{ period.reconciliations.handle_beroepskosten.results.total_beperking | currency }}

So we search for any recon-template by the handle named “handle_beroepskosten” and which results there are in there with the result-tag “total_beperking” .

  • report templates, by using this code :

You can use the same code BUT a report is already period-dependant so we’ll use need to use this code (without the period-part) :


{{ reconciliations.handle_beroepskosten.results.total_beperking | currency }}

More info can be found here as well :