sven
September 10, 2018, 9:22am
2
Hello @Tine1 ,
You can, as described here:
Hello @Dons ,
Seems to me we overlooked this topic, because we are not automatically triggered for this category (we now are). Our apologies.
first of al, in your recon template the result of ‘geldboeten’ needs to have a result-tag, f.i. :
Geldboeten = {{ $23 | currency }}{% result 'geldboeten' $23 %}
So by adding the code {% result 'geldboeten' $23 %} it actually makes it able to link that result (saved i that register $23) in another template.
Also, a handle is needed in the recon-template…
However, this explains how to link to a tag (or result) from a custom made template. If you want to reference to a Silverfin-template (so not a custom made one), you’ll need to find the result-tag to reference to a value you want.
More info here:
If you want to reference a certain value or variable from recon template A in another template, there’s a way to do it with the so-called result tags in STL.
They work like this ( just type in result and press TAB to get this preformatted code ):
{% result 'name' content %}
where the name is a shortname you can choose, and the content is the value or variable you want to reference to.
Let’s say we have this variable done_prepayments in our recon template Prepayments (which is al…
If a result-tag is missing in one of our Silverfin-templates, you can ask us to add this so you can link to it.
Let us know if this helps, please.