Invoice Details {{ customer_order.number }}
Status: {{ customer_order.status }}
Order Date
Order Number
{{ customer_order.created_date }}
{{ customer_order.number }}

Details:

{% for line_item in customer_order.items %} {% endfor %}
# 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 }}