{% extends "admin/base.html" %} {% block page_title %}门店运营审核{% endblock %} {% block content %}
门店运营月报({{reps|length}})
审核通过奖励 积分
{% for r in reps %}
{{r.staff.name if r.staff}} · {{r.staff.store.chain.name if (r.staff and r.staff.store and r.staff.store.chain) else ''}} {{r.period}}
{{r.staff.phone if r.staff}} · {{r.created_at.strftime('%Y-%m-%d %H:%M') if r.created_at}}
陈列照
库存截图
销量截图
{% if r.status=='pending' %}
{% else %}
{% if r.status=='approved'%}已通过 +{{r.points_earned}}分{% else %}已驳回:{{r.reject_reason or '-'}}{% endif %}
{% if current_user.role == 'super' %}
{% endif %} {% endif %}
{% else %}
暂无提交
{% endfor %}
{% include "admin/_region_data.html" %} {% endblock %}