{% extends "base.html" %} {% block title %}Stock Manager{% endblock %} {% block content %} {% if session.get('role') == 'admin' %}
| ID | Stock ID | Item Name | Category | Date | Order Price | Logistics | Shipping | Unit Cost | Qty | Ordered | {% if session.get('role') == 'admin' %}Actions | {% endif %}
|---|---|---|---|---|---|---|---|---|---|---|---|
| #{{ row.id }} | {{ row.stock_id }} | {{ row.item_name }} | {% if row.item_category %} {{ row.item_category }} {% else %} โ {% endif %} | {{ row.date or 'โ' }} | {{ "Rs. {:,.2f}".format(row.order_price) if row.order_price else 'โ' }} | {{ "Rs. {:,.2f}".format(row.logistic_charges) if row.logistic_charges else 'โ' }} | {{ "Rs. {:,.2f}".format(row.shipping_charges) if row.shipping_charges else 'โ' }} | {{ "Rs. {:,.2f}".format(row.unit_cost) if row.unit_cost else 'โ' }} | {% if row.qty > 10 %}โ {% elif row.qty > 0 %}โ ๏ธ{% else %}โ{% endif %} {{ row.qty }} | {{ row.ordered_qty }} | {% if session.get('role') == 'admin' %}{% endif %} |
|
No stock items found matching your filters ๐ Reset Filters |
|||||||||||
No stock items found matching your filters
๐ Reset Filters