{% extends 'inventory/base.html' %} {% block title %}库存管理 - {{ block.super }}{% endblock %} {% block content %}

库存管理

管理所有商品库存信息

{% if selected_category or selected_color or selected_size or search_query %} 清除筛选 {% endif %}
{% for item in inventory_items %} {% empty %} {% endfor %}
商品信息 分类 颜色/尺码 当前库存 预警库存 状态 操作
{% if item.product.image %} {{ item.product.name }} {% else %}
{% endif %}
{{ item.product.name }}
{{ item.product.barcode }}
{{ item.product.category.name }} {% if item.product.color %} {{ item.product.get_color_display }} {% endif %} {% if item.product.size %} {{ item.product.get_size_display }} {% endif %} {{ item.quantity }} {{ item.warning_level }} {% if item.quantity <= item.warning_level %} 库存不足 {% else %} 正常 {% endif %}

暂无库存数据

{% if search_query or selected_category or selected_color or selected_size %} 没有找到符合筛选条件的库存,请尝试调整筛选条件 {% else %} 点击"入库"按钮添加库存 {% endif %}
{% if inventory_items %}
显示 1 至 {{ inventory_items|length }} 条,共 {{ inventory_items|length }} 条记录
{% endif %}
{% endblock %}