{% extends 'base.html' %} {% block title %}Logistics — Shiba Meals{% endblock %} {% block page_title %}Logistics{% endblock %} {% block content %}
Logistics — Dispatch
Send finished products to outlets · Margin-aware decisions
New Dispatch
Dispatch History
Outlet Stock Monitor
Available at Production Centre
{% for p in products %}
{{ p.name }}
{{ available.get(p.id, 0) }}
available
{% endfor %}
Record Dispatch
Units to dispatch — margin shown per product to guide priority
{% for p in products %} {% set m = margins.get(p.id, {}) %} {% endfor %}
ProductCategoryPriceMarginMargin %AvailableQty to Dispatch
{{ p.name }} {{ p.category }} KES {{ "{:,.0f}".format(p.price) }} KES {{ "{:,.0f}".format(m.get('margin', 0)) }} {% set mp = m.get('margin_pct', 0) %} {{ mp }}% {{ available.get(p.id, 0) }}
Dispatch History
Loading…
Outlet Stock Monitor
Items below 20% of dispatched quantity or fewer than 5 units are flagged 🔴
{% for o in outlets %} {% endfor %}
{% block scripts %} {% endblock %} {% endblock %}