Hi all, I'm trying to display texts, if item's tax code is SB. It works fine, but I get duplicate texts for the same number of the item lines that have tax code SB. How can I deduplicate the text in my template please? Thanks in advance!
s
Shalala Adilova
01/22/2024, 3:07 PM
#break should do the trick. Something like below
<#if tax code condition>
<tr>
<td>Text</td>
</tr>
#break
</#if>