Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
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?