{% extends 'core/base.html' %} {% load static %} {% block title %}POS Terminal - SwiftPOS{% endblock %} {% block topbar_title %} POS Terminal {% endblock %} {% block content %}
You are currently offline. Orders will be saved and synced automatically when you’re back online.
{% if messages %} {% for message in messages %}
{% if message.tags == 'success' %} {% elif message.tags == 'error' or message.tags == 'danger' %} {% elif message.tags == 'warning' %} {% else %} {% endif %}
{{ message }}
{% endfor %} {% endif %}
Active order
{{ order.order_number }}
Cashier: {{ user_name }}
{{ order_items|length }} item{{ order_items|length|pluralize }} Total: {{ currency_symbol }}{{ final_total|floatformat:2 }} Today’s summary
Product Selection
Choose product & quantity, then add to cart
{% if barcode_scanner_enabled %}
{% else %}
Barcode scanning is not available on your current plan.
{% endif %}
Use SKU or name to quickly find items.
Selected product
Price: {{ currency_symbol }}0.00 · Stock: 0
Current Cart
{{ order_items|length }} item{{ order_items|length|pluralize }}
Subtotal {{ currency_symbol }}{{ subtotal|floatformat:2 }}
Tax (0.0%) {{ currency_symbol }}{{ tax_amount|floatformat:2 }}

Total {{ currency_symbol }}{{ final_total|floatformat:2 }}
Payment
{% csrf_token %}
Choose "Credit" when the customer will pay later (bashi / loan).
Leave empty for full payment. For credit, set what they pay now (0 for full loan).
{% endblock %} {% block extra_js %} {% endblock %}