AI Operational Intelligence
{{ insight.title }}
{{ insight.summary }}
Inventory Pressure
{% for item in snapshot.inventory_pressure[:10] %}{{ item.name }} {{ item.stock }}
{% endfor %}Realtime Activity
{% for event in snapshot.realtime_events[-8:] %}{{ event.event_type }} {{ event.created_at }}
{% else %}No recent realtime events.
{% endfor %}Branch Command
| Branch | Sales | Revenue | Status |
|---|---|---|---|
| {{ branch.name }} | {{ branch.sales_count }} | {{ "%.2f"|format(branch.revenue or 0) }} | {{ 'Active' if branch.active else 'Inactive' }} |
| No branches configured. | |||
Cashier Activity
| Cashier | Sales | Revenue | Status |
|---|---|---|---|
| {{ cashier.full_name or cashier.username }} | {{ cashier.sales_count }} | {{ "%.2f"|format(cashier.revenue or 0) }} | {{ 'Active' if cashier.active else 'Inactive' }} |
| No cashier activity found. | |||