{% 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" }}
| 操作时间 | 操作员 | 操作类型 | 关联对象 | 详情 |
|---|---|---|---|---|
| {{ 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 }} | |
| 没有操作日志数据 | ||||