{% extends "core/base.html" %} {% load static %} {% block title %}Barcode Center - SwiftPOS{% endblock %} {% block topbar_title %}Barcode Center{% endblock %} {% block content %}

Barcode Printing Center

Easily generate and print thermal barcode labels for your physical inventory.
{% for product in products %} {% empty %} {% endfor %}
Product Name SKU Stock Barcode Status Action
{{ product.name }} {{ product.sku }} {% if product.stock_status == 'in_stock' %} {{ product.stock_quantity }} in stock {% else %} {{ product.stock_quantity }} {{ product.get_stock_status_display }} {% endif %} {% if product.barcode %} Ready ({{ product.barcode }}) {% else %} Will auto-generate on print {% endif %} Print Label
No Active Products Found

Add items to your inventory to generate barcodes.

Add First Product
{% endblock %}