{% 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" }}

设置报表参数

{% csrf_token %}
{{ form.start_date|as_crispy_field }}
{{ form.end_date|as_crispy_field }}

操作类型统计

操作员统计

操作日志列表

{{ log_data.logs|length }} 条记录
{% for log in log_data.logs %} {% empty %} {% endfor %}
操作时间 操作员 操作类型 关联对象 详情
{{ log.timestamp|date:"Y-m-d H:i:s" }} {{ log.operator.username }} {% if log.operation_type == 'INVENTORY' %} 库存操作 {% elif log.operation_type == 'SALE' %} 销售操作 {% elif log.operation_type == 'MEMBER' %} 会员操作 {% elif log.operation_type == 'INVENTORY_CHECK' %} 库存盘点 {% else %} 其他操作 {% endif %} {{ log.related_content_type.name }} #{{ log.related_object_id }}
没有操作日志数据
{% if log_data.operation_type_stats %} {% endif %} {% endblock %}