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!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
Discount Item and Promotions in Invoice Advanced PDF
Hi Gurus,
I'm having trouble showing customers how much their order has been discounted in the Advanced PDF template when the source of the discount is both from a Promotion and manually added Discount Item.
I've added the following snippet to the PDF template:
<!-- Add Promotions -->
<#if record.promotions?has_content>
<#list record.promotions as promotions>
<tr>
<td align="left" colspan="3">${promotions.promocode}</td>
<td align="right" colspan="3">(${promotions.purchasediscount?replace("-","$ ")})</td>
</tr>
</#list>
</#if>
<!-- End Promotions -->
This adds a list of promotions applied to the invoice to the PDF, which is good. However, it becomes problematic if the Promotion has added a Discount Item to the invoice as well. In this case, the Discount Item shows in the list of items for the invoice, and again in the list of promotions. If I filter out discount items from the list of invoice items then manually added discount items get filtered out as well.