mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-07 06:50:56 -04:00
Fix keys used to render monthly usage
These were out-of-sync with the API.
This commit is contained in:
@@ -398,12 +398,12 @@ def get_monthly_usage_breakdown(year, monthly_usage):
|
||||
|
||||
for month in get_months_for_financial_year(year):
|
||||
monthly_sms = [row for row in sms if row['month'] == month]
|
||||
sms_free_allowance_used = sum(row['sms_free_allowance_used'] for row in monthly_sms)
|
||||
sms_cost = sum(row['sms_cost'] for row in monthly_sms)
|
||||
sms_breakdown = [row for row in monthly_sms if row['sms_charged']]
|
||||
sms_free_allowance_used = sum(row['free_allowance_used'] for row in monthly_sms)
|
||||
sms_cost = sum(row['cost'] for row in monthly_sms)
|
||||
sms_breakdown = [row for row in monthly_sms if row['charged_units']]
|
||||
|
||||
monthly_letters = [row for row in letters if row['month'] == month]
|
||||
letter_cost = sum(row['letter_cost'] for row in monthly_letters)
|
||||
letter_cost = sum(row['cost'] for row in monthly_letters)
|
||||
letter_breakdown = get_monthly_usage_breakdown_for_letters(monthly_letters)
|
||||
|
||||
yield {
|
||||
@@ -436,7 +436,7 @@ def get_monthly_usage_breakdown_for_letters(monthly_letters):
|
||||
yield {
|
||||
"sent": sum(x['notifications_sent'] for x in rate_group),
|
||||
"rate": rate_group[0]['rate'],
|
||||
"cost": sum(x['letter_cost'] for x in rate_group),
|
||||
"cost": sum(x['cost'] for x in rate_group),
|
||||
"postage_description": get_monthly_usage_postage_description(rate_group[0])
|
||||
}
|
||||
|
||||
|
||||
@@ -108,7 +108,7 @@
|
||||
<li class="tabular-numbers">{{ item.sms_free_allowance_used|format_thousands }} free {{ item.sms_free_count|message_count_label('sms', suffix='') }}</li>
|
||||
{% endif %}
|
||||
{% for sms in item.sms_breakdown %}
|
||||
<li class="tabular-numbers">{{ sms.sms_charged|message_count('sms') }} at
|
||||
<li class="tabular-numbers">{{ sms.charged_units|message_count('sms') }} at
|
||||
{{- ' {:.2f}p'.format(sms.rate * 100) }}</li>
|
||||
{% endfor %}
|
||||
{% for letter in item.letter_breakdown %}
|
||||
|
||||
Reference in New Issue
Block a user