{% if ship_msg %}
{{ ship_msg }}
{% endif %}

商家订单管理

店铺:{{ merchant_ctx.shop_name }} merchant_id={{ merchant_ctx.merchant_id }} shop_id={{ merchant_ctx.shop_id }}
{% for o in orders %}
{{ o.status_text }}
订单号:{{ o.order_id }}
商品件数:{{ o.item_count or 0 }}
创建时间:{{ o.created_at }}
支付时间:{{ o.paid_at or '未支付' }}
发货时间:{{ o.shipped_at or '未发货' }}
签收时间:{{ o.received_at or '未签收' }}
{% if o.countdown_label and o.countdown_deadline_iso %}
{{ o.countdown_label }}:{{ o.countdown_text }}
{% endif %}
¥ {{ '%.2f'|format(o.total_amount) }}
{% if o.can_ship %}
{% else %} {% endif %}
{% else %}
当前还没有待处理订单。
{% endfor %}