{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}POS Acceleration Center{% endblock %} {% block body_class %}pos-acceleration-page{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

POS Acceleration Center

Real-time checkout speed, cart responsiveness, barcode latency, receipt readiness, offline continuity, and cashier workflow guardrails.

Speed Guardrails

{% for key, budget in snapshot.performance.budgets.items() %}
{{ key|title }}{{ budget }}ms
{% endfor %}

{{ snapshot.performance.guardrails.message }}

Instant Product Search

Workflow Optimization

{% for key, value in snapshot.workflow.items() %}
{{ key.replace('_', ' ')|title }}
{{ 'Enabled' if value else 'Disabled' }}
{% endfor %}

Offline Speed Continuity

{% for key, value in snapshot.continuity.items() %}
{{ key.replace('_', ' ')|title }}
{{ value }}
{% endfor %}

Operational Confidence

{% for key, value in snapshot.confidence.items() %}
{{ key.replace('_', ' ')|title }}
{{ value }}
{% endfor %}

Enterprise Runtime

Universal State
{{ snapshot.transaction_states|length }} transaction state record(s), global state handled by runtime APIs.
Event Bus
Barcode, cart, sync, receipt, alert, and recovery events publish through a lightweight runtime bus.
Resource Priority
Checkout, barcode, inventory integrity, sync safety, analytics, and reporting are prioritized in that order.
Recovery Checkpoints
Carts, transactions, reports, sync state, and workflows can checkpoint for replay-safe recovery.

Cashier Productivity

{% for tip in snapshot.productivity.coaching %}
{{ tip }}
{% endfor %}

Recent POS Latency

{% for group in snapshot.performance.groups %} {% else %} {% endfor %}
TypeAverageMaximumBudgetStatus
{{ group.event_type }} {{ group.avg_latency }}ms {{ group.max_latency }}ms {{ group.budget_ms }}ms {{ group.budget_status }}
No latency samples yet. Use POS once and this fills automatically.
{% endblock %}