{% extends "admin/base.html" %} {% block page_title %}兑换订单{% endblock %} {% block content %}
订单列表(最近 200)
{% set smap = {'pending':'待发货','shipped':'已发货','done':'已完成','canceled':'已取消'} %} {% for o in orders %} {% else %} {% endfor %}
序号店员商品积分收货人/地址状态快递单号时间操作
{{loop.index}} {{o.staff.name if o.staff}}
{{o.staff.phone if o.staff}}
{{o.product.name if o.product}} {{o.points_cost}} {{o.receiver}} {{o.receiver_phone}}
{{o.address}}
{% if o.status=='pending'%}{{smap[o.status]}}{% else %}{{smap.get(o.status,o.status)}}{% endif %} {{o.tracking_no or '-'}} {{o.created_at.strftime('%m-%d %H:%M') if o.created_at}} {% if o.status=='pending' %}
{% elif o.status=='shipped' %}
{% endif %} {% if current_user.role == 'super' %}
{% endif %}
暂无订单
{% endblock %}