From 93a60ab67544329f8b35f331bd7dc471fd36c49f Mon Sep 17 00:00:00 2001 From: Laurent Date: Fri, 1 Aug 2025 15:40:23 +0200 Subject: [PATCH] remove DECLINED_UNRELATED --- biz/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biz/models.py b/biz/models.py index bd092dd..2e2bb0f 100644 --- a/biz/models.py +++ b/biz/models.py @@ -23,7 +23,7 @@ class Status(models.TextChoices): LOST = 'LOST', 'Lost customer' DECLINED = 'DECLINED', 'Declined' DECLINED_UNRELATED = 'DECLINED_UNRELATED', 'Declined without significance' - NOT_CONCERNED = 'NOT_CONCERNED', 'Not concerned' + # NOT_CONCERNED = 'NOT_CONCERNED', 'Not concerned' SHOULD_BUY = 'SHOULD_BUY', 'Should buy' class DeclinationReason(models.TextChoices):