Hi all, we are currently developing a new template in Silverfin to provide an overview of the investments listed in annex 275U.
For each investment, we want to display:
- The acquisition value
- The applicable investment deduction percentage
- The calculated amount of the investment deduction
I’ve already created a code that lists the investments and their acquisition values. However, I’m not sure how to include the deduction percentage and the calculated amount for each investment.
Below is the code I have created so far:
´´´
{% assign bereik = period.accounts | range: “21,22,23,24”%}
Nieuwe investeringen - Investeringsaftrek
{% for account in bereik %}
{% for detail in account.details %}
{% if detail.custom.investment_deduction == true%}
{{detail.date }} - {{ detail.custom.title }} - {{ detail.custom.value |currency }} - {{ detail.type_investment_inputs }}
{%endif%}
{% endfor %}
{% endfor %}‘’’
I’d appreciate any examples, ideas, or best practices to help move this forward. Thanks in advance!