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!
Invoice pdf-print details from billable expense sublist
I’m trying to print billable expenses on an invoice using advanced templates, but nothing I’ve tried so far seems to work. Based on the documentation, it appears to be possible, but it isn’t printing as expected. I’ve attached sample code for reference.
<#-- Expcost testing -->
<#if record.expcost?has_content>
<table>
<thead>
<tr>
<th>Exp Category</th>
<th>Bill Date</th>
<th>Amount</th>
</tr>
</thead>
<tbody>
<#list record.expcost as expense>
<tr>
<td>${expense.categorydisp}</td>
<td>${expense.billeddate}</td>
<td>${expense.amount}</td>
</tr>
</#list>
</tbody>
<h2> This is expense table</h2> </table>