{% extends "core/base.html" %} {% load currency_tags %} {% block title %}Barcode POS β€” SwiftPOS{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Barcode POS

Use your physical barcode scanner to add items

Scanner Ready
{% if system_settings.enable_camera_scanner %}
Starting scanner...
{% else %}
Awaiting Scan...

Start scanning products with your USB/Bluetooth barcode scanner. Items will automatically appear in the cart.

{% endif %}
Current Order #{{ order.order_number }}
{% csrf_token %}
{% for item in order_items %}
{{ item.product.name }}
{% if item.product.wholesale_price and item.product.wholesale_min_quantity and item.quantity >= item.product.wholesale_min_quantity %} WS{{ item.unit_price|format_currency }} {% else %} {{ item.unit_price|format_currency }} {% endif %} Γ— {{ item.quantity }}
{% csrf_token %}
{{ item.quantity }}
{% csrf_token %}
{% csrf_token %}
{{ currency_symbol }}{{ item.total_price|format_currency }}
{% empty %}
Scan a product to start order
{% endfor %}
> {% if system_settings.enable_camera_scanner %} {% endif %} {% endblock %}