Abo
1
Hi,
Could you please assist me on how to get the ‘values’ from the ‘Tax Module’ in a text or other template:
I’ve used this code:
{% assign Test1 = period.reconciliations.handle.2018_tax_module.result_before_attributes %}
{{ Test1}}
But my result is showing the below:
ReconciliationTextsDrop
Hi
Thank you for your question.
We should use following structure to access the result:
{{ period.reconciliations.[template_handle].results.[result_tag_name] }}
Please try this code & let me know if it works:
{% assign Test1 = period.reconciliations.2018_tax_module.results.result_before_attributes %}
{{ Test1}}