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!
Sales order items to Customer deposit
Hi,
Is there any basic way to have items from sales order to customer deposit print ?
I think not.
I tried to do this with inserting data object to custom field on deposit and print that but freemarker is not working.
This is working :
<#assign item_map =
{
"name": "Items",
"item_names": [
"Item1",
"Item2"
]
} >
<table style="width: 100%; margin-top: 10px;">
<thead>
<tr>
<th>Item</th>
</tr>
</thead>
<#list item_map.item_names as items>
<tr>
<td>${items}</td>