Guadalupe Barba
05/01/2021, 11:46 PM${(record.total*0.75)?string.currency}
This is located outside of the existing item list body tables so I am unsure of what would be the best way to check all line items for this field. Thanks.KevinJ of Kansas
05/02/2021, 12:06 AMKevinJ of Kansas
05/02/2021, 12:07 AMmichoel
05/02/2021, 12:53 AM<#assign hasCustomOrderedItem = false>
<#list record.item as item>
<#if item.custitem87 == "CUSTOM">
<#assign hasCustomOrderedItem = true>
</#if>
</#list>
<#iif hasCustomOrderedItem>
This order contains a custom ordered item and a deposit of ${(record.total*0.75)?string.currency} is required.
</#if>
Guadalupe Barba
05/04/2021, 12:26 AM