{% assign SETTING_shop_logo = "" %} {% assign SETTING_shop_logo_width = 240 %} {% assign SETTING_date_format = "%b %e, %Y" %} {% assign SETTING_show_product_images = true %} {% assign SETTING_product_image_size = 58 %} {% assign SETTING_show_cart_attributes = false %} {% assign SETTING_show_order_number_barcode = true %} {% assign SETTING_show_product_barcodes = false %} {% comment %} TRANSLATE TEXT You can translate or change wording in the document by updating the words below. Only change the words between the quotes "". {% endcomment %} {% assign TEXT_receipt_tax_invoice = "Order No" %} {% assign TEXT_order_date = "Order Date" %} {% assign TEXT_shipping_address = "Shipping address" %} {% assign TEXT_customer = "Customer" %} {% assign TEXT_customer_email = "Email" %} {% assign TEXT_tel = "Tel." %} {% assign TEXT_no_customer_information = "No customer information" %} {% assign TEXT_payment_method = "Payment method" %} {% assign TEXT_shipping_method = "Shipping method" %} {% assign TEXT_items = "Items" %} {% assign TEXT_price = "Price" %} {% assign TEXT_tax = "Tax" %} {% assign TEXT_sku = "SKU" %} {% assign TEXT_qty = "Qty" %} {% assign TEXT_item_total = "Item total" %} {% assign TEXT_sku = "SKU: " %} {% assign TEXT_refunded = "x Refunded" %} {% assign TEXT_notes = "Notes" %} {% assign TEXT_discount = "Discount" %} {% assign TEXT_subtotal = "Subtotal" %} {% assign TEXT_shipping = "Shipping" %} {% assign TEXT_duties = "Import duties" %} {% assign TEXT_vat = "Tax" %} {% assign TEXT_total = "Total" %} {% assign TEXT_total_refund = "Total refund" %} {% assign TEXT_thanks = "Thank you for shopping with us!" %} {% if SETTING_show_product_barcodes == true or SETTING_show_order_number_barcode == true %} {% include "barcodes" %} {% endif %}


{{ shop.address1 }}{% if shop.address2 != blank %},{% endif %}, {{ shop.city }}, {{ shop.province_code }}, {{ shop.zip }}, {{ shop.country }}
{{ shop.customer_email }}
{% comment %} {% if SETTING_show_order_number_barcode == true %}
{% endif %} {% endcomment %}

{{ TEXT_receipt_tax_invoice }}: {{ name }}
{{ TEXT_order_date }}: {{ created_at | date: SETTING_date_format }}

{{ TEXT_customer }}

{% assign billing_address = billing_address | default: customer.default_address %} {% if billing_address != blank %} {{ billing_address.name }} {% endif %}
{{ TEXT_customer_email }}: {{ customer.email }}

{% if shipping_address != blank %}

{{ TEXT_shipping_address }}

{{ shipping_address.name }} {% if shipping_address.company != blank %}
{{ shipping_address.company }} {% endif %}
{{ shipping_address.address1 }} {% if shipping_address.address2 != blank %}
{{ shipping_address.address2 }} {% endif %} {% if shipping_address.city_province_zip != blank %}
{{ shipping_address.city_province_zip }} {% endif %}
{{ shipping_address.country }} {% if shipping_address.phone != blank %}
{{ TEXT_tel }} {{ shipping_address.phone }} {% endif %}

{% endif %}
{% if payment_method != blank %}

{{ TEXT_payment_method }}

{{ payment_method }}

{% endif %} {% if shipping_method != blank or fulfillment.tracking_company != blank %}

{{ TEXT_shipping_method }}

{% if fulfillment.tracking_company == blank or fulfillment.tracking_company == "Other" %} {{ shipping_method.title }}
{{ fulfillment.tracking_number }} {% else %} {{ fulfillment.tracking_company }} {{ shipping_method.title }}
{{ fulfillment.tracking_number }} {% endif %}

{% endif %}

{{ TEXT_items }}
{{ TEXT_price }}
{% if show_line_item_taxes == true %}
{{ TEXT_sku }}
{% endif %}
{{ TEXT_qty }}
{{ TEXT_item_total }}
{% comment %} These variables make sure your images print at high quality. {% endcomment %} {% assign resolution_adjusted_size = SETTING_product_image_size | times: 200 | divided_by: 72 | ceil %} {% capture effective_image_dimensions %}{{ resolution_adjusted_size }}x{{ resolution_adjusted_size }}{% endcapture %} {% for line_item in line_items %} {% if line_item.quantity < 1 %}{% continue %}{% endif %} {% endfor %}
{% if SETTING_show_product_images == true %} {% endif %}

{{ line_item.product_title }} {% if line_item.variant_title != blank %} {{ line_item.variant_title }} {% endif %} {% comment %} {% if line_item.sku != blank %} {{ TEXT_sku }}{{ line_item.sku }} {% endif %} {% endcomment %} {% for p in line_item.properties %} {% assign p_internal = p.first | slice: 0 %} {% unless p.first contains "builder_id" or p.first contains "builder_info" or p.first contains "master_builder" or p_internal == "_" or p.last == "" or p.last == blank %} {{ p.first }}: {{ p.last }} {% endunless %} {% endfor %} {% if line_item.refunded_quantity > 0 %} {{ line_item.refunded_quantity }}{{ TEXT_refunded }} {% endif %} {% if SETTING_show_product_barcodes == true and line_item.variant.barcode != blank %} {% endif %}

{% if line_item.original_price > line_item.price %}{{ line_item.original_price | money }}
{% endif %} {{ line_item.price | money }}
{{ line_item.sku }}
{{ line_item.quantity }}
{{ line_item.line_price | money }}

{% if note != blank %}
{{ TEXT_notes }}
{{ note }}
{% endif %} {% if SETTING_show_cart_attributes == true %} {% for attribute in attributes %}
{{ attribute.first }}:
{{ attribute.last }}
{% endfor %} {% endif %}
{% if total_discounts != 0.0 %}
{{ TEXT_discount }}
{% for discount in discounts %}{{ discount.title }} {% endfor %}
-{{ total_discounts | money }}
{% endif %}
{{ TEXT_subtotal }}
{{ subtotal_price | money }}
{{ TEXT_shipping }}
{{ shipping_price | default: 0.0 | money }}
{% if duties_price != 0.0 %}
{{ TEXT_duties }}
{{ duties_price | money }}
{% endif %} {% for tax in tax_lines %}
{{ tax.title | replace: "VAT", TEXT_vat | replace: "Tax", TEXT_vat }} {{ tax.rate | times: 100 }}%
{{ tax.price | money }}
{% endfor %}
{{ TEXT_total }} ({{ currency }})
{{ total_price | money }}
{% if total_refunds != 0.0 %}
{{ TEXT_total_refund }}
-{{ total_refunds | money }}
{% endif %}