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.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
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>
Tagged:
0