{% extends "base.html" %} {% block content %}
{{ l('Manage your catalogue, prices, categories and stock levels', 'আপনার পণ্যের তালিকা, বিভাগ, মূল্য ও মজুদ পরিচালনা করুন') }}
| {{ l('Product Name', 'পণ্যের নাম') }} | {{ l('Category', 'বিভাগ') }} | {{ l('Buy Price', 'ক্রয় মূল্য') }} | {{ l('Sell Price', 'বিক্রয় মূল্য') }} | {{ l('Stock Level', 'বর্তমান স্টক') }} | {{ l('Expiry Status', 'মেয়াদের অবস্থা') }} | {{ l('Actions', 'অ্যাকশন') }} |
|---|---|---|---|---|---|---|
|
{{ p.name }}
{{ p.product_code or '' }}
|
{{ p.category or 'General' }} | ৳ {{ "%.2f"|format(p.buy_price or 0) }} | ৳ {{ "%.2f"|format(p.sell_price or 0) }} | {% if p.stock <= 0 %} 0 {{ p.unit or '' }} {% elif p.stock <= p.reorder_level %} {{ '%.2f'|format(p.stock) if p.stock != p.stock|int else p.stock|int }} {{ p.unit or '' }} {% else %} {{ '%.2f'|format(p.stock) if p.stock != p.stock|int else p.stock|int }} {{ p.unit or '' }} {% endif %} | {% if p.expiry_date %} {% if p.days_until_expiry is not none and p.days_until_expiry < 0 %} Expired ({{ p.days_until_expiry|abs }}d ago) {% elif p.days_until_expiry is not none and p.days_until_expiry == 0 %} Expires Today {% elif p.days_until_expiry is not none and p.days_until_expiry <= 30 %} {{ p.days_until_expiry }} days to expire {% else %} {{ p.expiry_date.strftime('%Y-%m-%d') }} {% endif %} {% else %} — {% endif %} | |
| {{ l('No products found matching filter.', 'ফিল্টারের সাথে মেলে এমন কোনো পণ্য পাওয়া যায়নি।') }} | ||||||