{% extends "inventory/base.html" %} {% load crispy_forms_tags %} {% block title %}{{ form_title }}{% endblock %} {% block content %}

{{ form_title }}

{{ inventory_check.description }}

需要确认的差异项

{% for item in items_with_discrepancy %} {% empty %} {% endfor %}
商品名称 条码 系统数量 实际数量 差异 备注
{{ item.product.name }} {{ item.product.barcode }} {{ item.system_quantity }} {{ item.actual_quantity }} {{ item.difference }} {{ item.notes|default:"-" }}
没有盘点差异

审核确认

{% csrf_token %} {{ form|crispy }}
返回
{% endblock %}