From now on, you’ll see an extra option with custom reconciliation templates:
It’s the Formula for automatic hiding; this function will make it possible to set certain templates in your working papers visible or not!
Basically, this is an if-function checking on a certain result tag or a database variable of a template.
How can this be used?
Let’s say we have certain templates regarding VAT reconciliation, but my client is not VAT liable. So in the working papers, there will be recon templates that have no purpose in there:
The template “VAT checks”, that impacts the progress bar of my working papers (unless I unstar it of course), is not needed here.
How can we let this template “disappear”, so it no longer can accidentally impact in any way the flow of my working papers and/or the progress of it all?
Let’s say we’ve build a template with some general settings in it:
In there, we ask the user to check f.i. if the client is VAT liable or not, with this code:
{% stripnewlines %}
| Questions regarding VAT
{% newline %}
|:--------:#
{% newline %}
{% newline %}
|----70%----
|----25%----
|-----5%----#
{% newline %}
| {% t "Is the company VAT obligated?" %}
| {% input custom.vat.obligated as:select options:"Yes|No" option_values:"1|2" %}
| {% if custom.vat.obligated != blank %}
{% assign ind = 0 %}
{% else %}
{% assign ind = 1 %}
{% endif %}
{% unreconciled ind as:indicator %}
{% endstripnewlines %}
So, the value of the database variable custom.vat.obligated
(1 or 2) can be used to trigger our show / hide condition of that other template, if we add this as a formula in the template of the VAT checks:
So, this means:
- when Yes is chosen (value 1), the template VAT checks will be visible and can impact the progress of your working papers:
-when No is chosen (value 2), the condition we filled in the formula box, will be fullfilled and will mak the template disappear from the working papers, so it no longer impact the progress of the working papers
Of course, the possibilities are endless here. Above is just a simple example how it can be used.
But it’s clear that this update can have a huge impact on the workflow in your custom working papers