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.
Quantity Remaining on Pick Ticket
Hi all
I am designing a new advanced layout pick ticket and am having diffculty getting the quantity remaining to show.
Can anyone help?
I did see the below on StackOverflow but this hasn't worked for me:
<#list salesorder.item as tranline> <#assign shipped=0> <#assign prevShipped=tranline.quantityfulfilled> <#assign qtyRemaining=tranline.quantity - prevShipped> <#if (tranline.quantitybackordered gt 0)> <#assign qtyRemaining=tranline.quantitybackordered></#if> <#list record.item as item><#if tranline.line==item.orderline> <#assign shipped=item.quantity> <#assign prevShipped=tranline.quantityfulfilled-item.quantity> </#if></#list> <tr> <td colspan="12"><span class="itemname">${tranline.item}</span><#if tranline.itemtype =='NonInvtPart'>**<#assign anyNonInvt='T'></#if><br />${tranline.description?html}</td> <td align="center" colspan="3"><#if shipped gt 0><b>${shipped}</b><#else>0</#if></td> <td align="center" colspan="3">${tranline.quantity}</td> <td align="center" colspan="3">${prevShipped}</td> <td align="center" colspan="3">${qtyRemaining}</td> <td colspan="4">${tranline.options?html}</td> </tr> </#list> </#if> Any help would be great