Files
notifications-admin/app/templates/views/platform-admin/get-billing-report.html
T

39 lines
1.7 KiB
HTML
Raw Normal View History

{% extends "views/platform-admin/_base_template.html" %}
{% from "components/form.html" import form_wrapper %}
{% block per_page_title %}
2021-03-15 18:04:01 +00:00
Billing Report
{% endblock %}
{% block platform_admin_content %}
<h1 class="heading-large">
2021-03-15 18:04:01 +00:00
Billing Report
</h1>
{% call form_wrapper() %}
2020-08-07 10:24:56 +01:00
{{ form.start_date(param_extensions={"hint": {"text": "Enter start date in format YYYY-MM-DD"}}) }}
{{ form.end_date(param_extensions={"hint": {"text": "Enter end date in format YYYY-MM-DD"}}) }}
{{ page_footer('Download report') }}
{% endcall %}
2022-01-25 17:43:28 +00:00
<h2 class="heading-medium">
Guidance for interpreting the report
</h2>
<p class="govuk-body">
Billing report shows data for period between start date and end date, inclusive of both dates.
</p>
<p class="govuk-body">
Explanation for more confusing column names in the report:
</p>
<ul class="govuk-list govuk-list--bullet">
<li>sms cost - cost accrued by a service through sending text messages after they run out of free allowance</li>
<li>sms chargeable units - sms fragments that go over free allowance multiplied by rate multiplier (so higher costs of sending international SMS are taken into consideration)</li>
<li>letter cost - cost accrued by a service through sending letters (number of letters * numbers of paper sheets * postage)</li>
<li>letter breakdown - amount and cost of letters sent by a service for each postage class</li>
<li> purchase order number, contact names, contact email addresses, billing reference - this data is manually filled in by us based on the information we get from services. You can help by filling it in (on Service Settings page)</li>
</ul>
2020-08-07 10:24:56 +01:00
{% endblock %}