Hello fellow users,
After following the workshops ‘Let’s get technical’ I’ve tried to build a template for the SME investment reserve. See code below:
**Aangelegde reserves**<br>
| Jaar | Bedrag |
|----------40%--------------|-------------------------------------------------------:+ {% fori detail in current_account.details %}
| {% input detail.custom.jaartal %} | {% $5+input detail.custom.bedrag as:currency %}{% endfori %}<br>
{% unexplained $5+current_account.value %} | | **Totaal aangelegde reserves: {{$5 | currency}}** <br>
**Investeringen**<br>
| Omschrijving | Datum | Bedrag |
|-----------40%-----------------|-----------20%-----------|----------40%----------:+
| <br> _Kantoormaterieel_| | | {% fori kantoormaterieel in period.custom.kantoormaterieel %}
|{% input kantoormaterieel.omschrijving %} | {% input kantoormaterieel.datum as:date %} | {% $1+input kantoormaterieel.bedrag as:currency %} | {% endfori %}
| | | *Totaal kantoormaterieel: {{$1 | currency }}*
| <br> _Beveiligingskosten_| | | {% fori beveiliging in period.custom.beveiliging %}
|{% input beveiliging.omschrijving %} | {% input beveiliging.datum as:date %} | {% $2+input beveiliging.bedrag as:currency %} | {% endfori %}
| | | *Totaal beveiligingskosten: {{$2 | currency }}*
| <br> _Machines en gereedschap_| | | {% fori machines in period.custom.machines %}
|{% input machines.omschrijving %} | {% input machines.datum as:date %} | {% $3+input machines.bedrag as:currency %} | {% endfori %}
| | | *Totaal machines en gereedschap: {{$3 | currency }}*
| <br> _Kosten van onderzoek & ontwikkeling_| | | {% fori onderzoek in period.custom.onderzoek %}
|{% input onderzoek.omschrijving %} | {% input onderzoek.datum as:date %} | {% $4+input onderzoek.bedrag as:currency %} | {% endfori %}
| | | *Totaal kosten van onderzoek & ontwikkeling: {{$4 | currency }}*
<br> <br> | | **Totaal bedrag investeringen: {{$1+$2+$3+$4 | currency }}**