{% extends 'inventory/base.html' %} {% load static %} {% block title %}首页 - {{ block.super }}{% endblock %} {% block content %}
今日销售额

¥{{ today_sales_amount|floatformat:2 }}

商品总数

{{ total_products }}

会员总数

{{ total_members }}

销售总数

{{ total_sales }}

最近7天销售趋势
{{ current_month }}月 生日会员
查看全部
{% if birthday_members %}
{% for member in birthday_members %}
{{ member.name }}
{{ member.phone }}
{{ member.birthday|date:"m-d" }}
{% endfor %}
{% else %}
本月没有会员生日
{% endif %}
热销商品
{% if top_products %}
{% for product in top_products %}
{{ product.product__name }}
{{ product.total_qty }}
销售额: ¥{{ product.total_amount|floatformat:2 }}
{% endfor %}
{% else %}

暂无销售数据

{% endif %}
库存预警
{% if low_stock_products > 0 %}
注意: 有 {{ low_stock_products }} 个商品库存不足,其中 {{ out_of_stock_products }} 个商品已无库存!
查看库存不足商品 {% else %}
所有商品库存充足
{% endif %}
最近操作
{% if recent_logs %}
{% for log in recent_logs %}

{{ log.details }}

{{ log.timestamp|date:"m-d H:i" }} by {{ log.operator.username }}
{% endfor %}
{% else %}
暂无操作记录
{% endif %}
{% block extra_js %} {% endblock %} {% endblock %}