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

BOQ & QUOTATION WORKSPACE

Prepare Bills of Quantities, estimates and quotations.

Draft Quotations

{{ draft_count }}

Submitted

{{ submitted_count }}

Approved

{{ approved_count }}

Suspended

{{ suspend_count }}

Total Quotations

{{ total_count }}

Recent Quotations
{% for boq in recent_boqs %} {% else %} {% endfor %}
Quotation No Enquiry Customer Status Date
{{ boq.quotation_number }} {% if boq.enquiry %} {{ boq.enquiry.enquiry_number }} {% else %} Deleted Enquiry {% endif %} {% if boq.enquiry %} {{ boq.enquiry.customer.company_name }} {% else %} Deleted {% endif %} {% if boq.status == "Draft" %} Draft {% elif boq.status == "Submitted" %} Submitted {% elif boq.status == "Approved" %} Approved {% elif boq.status == "Suspended" %} Suspended {% else %} {{ boq.status }} {% endif %} {{ boq.created_at.strftime("%d %b %Y") }} Open {% if current_user.role == "Admin" %} {% endif %}
No quotations found.
Pending Approvals

This section will display quotations awaiting approval by management.

Engineer Activity

Recent BOQ updates, revisions and quotation activity will appear here.

{% endblock %}