{% extends 'sales/base.html' %} {% block title %}Quotation List{% endblock %} {% block content %}
Customer Quote Info
Customer Name: {{ customer_quote_info.customer.customer_name }}
Delivery Location: {{ customer_quote_info.delivery_location }}
Delivery Mode: {{ customer_quote_info.get_delivery_mode_display }}
Payment Terms: {{ customer_quote_info.get_payment_terms_display }}
Lead Source: {{ customer_quote_info.get_lead_source_display }}
Status: {{ quotation.status }}
{% if quotation.qr_code %}
QR Code
{% endif %}
{{ quotation.qid }} Inquiries
{% for inquiry in inquiries %} {% endfor %}
PRD Code PRD Name Quantity Gauge Color Size UoM Unit Price Amount Disc.Unt Price Actions
{{ inquiry.product.pid }} {{ inquiry.product.product_name }} {{ inquiry.quantity }} {% if inquiry.gauge == None %} N/A {% else %} {{ inquiry.gauge }} {% endif %} {% if inquiry.color == None %} N/A {% else %} {{ inquiry.color }}[{{ inquiry.color.RAL_NUMBER }}]{% endif %} {{ inquiry.size }} {{ inquiry.uom }} {{ inquiry.unit_price }} {{ inquiry.amount }} {% if inquiry.discount_status == 'Requested' %} RQT: {{ inquiry.discount_amount }} {% elif inquiry.discount_status == 'Rejected' %} RJT: {{ inquiry.discount_amount }} {% elif inquiry.discount_status == 'Approved' %} APR: {{ inquiry.discount_amount }} {% else %} Not Applied {% endif %} {% if quotation.status != "PAID" %} {% else %} Paid {% endif %}
Payments
Total

KSH {{ quotation.total_amount|default:quotation.discounted_amount|default:"0.00" }}

Amount Paid

KSH {{quotation.amount_paid}}

{% if remainingAmount != 0 %}
Remaining Amount

KSH {{remainingAmount}}

{% endif %}
    {% for payment in payments %}
  • TID: {{ payment.transaction_id }}

    Amount: KSH {{ payment.amount_paid}}

    Date: {{ payment.created_at }}

  • {% endfor %}
{% if total_pages > 1 %} {% if payments.has_previous %} {% else %} {% endif %} {% if payments.has_next %} {% else %} {% endif %} {% endif %}
{% if quotation.status == "PENDING" or quotation.status == "PARTIAL PAID" %} {% endif %}
{% if quotation.status != "PAID" %} {% if quotation.status != "PARTIAL PAID" %} {% endif %} {% endif %}
{% endblock %}