{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Add Product via Scan{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Gvelo Enterprise Platform

Add Product From Scanned Barcode

Confirm the barcode, enter the selling price, buying price, and stock before saving the product.

Barcode: {{ barcode or 'Not scanned' }}

{% if existing_product %}
This barcode is already linked to {{ existing_product.name }}. Current selling price: {{ currency_symbol }}{{ "%.2f"|format(existing_product.price or 0) }}, stock: {{ existing_product.stock }}.
{% endif %} {% if error %}

{{ error }}

{% endif %}

Scan Another Barcode
Back to Inventory
{% endblock %}