Details:
| # | Item Description | Unit Price | Invoice Qty | Line Price |
|---|---|---|---|---|
{{ forloop.index }} |
{{ line_item.name }} SKU: {{ line_item.sku }} |
${{ line_item.placed_price | round: 2 }} |
{{ line_item.quantity }} |
${{ line_item.extended_price | round: 2 }} |
| Shipping: | ${{ customer_order.shipping_total | round: 2 }} | |
| Total Fees: | ${{ customer_order.fee_total | round: 2 }} | |
| Order Subtotal: | ${{ customer_order.sub_total | round: 2 }} | |
| GST: | ${{ customer_order.tax_total | round: 2 }} | |
| Total: | ${{ customer_order.total | round: 2 }} | |
| Currency: | {{ customer_order.currency }} |