{% extends "base.html" %} {% block title %}销售录入 - {{ current_user.store_name }}{% endblock %} {% block content %}
录入销售数据 门店:{{ current_user.store_name }}
每行:水果名 + 数量
{% for inv in inventory %} {% endfor %}
水果品类 门店库存 销售件数 快捷
{{ inv.fruit_name }} {{ inv.current_stock }}
今日已录入销售 {{ today }}
{% if today_records %} {% for r in today_records %} {% endfor %}
水果 件数 时间
{{ r.fruit_name }} {{ r.quantity }} {{ r.created_at[11:19] }}
{% else %}
今日暂无销售记录
{% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}