{% extends 'base.html' %} {% block title %}账单详情{% endblock %} {% block content %}

账单详情

周期:{{ invoice.period_start }} ~ {{ invoice.period_end }}
状态:{{ invoice.get_status_display }}
{% if invoice.status == 'unpaid' %}
{% csrf_token %}
立即支付 {% endif %} 导出 CSV
费用汇总
套餐费用:¥ {{ plan_total }}
超量费用:¥ {{ overage_total }}
调整:¥ {{ adjustment }}
总金额:¥ {{ amount_total }}
{% for it in items %} {% empty %} {% endfor %}
域名 描述 数量(GB) 单价 金额
{% if it.domain %}{{ it.domain.name }}{% else %}-{% endif %}
{{ it.description }}
{% if it.description == '基础套餐费用' %}
每域名当月基础月费。
{% elif it.description == '超量流量费用' %}
超出包含/免费额度的部分,按单价计费。
{% elif it.description %}
{{ it.description }}
{% endif %}
{{ it.quantity }} ¥ {{ it.unit_price }} ¥ {{ it.amount }}
暂无账单项
账单周期流量统计(引用)
周期:{{ period_start }} ~ {{ period_end }},统计为参考,可能与套餐变更及赠送额度生效时间相关。
{% for s in domain_stats %} {% empty %} {% endfor %}
域名用量(GB)查看详情
{{ s.domain.name }} {{ s.gb }} 用户侧详情
暂无数据
当前暂未包含请求数/状态码分布的数据库统计,如需请在“域名详情 → 统计”查看。
返回列表 {% endblock %}