{% extends "admin/base.html" %} {% block page_title %}游学发票{% endblock %} {% block content %}
游学发票列表({{invoices|length}})
勾选发票后点「批量下载」打包为 zip;点文件名可单个下载。下载后自动标记「已下载」。
{% if current_user.role == 'super' %} {% endif %}
{% if current_user.role == 'super' %}{% endif %} {% for inv in invoices %} {% if current_user.role == 'super' %} {% endif %} {% else %} {% endfor %}
序号店员连锁省份文件下载状态上传时间操作
{{loop.index}} {{inv.staff.name if inv.staff else '-'}} {{inv.staff.store.chain.name if (inv.staff and inv.staff.store and inv.staff.store.chain) else '-'}} {{inv.staff.province if (inv.staff and inv.staff.province) else '-'}} {{inv.filename or '查看/下载'}} {% if inv.downloaded %} 已下载 {{inv.downloaded_at.strftime('%m-%d %H:%M') if inv.downloaded_at}} {% else %} 未下载 {% endif %} {{inv.created_at.strftime('%Y-%m-%d %H:%M')}} 下载
暂无游学发票
点击文件名下载该发票(PDF/图片);勾选多条可批量打包下载。
{% include "admin/_region_data.html" %} {% endblock %}