{{ # AGREEMENT }} {% if estimate.requires_agreement? && estimate.agreed_to == false %}
Please read through the terms of agreement and indicate your choice at the bottom of this page.
{% include 'company' for account.company %}
| {{ 'Client' | make_label }} | {{ estimate.address | format_text }} |
|---|---|
| {{ 'Project' | make_label }} | {{ estimate.name }} |
| {{ 'Date' | make_label }} | {{ estimate.created_on | format_date }} |
| Item Description | Estimate | Tax | Final Price | |||||
|---|---|---|---|---|---|---|---|---|
| No items have been created yet | ||||||||
|
{{ item.title }}
{% if item.description != blank %}
{{ item.description | format_text }}
{% endif %}
|
{{ # ESTIMATES }}
{{ # 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 %} |
{{ # TAX }}
{% if item.is_taxable %} * {% else %} {% endif %} | {{ # TOTAL PRICES }} {% if item.has_worst_case %}
|
{% else %}
{{ item.price_best | format_money }} | {% endif %}||||
| Item Total |
{% if estimate.has_worst_case_items %}
|
|||||||
| Discount - {{ estimate.discount_percentage }}% |
{% if estimate.has_worst_case_items %}
|
|||||||
| Tax 1 - {{ estimate.sales_tax }}% |
{% if estimate.has_worst_case_items %}
|
|||||||
| Tax 2 - {{ estimate.sales_tax_2 }}% |
{% if estimate.has_worst_case_items %}
|
|||||||
| {{ # ESTIMATES }} |
Hours
{% if estimate.has_worst_case_items %}
{{ estimate.time_best | format_hours }} {% endif %} {{ estimate.time_worst | format_hours }} |
{{ # TOTALS }} |
{% if estimate.has_worst_case_items %}
{{ estimate.price_best | format_money }} {% endif %} {{ estimate.price_worst | format_money }} |
|||||
No agreement terms have been set for this estimate.
{% endif %}