{% extends "base.html" %} {% block title %}Stock Manager{% endblock %} {% block content %} {% if session.get('role') == 'admin' %}
{{ "โœ๏ธ" if edit_row else "โž•" }}

{{ "Edit Stock" if edit_row else "Add New Stock" }}

{% if edit_row %} โŒ Cancel {% endif %}
{% endif %}
๐Ÿ“ฆ

Stock List

๐Ÿ”

Search & Filter

๐Ÿ”„ Reset
{% if session.get('role') == 'admin' %} {% endif %} {% for row in stocks %} {% if session.get('role') == 'admin' %} {% endif %} {% else %} {% endfor %}
ID Stock ID Item Name Category Date Order Price Logistics Shipping Unit Cost Qty OrderedActions
#{{ 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 }}
๐Ÿ“ญ

No stock items found matching your filters

๐Ÿ”„ Reset Filters
{% for row in stocks %}
{{ row.stock_id }} {% if row.qty > 10 %}โœ…{% elif row.qty > 0 %}โš ๏ธ{% else %}โŒ{% endif %} Qty: {{ row.qty }}
๐Ÿ“ฑ Item {{ row.item_name }}
{% if row.item_category %}
๐Ÿท๏ธ Category {{ row.item_category }}
{% endif %} {% if row.date %}
๐Ÿ“… Date {{ row.date }}
{% endif %} {% if row.order_price %}
๐Ÿ’ฐ Order Price Rs. {{ "{:,.2f}".format(row.order_price) }}
{% endif %} {% if row.logistic_charges %}
๐Ÿšš Logistics Rs. {{ "{:,.2f}".format(row.logistic_charges) }}
{% endif %} {% if row.shipping_charges %}
๐Ÿ“ฆ Shipping Rs. {{ "{:,.2f}".format(row.shipping_charges) }}
{% endif %}
๐Ÿ’ต Unit Cost Rs. {{ "{:,.2f}".format(row.unit_cost) }}
๐Ÿ›’ Ordered Qty {{ row.ordered_qty }}
{% if session.get('role') == 'admin' %} {% endif %}
{% else %}
๐Ÿ“ญ

No stock items found matching your filters

๐Ÿ”„ Reset Filters
{% endfor %}
{% endblock %}