{% 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 }}
{{ 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 %}
{{ 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 %}
{% 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 %}
{% if line_item.original_price > line_item.price %}
{% endif %} {{ line_item.price | money }}
{{ line_item.sku }}
{{ line_item.quantity }}
{{ line_item.line_price | money }}
|