From a12437420229610e179d5c57ab6ff41bd7e04d48 Mon Sep 17 00:00:00 2001 From: Aman Agrawal Date: Wed, 8 Nov 2023 16:23:22 +0000 Subject: [PATCH] populate_billing_realms: Add switch-to-annual-EOC customer. --- zilencer/management/commands/populate_billing_realms.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/zilencer/management/commands/populate_billing_realms.py b/zilencer/management/commands/populate_billing_realms.py index 3bb31c2d3f..811ad054c3 100644 --- a/zilencer/management/commands/populate_billing_realms.py +++ b/zilencer/management/commands/populate_billing_realms.py @@ -93,6 +93,12 @@ class Command(BaseCommand): tier=CustomerPlan.STANDARD, charge_automatically=False, ), + CustomerProfile( + unique_id="standard-switch-to-annual-eoc", + billing_schedule=CustomerPlan.MONTHLY, + tier=CustomerPlan.STANDARD, + status=CustomerPlan.SWITCH_TO_ANNUAL_AT_END_OF_CYCLE, + ), CustomerProfile( unique_id="sponsored", is_sponsored=True,