Vendor
{{ vendor_name }}
{{ vendor_address }}
{% if vendor_phone %}{{ vendor_phone }}
{% endif %}
{{ vendor_email }}
Ship To
{{ ship_to_name }}
{{ ship_to_address }}
{% if ship_to_phone %}{{ ship_to_phone }}{% endif %}
Bill To
{{ bill_to_name | default: company_name }}
{{ bill_to_address | default: company_address }}
| # |
Item Description |
SKU / Part No. |
Qty |
Unit |
Unit Price |
Amount |
{% for item in line_items %}
| {{ forloop.index }} |
{{ item.description }}
{% if item.note %} {{ item.note }} {% endif %}
|
{{ item.sku | default: "" }} |
{{ item.quantity }} |
{{ item.unit | default: "ea" }} |
{{ item.unit_price }} |
{{ item.amount }} |
{% endfor %}
Subtotal
{{ subtotal }}
{% if shipping_cost %}
Shipping
{{ shipping_cost }}
{% endif %}
{% if tax %}
{{ tax_label | default: "Tax" }}
{{ tax }}
{% endif %}
{% if discount %}
Discount
-{{ discount }}
{% endif %}
Total
{{ total }}
{% if special_instructions %}
Special Instructions
{{ special_instructions }}
{% endif %}
Authorized By
Signature
{{ authorized_by | default: "Name / Title" }}
Approved By
Signature
Date