diff --git a/breathecode/payments/tasks.py b/breathecode/payments/tasks.py index b79e00f97..6ed8db21e 100644 --- a/breathecode/payments/tasks.py +++ b/breathecode/payments/tasks.py @@ -378,6 +378,7 @@ def alert_payment_issue(message: str, button: str) -> None: subscription.invoices.add(invoice) subscription.status = "ACTIVE" + subscription.status_message = None subscription.save() value = invoice.currency.format_price(invoice.amount) @@ -609,6 +610,7 @@ def alert_payment_issue(message: str, button: str) -> None: plan_financing.next_payment_at += delta plan_financing.status = "ACTIVE" if remaining_installments > 0 else "FULLY_PAID" + plan_financing.status_message = None plan_financing.save() # if this charge but the client paid all its installments, there hasn't been a new bag created