{% extends 'sales/base.html' %} {% load static %} {% block title %}Invoice Page{% endblock %} {% block content %}
{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
MABATI IQ
Mabati Yetu Logo

MABATI YETU FACTORY

Best Quality Best Price

{% if quotation.status == "PAID" or quotation.status == "PARTIAL PAID" or quotation.status == "In Production" or quotation.status == "Produced" or quotation.status == "Shipped" or quotation.status == "Dispatched" or quotation.status == "Recieved" %}

Sales Invoice

{% if quotation.status == "PAID" %} PAID {% elif quotation.status == "PARTIAL PAID" %} PARTIAL PAID {% else %} PAID - {{ quotation.status }} {% endif %} {% else %}

Quotation Invoice

UNPAID Valid Until: {{ quotation.valididity }} {% endif %}

Invoice {{ quotation.qid }}

Customer Details Delivery Information Seller Information

Customer Name: {{ customer_quote_info.customer.customer_name }}

Customer Mobile: {{customer_quote_info.customer.phone_mobile }}

Delivery Location: {{ customer_quote_info.delivery_location }}

Delivery Mode: {{ customer_quote_info.delivery_mode }}

Served By: {{ quotation.seller.first_name }}

Seller Tel: {{ quotation.seller.phone_number }}

Customer Inquiries
{% if has_discount %} {% endif %} {% for inquiry in inquiries %} {% if has_discount %} {% endif %} {% endfor %} {% if has_discount %} {% endif %}
Product Color Gauge Meters UOM Quantity Unit Price AmountDiscount Discounted Unit Price
{{ inquiry.product.product_name }} {{ inquiry.color }} {{ inquiry.gauge.name }} {{ inquiry.meters }} {{ inquiry.uom }} {{ inquiry.quantity }} {{ inquiry.unit_price }} KSH {{ inquiry.amount }}{{ inquiry.discount }} {{ inquiry.discounted_amount }}
Total
Total: KSH {{ final_total}}
Total: KSH {{ final_total }}
{% if quotation.status == "PAID" or quotation.status == "PARTIAL PAID" or quotation.status == "In Production" or quotation.status == "Produced" or quotation.status == "Shipped" or quotation.status == "Dispatched" or quotation.status == "Recieved" %}
List of Payments
{% for payment in payments %} {% endfor %}
Date Transaction ID Amount
{{ payment.created_at|date:"Y-m-d" }} {{ payment.transaction_id }} {{ payment.amount_paid }}
{% endif %}
Terms and Conditions
{% for term in terms_and_conditions %}
{% endfor %}
Mpesa Equity
Name: Nairobi Realnet Investments Ltd
Bank: Equity Bank
Branch: Westlands
Account: 0550281421520
THANK YOU FOR YOUR BUSINESS!
{% if request.user.is_admin %} {% endif %}
{% endblock %}