Print Preview

Back
Customer

{{ boq.enquiry.customer.company_name }}

{{ boq.enquiry.customer.contact_name or "" }}

{{ boq.enquiry.customer.email or "" }}

{{ boq.enquiry.customer.telephone or "" }}

Enquiry

{{ boq.enquiry.enquiry_number }}

{{ boq.enquiry.subject }}

{% for item in boq.items %} {% endfor %}
# Description Qty Unit Rate Amount
{{ item.line_number }} {{ item.description }} {{ item.qty }} {{ item.unit or "-" }} {{ "%.2f"|format(item.rate) }} {{ "%.2f"|format(item.amount) }}
{% if boq.engineer_comments %}
Justification / Notes

{{ boq.engineer_comments }}

{% endif %}
Materials {{ "%.2f"|format(boq.materials_total) }}
Labour {{ "%.2f"|format(boq.labour_total) }}
Consumables {{ "%.2f"|format(boq.consumables_total) }}
Equipment {{ "%.2f"|format(boq.equipment_total) }}
Other {{ "%.2f"|format(boq.other_total) }}
Subtotal {{ "%.2f"|format(boq.subtotal) }}
VAT ({{ boq.vat_percent }}%) {{ "%.2f"|format(boq.subtotal * boq.vat_percent / 100) }}
Grand Total {{ "%.2f"|format(boq.grand_total) }}