{{ "now" | date: "%m/%d/%y" }}
Invoice for {{ order_name }}
Quantity | Item | Taxes | Price |
---|---|---|---|
{{ line_item.quantity }} x | {{ line_item.title }} | {% for tax_line in line_item.tax_lines %} {{ tax_line.price | money }} {{ tax_line.title }} {% endfor %} |
{% if line_item.original_price != line_item.price %} |
Type | Amount | Kind | Status |
---|---|---|---|
{{ transaction.gateway | payment_method }} | {{ transaction.amount | money }} | {{ transaction.kind }} | {{ transaction.status }} |
Subtotal price: | {{ subtotal_price | money }} |
Includes discount "{{ discount.code }}" | {{ discount.savings | money }} |
Total tax: | {{ tax_price | money }} |
Shipping: | {{ shipping_price | money }} |
Total price: | {{ total_price | money }} |
Total paid: | {{ total_paid | money }} |
Outstanding Amount: | {{ total_price | minus: total_paid | money }} |
{{ note }}
{% endif %} {% if shipping_address %}If you have any questions, please send an email to {{ shop.email }}