Does anyone know an if statement that will keep th...
# general
d
Does anyone know an if statement that will keep the discount line on a PDF from showing if the discount is 0 (in other words, if there is no discount)?
t
<#if !item.item?contains("Credit Card Fee")>${item.amount}</#if>
I used that to exclude any item that was "Credit Card Fee"
Basically it printed the Item Amount if the Item was NOT Credit Card Fee
👍 1