{% extends 'base.html' %} {% block title %}Storekeeper Station — Shiba Meals{% endblock %} {% block page_title %}Storekeeper{% endblock %} {% block content %}
Storekeeper Station
{{ today }} · Inventory · Pending requisitions
Pending Requisitions
Inventory Levels
Receive Stock
Pending Requisitions
{% if requisitions %}
{% for r in requisitions %} {% endfor %}
IDRequested ByTypeFor DateCreatedItemsAction
#{{ r.id }} {{ r.chef_name }} {{ r.req_type }} {{ r.for_date }} {{ r.created_at[:16] }}
{% else %}
✓ No pending requisitions at the moment.
{% endif %}
Current Stock Levels
Ingredients
Consumables
{% for i in ingredients if i.category != 'consumable' %} {% endfor %}
IngredientUnitIn StockReorder LevelStatus
{{ i.name }} {{ i.unit }} {{ "{:.2f}".format(i.quantity or 0) }} {{ i.reorder_level }} {% if (i.quantity or 0) < 3 %}Critical {% elif (i.quantity or 0) < i.reorder_level %}Low — order soon {% else %}Good{% endif %}
{% for i in ingredients if i.category == 'consumable' %} {% endfor %}
ItemUnitIn StockStatus
{{ i.name }} {{ i.unit }} {{ "{:.0f}".format(i.quantity or 0) }} {% if (i.quantity or 0) < 2 %}Critical {% elif (i.quantity or 0) < 5 %}Low {% else %}Good{% endif %}
Receive Stock from Supplier
Record all supplier deliveries here. This updates stock levels and the cost audit trail.
Qty: Unit Price: Total: Transport: Grand Total:
Recent Stock Receipts
Loading…
{% endblock %} {% block scripts %} {% endblock %}