| Item | Qty | Price | Total |
|---|---|---|---|
| {{ item.product_name }} SKU: {{ item["sku"] }} |
{{ item["quantity"] }} | ${{ "%.2f"|format(item["unit_price"]) }} | ${{ "%.2f"|format(item["item_total"]) }} |
| Subtotal: | ${{ "%.2f"|format(subtotal) }} | |
| Tax ({{ "%.2f"|format(tax_rate) }}%): | ${{ "%.2f"|format(tax_amount) }} | |
| Discount: | -${{ "%.2f"|format(discount_amount) }} | |
| TOTAL: | ${{ "%.2f"|format(total) }} | |