Difference Between Picking Ticket and Packing slip

In NetSuite, a picking ticket and a packing slip serve distinct roles in the order fulfillment process, each tied to different stages and records. A Picking ticket is generated directly from the Sales Order (SO) record, typically before fulfillment, to guide warehouse staff in locating and picking items from inventory. It lists items, quantities, and… Continue reading Difference Between Picking Ticket and Packing slip

Sort item details on the Picking Ticket first by bin number and then alphabetically by item name in the advanced PDF template

<#if record.item?has_content> <#assign itemsWithBin = record.item?filter(i -> i.inventorydetail?has_content)> <#assign itemsWithoutBin = record.item?filter(i -> !i.inventorydetail?has_content)> <#assign sortedItemsWithBin = itemsWithBin?sort_by(‘inventorydetail’)> <#assign sortedItemsWithoutBin = itemsWithoutBin?sort_by(‘item’)> <#assign sortedItems = sortedItemsWithBin + sortedItemsWithoutBin> <table style=”width: 100%; margin-top: 5px; margin-left: 4px; margin-right: 4px”><!– start items –><#list sortedItems as item><#if item_index==0> <thead> <tr> <th colspan=”4″>Bin Number</th> <th colspan=”6″ style=”padding: 10px 6px;”>${item.item@label}</th> <th… Continue reading Sort item details on the Picking Ticket first by bin number and then alphabetically by item name in the advanced PDF template

Print Picking Ticket Field value changes from True to False reason

When a user prints a Picking ticket from a sales order record, then the field value of that ‘print picking ticket’ on the sales order’s system note, will be changed from False to True for the first time. If the sales order is partially fulfilled, then after the user prints the picking ticket for that… Continue reading Print Picking Ticket Field value changes from True to False reason

Proposal For Showing a banner on sales order record on Re-printing the Picking Ticket

Proposal summary  The proposal covers the new customization in the sales order record which is to show a warning banner when re-printing the picking ticket within 24 hours.  Requirement  Show a cautionary banner on opening a sales order record when the user is trying to print a picking ticket for a sales order that already… Continue reading Proposal For Showing a banner on sales order record on Re-printing the Picking Ticket

Proposal For Cautionary Pop-up on Re-printing the Picking Ticket

This proposal covers the process of displaying a cautionary pop-up when re-printing the picking ticket. Proposal summary The proposal covers the new customization in the sales order record which is to show a cautionary pop-up message when re-printing the picking ticket more than once. Requirement Show a cautionary pop-up alert message when trying to print… Continue reading Proposal For Cautionary Pop-up on Re-printing the Picking Ticket