Implements BILLING.md. The architecture was sound -- snapshot-on-Due, dated prices, asymmetric dry-run commands are all kept -- so this fixes the three hardcoded assumptions rather than rewriting. The real defect: grace ran from period_END, so an annual club used the whole unpaid year plus 45 days (~410 days) before anything switched it off. Grace now runs from the period START, and every clock is per-plan. - Tier -> Plan (+ TierPrice -> PlanPrice, and every FK). Migration 0004 is hand-written: run non-interactively, makemigrations emits DeleteModel+CreateModel and drops every price, subscription and due. Its two RemoveConstraints must come first, or SQLite's table-rebuild tries to render a constraint over a just-renamed column. Verified by round-tripping real rows through it. - Plan gains duration_months / renewal_lead_days / grace_days / is_trial, with CheckConstraints and a matching clean() so the form reports an impossible plan instead of 500ing on IntegrityError. - Existing dues keep their stored grace_until. Re-deriving it would put the date in the past for every open annual period and archive the entire paying customer base on the next --commit run. - Trials take their length from the trial plan's own duration_months; start_trial() loses its trial_months argument. - New BillingNotice service drives a club-facing warning: every level on the dashboard, and on every management page once urgent. - send_billing_reminders emails club admins, once per escalation level so a daily cron is not a daily email. SMTP settings are env-driven and provider-agnostic; the backend defaults to console. - Paying does not auto-restore an archived club -- the control panel surfaces a Reactivate prompt instead, since a club can also be archived by hand.
39 lines
1.6 KiB
Python
39 lines
1.6 KiB
Python
"""Archive clubs whose billing period has gone unpaid past its grace period.
|
|
|
|
Reports by default and only acts with --commit. That asymmetry is the point: this command
|
|
switches off paying customers, and a cron misconfiguration, a clock skew or a bad import
|
|
should cost you a confusing email, not a morning of angry clubs.
|
|
"""
|
|
|
|
from django.utils import timezone
|
|
|
|
from billing.services.dues import archivable_clubs
|
|
from features.commands import MaintenanceAwareCommand
|
|
|
|
|
|
class Command(MaintenanceAwareCommand):
|
|
help = "Archive clubs that are unpaid past their grace period (dry run unless --commit)."
|
|
|
|
def add_arguments(self, parser):
|
|
parser.add_argument("--commit", action="store_true", help="Actually archive them. Without this the command only reports.")
|
|
|
|
def handle(self, *args, **options):
|
|
today = timezone.localdate()
|
|
overdue = list(archivable_clubs(today))
|
|
|
|
if not overdue:
|
|
self.stdout.write(self.style.SUCCESS("Nothing overdue past grace."))
|
|
return
|
|
|
|
for due in overdue:
|
|
days = (today - due.grace_until).days
|
|
self.stdout.write(f"{due.club} — {due.plan}, {due.balance} owed, grace ended {due.grace_until} ({days} day{'s'[: days != 1]} ago)")
|
|
|
|
if not options["commit"]:
|
|
self.stdout.write(self.style.WARNING(f"\nDry run: {len(overdue)} club(s) would be archived. Re-run with --commit to do it."))
|
|
return
|
|
|
|
for due in overdue:
|
|
due.club.archive()
|
|
self.stdout.write(self.style.SUCCESS(f"\nArchived {len(overdue)} club(s). Their data is kept; restoring re-opens billing."))
|