{% extends "admin/base.html" %} {% block page_title %}日常管理{% endblock %} {% block content %}
日常管理
日常管理设置
待审核 已审核 全部
{% for tab in tab_data %}
{% for r in tab.records %}
{% if tab.form_type == 'ka' %}{{r.ka_chain or '-'}}{% if r.cust_name %} · {{r.cust_name}}{% endif %}{% else %}{{r.cust_name or '-'}}{% endif %} ({{r.cust_province}} {{r.cust_city}}) {{r.period}}
{{r.staff.name if r.staff}} · {{r.staff.phone if r.staff}} · {{r.created_at.strftime('%Y-%m-%d %H:%M') if r.created_at}}
{% if tab.form_type == 'ka' %}已陈列产品:{{r.displayed_products or '-'}}{% else %}拜访:{{r.visit_purpose or '-'}} · {{r.product_name or '-'}} · {{r.visit_content or '-'}}{% endif %}
{{tab.door}}
{{tab.office}}
{% 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 %}
暂无{{tab.name}}提交
{% endfor %}
{% endfor %}
{% include "admin/_region_data.html" %} {% endblock %}