How to Sort Item Column by Quantity in Advanced PDF/HTML Templates

To sort the line items by quantity use:

<#list record.item?sort_by("quantity") as item>

To sort by reverse order use:

<#list record.item?sort_by("quantity")?reverse as item>

Leave a comment

Your email address will not be published. Required fields are marked *