{% extends "base.html" %} {% block content %}
{{ boq.quotation_number }} - {{ boq.enquiry.enquiry_number }}
{{ boq.enquiry.customer.company_name }}
{{ boq.enquiry.enquiry_number }}
{{ boq.currency }}
{{ boq.created_at.strftime('%d %b %Y') }}
| # | 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 or "No justification provided." }}
| 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) }} |