Date: {{ boq.created_at.strftime('%d %B %Y') }}
Currency: {{ boq.currency }}
Status: {{ boq.status }}
{{ boq.enquiry.customer.company_name }}
{{ boq.enquiry.customer.contact_name or "" }}
{{ boq.enquiry.customer.email or "" }}
{{ boq.enquiry.customer.telephone or "" }}
{{ boq.enquiry.enquiry_number }}
{{ boq.enquiry.subject }}
| # | Description | Qty | Unit | Rate | Amount |
|---|---|---|---|---|---|
| {{ item.line_number }} | {{ item.description }} | {{ item.qty }} | {{ item.unit or "-" }} | {{ "%.2f"|format(item.rate) }} | {{ "%.2f"|format(item.amount) }} |
{{ boq.engineer_comments }}
| 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) }} |