Two separate lists:Ingredients (this page) = raw materials used in kitchen production — bananas, flour, oil, etc.
Products (Admin panel) = finished menu items dispatched to outlets for sale — Chips, Black Tea, etc.
Adding bananas here does NOT make them appear in Dispatch. To sell bananas, create a product called "Banana" in the Admin → Products tab.
Raw Materials & Consumables
Ingredients
Consumables
Ingredient
Unit
Cost/Unit
In Stock
Value
Status
{% for i in ingredients if i.category != 'consumable' %}
{{ i.name }}
{{ i.unit }}
KES {{ "{:,.0f}".format(i.cost_per_unit) }}
{{ "{:.2f}".format(i.quantity or 0) }}
KES {{ "{:,.0f}".format((i.quantity or 0) * i.cost_per_unit) }}
{% if (i.quantity or 0) < 3 %}Critical
{% elif (i.quantity or 0) < 10 %}Low
{% else %}Good{% endif %}
{% endfor %}
Item
Unit
Cost/Unit
In Stock
Status
{% for i in ingredients if i.category == 'consumable' %}
{{ i.name }}
{{ i.unit }}
KES {{ "{:,.0f}".format(i.cost_per_unit) }}
{{ "{:.0f}".format(i.quantity or 0) }}
{% if (i.quantity or 0) < 2 %}Critical
{% elif (i.quantity or 0) < 5 %}Low
{% else %}Good{% endif %}