{{ # 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 %}
{{ account.company.name }}
{% include 'company' for account.company %}
{{ # DETAILS }}
{{ # LEFT DETAILS }}
{{ 'Client' | make_label }}
{% include 'company' for estimate.company %}
{{ 'Project' | make_label }}
{{ estimate.project.name }}
{{ # INVOICE DATE }}
{{ 'Estimate 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 }}
| Item Description | Estimate | Tax | Final Price | |||||
|---|---|---|---|---|---|---|---|---|
| No items have been created yet. | ||||||||
|
{{ item.title }}
{% if item.description != blank %}
{{ item.description | format_text }}
{% endif %}
|
{{ # ESTIMATES }}
{{ # GENERIC ITEM }}
{% if item.type == 'Generic' %}
{% if item.has_worst_case %}
{{ item.quantity_low }} -
{% endif %}
{{ item.quantity_estimate }} {{ item.unit_label }} @ {{ item.rate | format_money }} ea
{{ % TASK ITEM }}
{% elsif item.type == 'Task' %}
{% if item.has_worst_case %}
{{ item.time_best | format_hours }} -
{% endif %}
{{ item.estimate_time | format_hours }} hours @ {{ item.rate | format_money }} ea
{{ # PRODUCT ITEM }}
{% elsif item.type == 'Product' %}
{{ item.quantity_estimate }} {{ item.unit_label }} @ {{ item.rate | format_money }} ea
{% endif %}
{{ # FLAT FEE }}
{% if item.flat_fee_in_cents > 0 %}
{{ 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 %}||||
| Tax 1 - {{ estimate.sales_tax }}% | ||||||||
| Tax 2 - {{ estimate.sales_tax_2 }}% | ||||||||
|
{% if estimate.has_worst_case_items %}Low {% endif %} {% if estimate.has_worst_case_items %}High {% endif %} |
{{ # ESTIMATES }}
Hours -
{% if estimate.has_worst_case_items %}
{{ estimate.time_best | format_hours }} {% endif %} {{ estimate.time_worst | format_hours }} |
{{ # TAXES }}
{% if estimate.has_worst_case_items %}
{{ estimate.tax_cost_total_low | format_money }} {% endif %} {{ estimate.tax_cost_total_high | format_money }} |
{{ # COSTS }}
{% if estimate.has_worst_case_items %}
{{ estimate.price_best | format_money }} {% endif %} {{ estimate.price_worst | format_money }} |
|||||
{{ # 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 %}
Pastie
