{% extends "inventory/base.html" %} {% load crispy_forms_tags %} {% block title %}库存周转报表{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
日期范围: {{ start_date|date:"Y-m-d" }} 至 {{ end_date|date:"Y-m-d" }}
| 商品名称 | 商品编码 | 当前库存 | 平均库存 | 销售数量 | 周转率 | 周转天数 | 周转状态 |
|---|---|---|---|---|---|---|---|
| {{ item.product_name }} | {{ item.product_code }} | {{ item.current_stock }} | {{ item.avg_stock|floatformat:1 }} | {{ item.sold_quantity }} | {{ item.turnover_rate|floatformat:2 }} | {{ item.turnover_days|floatformat:0 }} | {% if item.turnover_days > 90 %} 滞销 {% elif item.turnover_days > 60 %} 周转慢 {% elif item.turnover_days > 30 %} 正常 {% else %} 周转快 {% endif %} |
| 没有库存周转数据 | |||||||