Scenario
User wants to sort the line items of a transaction by quantity.
Solution
-
Navigate to Customization > Forms > Advanced PDF/HTML Templates
-
Edit or Customize an Advanced PDF/HTML Template (e.g. Standard Sales Order PDF/HTML Template)
-
Top Right Corner: Toggle Source Code
-
Look for the code:
<#list record.item as item>
-
To sort the line items by quantity use:
<#list record.item?sort_by("quantity") as item>
- To sort by reverse order use:
DISCLAIMER: The sample code described herein is provided on an "as is" basis, without warranty of any kind, to the fullest extent permitted by law. NetSuite Inc. does not warrant or guarantee the individual success developers may have in implementing the sample code on their development platforms or in using their own Web server configurations.
NetSuite Inc. does not warrant, guarantee or make any representations regarding the use, results of use, accuracy, timeliness or completeness of any data or information relating to the sample code. NetSuite Inc. disclaims all warranties, express or implied, and in particular, disclaims all warranties of merchant-ability, fitness for a particular purpose, and warranties related to the code, or any service or software related thereto.
NetSuite Inc. shall not be liable for any direct, indirect or consequential damages or costs of any type arising out of any action taken by you or others related to the sample code.