{% extends 'inventory/base.html' %} {% load static %} {% block title %}扫码添加商品 - {{ block.super }}{% endblock %} {% block content %}

扫码添加商品

通过条码快速添加商品信息

返回列表
扫描条码与商品信息
将条码扫描枪对准商品条码,或手动输入条码号码

{% if barcode_data %}
{% if barcode_data.image_url %} {{ barcode_data.name }} {% else %}
{% endif %}

{{ barcode_data.name }}

{{ barcode }} {% if barcode_data.category %} {{ barcode_data.category }} {% endif %}
{% if barcode_data.specification %} {% endif %} {% if barcode_data.manufacturer %} {% endif %} {% if barcode_data.suggested_price %} {% endif %} {% if barcode_data.description %} {% endif %}
规格 {{ barcode_data.specification }}
制造商 {{ barcode_data.manufacturer }}
建议售价 ¥{{ barcode_data.suggested_price }}
描述 {{ barcode_data.description }}
已自动填充商品信息,请确认并完善详情
{% else %} {% if barcode %}
未找到条码 {{ barcode }} 的商品信息,请手动填写。

没有查询到商品信息

您可以在右侧手动填写商品详情
{% else %}

请扫描或输入商品条码

系统将自动查询商品信息
{% endif %} {% endif %}
商品录入
{% csrf_token %}
{% if form.barcode.errors %}
{{ form.barcode.errors }}
{% endif %}
{% if form.name.errors %}
{{ form.name.errors }}
{% endif %}
{% if form.category.errors %}
{{ form.category.errors }}
{% endif %}
{% if form.specification.errors %}
{{ form.specification.errors }}
{% endif %}
{% if form.price.errors %}
{{ form.price.errors }}
{% endif %}
¥
{% if form.cost.errors %}
{{ form.cost.errors }}
{% endif %}
¥
{% if form.manufacturer.errors %}
{{ form.manufacturer.errors }}
{% endif %}
{% if form.color.errors %}
{{ form.color.errors }}
{% endif %}
{% if form.size.errors %}
{{ form.size.errors }}
{% endif %}
{% if form.is_active.errors %}
{{ form.is_active.errors }}
{% endif %}
{% if form.description.errors %}
{{ form.description.errors }}
{% endif %}
{% if form.image.errors %}
{{ form.image.errors }}
{% endif %}
支持JPG、PNG格式,建议尺寸500x500像素
取消
{% block extra_js %} {% endblock %} {% endblock %}