{% extends "base.html" %} {% block content %}
| {{ l('Supplier Info', 'সাপ্লায়ারের তথ্য') }} | {{ l('Total Purchase', 'মোট ক্রয়') }} | {{ l('Total Paid', 'মোট পরিশোধ') }} | {{ l('Current Due', 'বর্তমান বাকি') }} | {{ l('Advance Credit', 'অগ্রিম জমা') }} | {{ l('Status', 'অবস্থা') }} | {{ l('Action', 'অ্যাকশন') }} |
|---|---|---|---|---|---|---|
|
{{ item.supplier.name }}
{% if item.supplier.phone %}{{ item.supplier.phone }}{% endif %}
{% if item.supplier.supplier_code %} {{ item.supplier.supplier_code }}{% endif %}
{% if item.supplier.address %} · {{ item.supplier.address }}{% endif %}
|
৳ {{ '%.2f'|format(item.purchase) }} | ৳ {{ '%.2f'|format(item.paid) }} | ৳ {{ '%.2f'|format(item.due) }} | {% if item.advance > 0 %} ৳ {{ '%.2f'|format(item.advance) }} {% else %} ৳ 0.00 {% endif %} | {% if item.due > 0 %} {{ l('Due', 'বাকি') }} {% elif item.advance > 0 %} {{ l('Advance Credit', 'অগ্রিম জমা') }} {% else %} {{ l('Cleared', 'পরিষ্কার') }} {% endif %} | |
| {{ l('No supplier records found.', 'কোনো সাপ্লায়ার রেকর্ড পাওয়া যায়নি।') }} | ||||||