{{ party.name }}
{% if party.phone %}
{{ party.phone }}
{% endif %} {% if party.email %}{{ party.email }}
{% endif %}
{% if party.address %}
{{ party.address }}
{% endif %} {% if party.city %}{{ party.city }}
{% endif %}
{% if party.party_type == 'customer' %}
Customer
{% else %}
Supplier
{% endif %}
{{ party.formatted_balance }}
{{ party.account_type }}Opening Balance
₨{{ "{:,.0f}".format(party.opening_balance) }}
Current Balance
{{ party.formatted_balance }}
Total Transactions
{{ (jambos|length) + (orders|length) }}
Member Since
{{ party.created_date }}
Jambo Purchases {{ jambos|length }} Records
| Date | Jambo # | Size | Colour | Weight (KG) | Rate/KG | Amount |
|---|---|---|---|---|---|---|
| {{ jambo.date }} | #{{ jambo.jambo_no }} | {{ jambo.formatted_size }} | {{ jambo.colour }} | {{ jambo.net_weight }} | ₨{{ jambo.rate_kg }} | ₨{{ "{:,.0f}".format(jambo.amount) }} |
| Total Amount: | ₨{{ "{:,.0f}".format(jambos|sum(attribute='amount')) }} | |||||
Customer Orders {{ orders|length }} Records
| Order Date | Order # | Items | Status | Total Amount |
|---|---|---|---|---|
| {{ order.order_date }} | #{{ order.order_no }} | {{ order.items_count }} items | {{ order.status }} | {{ order.formatted_amount }} |
| Total Amount: | ₨{{ "{:,.0f}".format(orders|sum(attribute='total_amount')) }} | |||
No Transactions Found
{% if party.party_type == 'customer' %} Is customer ka koi order nahi mila {% else %} Is supplier se koi jambo purchase nahi kiya {% endif %}
Notes
{{ party.notes }}