Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Advanced PDF/HTML Template for checks
I am trying to use an Advanced PDF/HTML template for our checks. However, I need the line items (with dates, descriptions, etc) to appear in the voucher area. In the default template, the call for that is as follows:
<#if check.item?has_content>
<div class="items"><#list check.item as item>
<p>${item.account} ${item.date} ${item.description} <span align="right">${item.amount}</span></p>
</#list></div>
</#if>
However, it appears that check.item has nothing in it. Is the data call wrong in the default template?
0