test
Invoice
Order {{ order.order_name }}
{% if order.po_number %}PO # {{ order.po_number }}
{% endif %} {{ order.created_at | date: "%B %e, %Y" }}
From
{{ shop.name }}
{{ shop.address | format_address }} {% if shop.phone %}{{ shop.phone }}{% endif %}
{% if order.billing_address %}
{{ shop.name }}
{{ shop.address | format_address }} {% if shop.phone %}{{ shop.phone }}{% endif %}
Bill to {{ order.billing_address | format_address }}
{% endif %} {% if order.shipping_address %}
Ship to {{ order.shipping_address | format_address }} {% if order.shipping_address.phone %}{{ order.shipping_address.phone }}{% endif %}
{% endif %}Order Details
{% for line_item in order.line_items %} {% endfor %} {% for discount in order.discounts %} {% endfor %} {% if order.shipping_address %} {% endif %} {% if order.net_payment != order.total_net_amount %} {% endif %} {% if order.total_refunded_amount > 0 %} {% endif %} {% if order.net_payment != order.total_net_amount %} {% endif %}Qty | Item | SKU | Price |
---|---|---|---|
{{ line_item.quantity }} | {{ line_item.title }} | {{ line_item.sku }} | {% if line_item.original_price != line_item.price %} |
Subtotal | {{ order.subtotal_price | money }} | ||
Includes discount {% if discount.code %}"{{ discount.code }}"{% endif %} | {{ discount.savings | money }} | ||
Tax | {{ order.tax_price | money }} | ||
Shipping | {{ order.shipping_price | money }} | ||
Total | {{ order.total_price | money }} | ||
Total Paid | {{ order.net_payment | money }} | ||
Total Refunded | {{ order.total_refunded_amount | money }} | ||
Outstanding Amount | {{ order.total_price | minus: order.net_payment | money }} |
Transaction Details
{% for transaction in transactions %} {% endfor %}Type | Amount | Kind | Status |
---|---|---|---|
{{ transaction.gateway | payment_method }} | {{ transaction.amount | money }} | {{ transaction.kind }} | {{ transaction.status }} |
Note
{{ order.note }}
{% endif %}If you have any questions, please send an email to {{ shop.email }}