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

BOQ Reports

Track quotations, engineer activity, and performance metrics

Back to BOQ Workspace
Filters & Export
Total Quotations

{{ total_count }}

Value: {{ "%.2f"|format(total_value) }}
Draft

{{ draft_count }}

Submitted

{{ submitted_count }}

Approved

{{ approved_count }}

Engineer Activity
{% for engineer, data in engineer_activity.items() %} {% else %} {% endfor %}
Engineer Quotations Total Value Average Value
{{ engineer }} {{ data.count }} {{ "%.2f"|format(data.total_value) }} {{ "%.2f"|format(data.total_value / data.count if data.count > 0 else 0) }}
No activity found for the selected period
Quotations ({{ total_count }}) Period: {{ period_label }}
{% for boq in boqs %} {% else %} {% endfor %}
Quotation Enquiry Customer Engineer Status Value Created
{{ boq.quotation_number }} {{ boq.enquiry.enquiry_number }} {{ boq.enquiry.customer.company_name|truncate(20) }} {{ boq.enquiry.assigned_to or "-" }} {{ boq.status }} {{ "%.2f"|format(boq.grand_total) }} {{ boq.created_at.strftime('%d %b %Y') }}
No quotations found matching the criteria
{% endblock %}