{% extends 'inventory/base.html' %} {% block title %}库存管理 - {{ block.super }}{% endblock %} {% block content %}
管理所有商品库存信息
| 商品信息 | 分类 | 颜色/尺码 | 当前库存 | 预警库存 | 状态 | 操作 |
|---|---|---|---|---|---|---|
|
{% if item.product.image %}
{{ 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 %} |
||||||