{{ # AGREEMENT }} {% if estimate.requires_agreement? && estimate.agreed_to == false %}

{{ account.company.name }} has specified that this estimate requires agreement by you before work may continue.

Please read through the terms of agreement and indicate your choice at the bottom of this page.

{% endif %}
Estimate {{ estimate.number }}

{% include 'company' for account.company %}

{{ # DETAILS }}
{{ # LEFT DETAILS }}
{{ # DATE }}
{{ 'Client' | make_label }} {{ estimate.address | format_text }}
{{ 'Project' | make_label }} {{ estimate.name }}
{{ 'Date' | make_label }} {{ estimate.created_on | format_date }}
{{ # RIGHT DETAILS }}
{{ 'Estimated Cost' | make_label }}
{% if estimate.has_worst_case_items %} {{ estimate.price_best | format_money }} - {{ estimate.price_worst | format_money }} {% else %} {{ estimate.price_best | format_money }} {% endif %}
{{ # INTRO }} {% if estimate.intro_text != blank %}

Introduction

{{ estimate.intro_text | format_text }}
{% endif %} {{ # LINE ITEMS FOR ESTIMATE }} {% if estimate.line_items == null %} {% else %} {{ # LINE ITEM LOOP }} {% for item in estimate.line_items %} {{ # ESTIMATES }} {{ # TAX }} {{ # TOTAL PRICES }} {% if item.has_worst_case %} {% else %} {% endif %} {% endfor %} {% endif %} {{ # TABLE FOOTER }} {{ # ITEM TOTAL }} {{ # OVERALL DISCOUNT }} {% if estimate.should_apply_discount == true %} {% endif %} {{ # SALES TAX }} {% if estimate.sales_tax != null %} {% endif %} {% if estimate.sales_tax_2 != null %} {% endif %} {{ # ESTIMATES }} {{ # TOTALS }}
Item Description Estimate Tax Final Price
No items have been created yet
{{ item.title }} {% if item.description != blank %}
{{ item.description | format_text }}
{% endif %}
{{ # CUSTOM ITEM }} {% if item.type_str == 'Custom' %} {% if item.has_worst_case %} {{ item.quantity_low }} - {% endif %} {% if item.quantity_estimate > 0 %} {{ item.quantity_estimate }} {{ item.unit_label }} @ {{ item.price_per | format_money }} ea
{% endif %} {{ % TASK ITEM }} {% elsif item.type_str == 'Task' %} {% if item.has_worst_case %} {{ item.time_best | format_hours }} - {% endif %} {% if item.estimate_time > 0 %} {{ item.estimate_time | format_hours }} hours @ {{ item.price_per | format_money }} ea
{% endif %} {{ # PRODUCT ITEM }} {% elsif item.type_str == 'Product' %} {% if item.quantity_estimate > 0 %} {{ item.quantity_estimate }} {{ item.unit_label }} @ {{ item.price_per | format_money }} ea
{% endif %} {% endif %} {{ # FLAT FEE }} {% if item.has_flat_fee %} {{ item.flat_fee | format_money }} flat fee {% endif %}
{% if item.is_taxable %} * {% else %}   {% endif %}
Min {{ item.price_best | format_money }}
Max {{ item.price_worst | format_money }}
{{ item.price_best | format_money }}
Item Total {% if estimate.has_worst_case_items %}
Min {{ estimate.item_actual_low | format_money }}
Max {{ estimate.item_actual_high | format_money }}
{% else %} {{ estimate.item_actual_high | format_money }} {% endif %}
Discount - {{ estimate.discount_percentage }}% {% if estimate.has_worst_case_items %}
Min {{ estimate.discount_low | format_money }}
Max {{ estimate.discount_high | format_money }}
{% else %} {{ estimate.discount_high | format_money }} {% endif %}
Tax 1 - {{ estimate.sales_tax }}% {% if estimate.has_worst_case_items %}
Min {{ estimate.tax_cost_low | format_money }}
Max {{ estimate.tax_cost_high | format_money }}
{% else %} {{ estimate.tax_cost_high | format_money }} {% endif %}
Tax 2 - {{ estimate.sales_tax_2 }}% {% if estimate.has_worst_case_items %}
Min {{ estimate.tax_cost_2_low | format_money }}
Max {{ estimate.tax_cost_2_high | format_money }}
{% else %} {{ estimate.tax_cost_2_high | format_money }} {% endif %}

{{ # TERMS }}

Terms of Agreement

{% if estimate.agreement_text != blank %} {{ estimate.agreement_text | format_text }} {% else %}

No agreement terms have been set for this estimate.

{% endif %}