{% extends "base.html" %} {% block content %}

Edit Quotation

{{ boq.quotation_number }} - {{ boq.enquiry.enquiry_number }}

Cancel
Currency & Settings
Assign Engineer
Select the engineer responsible for this quotation
BOQ Items
{% for item in boq.items %} {% endfor %}
# Description Qty Unit Rate Amount
{{ item.line_number }}
Additional Costs
Cost Summary
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) }}
Engineer Justification
Cancel
{% endblock %}