{% extends "inventory/base.html" %} {% block title %}库存盘点列表{% endblock %} {% block content %}

库存盘点

创建盘点
{% for check in inventory_checks %} {% empty %} {% endfor %}
ID 名称 状态 创建人 创建时间 操作
{{ check.id }} {{ check.name }} {% if check.status == 'draft' %} {{ check.get_status_display }} {% elif check.status == 'in_progress' %} {{ check.get_status_display }} {% elif check.status == 'completed' %} {{ check.get_status_display }} {% elif check.status == 'approved' %} {{ check.get_status_display }} {% elif check.status == 'cancelled' %} {{ check.get_status_display }} {% endif %} {{ check.created_by.username }} {{ check.created_at|date:"Y-m-d H:i" }} 查看 {% if check.status == 'draft' %} 开始盘点 {% endif %} {% if check.status == 'in_progress' %} 完成盘点 {% endif %} {% if check.status == 'completed' %} 审核 {% endif %} {% if check.status != 'approved' and check.status != 'cancelled' %} 取消 {% endif %}
没有找到库存盘点记录
{% endblock %}