📊 Party Statement: {{ party.name }}
Account details aur transaction history
Back to Parties

{{ 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 }}
{% if party.party_type == 'supplier' and jambos %}
Jambo Purchases {{ jambos|length }} Records
{% for jambo in jambos %} {% endfor %}
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')) }}
{% endif %} {% if party.party_type == 'customer' and orders %}
Customer Orders {{ orders|length }} Records
{% for order in orders %} {% endfor %}
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')) }}
{% endif %} {% if not jambos and not orders %}
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 %}

{% endif %} {% if party.notes %}
Notes

{{ party.notes }}

{% endif %}